-- MariaDB dump 10.19  Distrib 10.5.22-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: midura5_gc2023
-- ------------------------------------------------------
-- Server version	10.5.22-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 `wp_gc2023commentmeta`
--

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

--
-- Dumping data for table `wp_gc2023commentmeta`
--

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

--
-- Table structure for table `wp_gc2023comments`
--

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

--
-- Dumping data for table `wp_gc2023comments`
--

LOCK TABLES `wp_gc2023comments` WRITE;
/*!40000 ALTER TABLE `wp_gc2023comments` DISABLE KEYS */;
INSERT INTO `wp_gc2023comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2023-08-17 21:48:25','2023-08-17 21:48:25','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,'post-trashed','','comment',0,0);
/*!40000 ALTER TABLE `wp_gc2023comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_gc2023fusion_form_entries`
--

DROP TABLE IF EXISTS `wp_gc2023fusion_form_entries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gc2023fusion_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 `wp_gc2023fusion_form_entries`
--

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

--
-- Table structure for table `wp_gc2023fusion_form_fields`
--

DROP TABLE IF EXISTS `wp_gc2023fusion_form_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gc2023fusion_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 `wp_gc2023fusion_form_fields`
--

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

--
-- Table structure for table `wp_gc2023fusion_form_submissions`
--

DROP TABLE IF EXISTS `wp_gc2023fusion_form_submissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gc2023fusion_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 `wp_gc2023fusion_form_submissions`
--

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

--
-- Table structure for table `wp_gc2023fusion_forms`
--

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

--
-- Dumping data for table `wp_gc2023fusion_forms`
--

LOCK TABLES `wp_gc2023fusion_forms` WRITE;
/*!40000 ALTER TABLE `wp_gc2023fusion_forms` DISABLE KEYS */;
INSERT INTO `wp_gc2023fusion_forms` VALUES (1,117,10,0,NULL),(2,1695,52,0,NULL);
/*!40000 ALTER TABLE `wp_gc2023fusion_forms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_gc2023links`
--

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

--
-- Dumping data for table `wp_gc2023links`
--

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

--
-- Table structure for table `wp_gc2023options`
--

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

--
-- Dumping data for table `wp_gc2023options`
--

LOCK TABLES `wp_gc2023options` WRITE;
/*!40000 ALTER TABLE `wp_gc2023options` DISABLE KEYS */;
INSERT INTO `wp_gc2023options` VALUES (1,'siteurl','https://test-site.goodcausepartners.com','yes'),(2,'home','https://test-site.goodcausepartners.com','yes'),(3,'blogname','Good Cause Marketing Partners','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','info@goodcausepartners.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:282:{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:18:\"portfolio-items/?$\";s:35:\"index.php?post_type=avada_portfolio\";s:48:\"portfolio-items/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?post_type=avada_portfolio&feed=$matches[1]\";s:43:\"portfolio-items/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?post_type=avada_portfolio&feed=$matches[1]\";s:35:\"portfolio-items/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: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: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: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:43:\"portfolio-items/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:53:\"portfolio-items/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:73:\"portfolio-items/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"portfolio-items/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"portfolio-items/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:49:\"portfolio-items/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:32:\"portfolio-items/([^/]+)/embed/?$\";s:48:\"index.php?avada_portfolio=$matches[1]&embed=true\";s:36:\"portfolio-items/([^/]+)/trackback/?$\";s:42:\"index.php?avada_portfolio=$matches[1]&tb=1\";s:56:\"portfolio-items/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?avada_portfolio=$matches[1]&feed=$matches[2]\";s:51:\"portfolio-items/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?avada_portfolio=$matches[1]&feed=$matches[2]\";s:44:\"portfolio-items/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?avada_portfolio=$matches[1]&paged=$matches[2]\";s:51:\"portfolio-items/([^/]+)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?avada_portfolio=$matches[1]&cpage=$matches[2]\";s:40:\"portfolio-items/([^/]+)(?:/([0-9]+))?/?$\";s:54:\"index.php?avada_portfolio=$matches[1]&page=$matches[2]\";s:32:\"portfolio-items/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"portfolio-items/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"portfolio-items/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"portfolio-items/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"portfolio-items/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"portfolio-items/[^/]+/([^/]+)/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: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: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: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: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=1647&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s: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:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:7:{i:1;s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";i:2;s:35:\"boldgrid-backup/boldgrid-backup.php\";i:3;s:33:\"duplicate-post/duplicate-post.php\";i:4;s:33:\"fusion-builder/fusion-builder.php\";i:5;s:27:\"fusion-core/fusion-core.php\";i:6;s:19:\"jetpack/jetpack.php\";i:7;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','55853','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:0:{}','yes'),(77,'widget_text','a:0:{}','yes'),(78,'widget_rss','a:0:{}','yes'),(79,'uninstall_plugins','a:1:{s:41:\"password-protected/password-protected.php\";a:2:{i:0;s:8:\"Freemius\";i:1;s:22:\"_uninstall_plugin_hook\";}}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','1647','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','1707860905','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','55853','yes'),(100,'wp_gc2023user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{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:10:\"copy_posts\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:35:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:10:\"copy_posts\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(101,'fresh_site','0','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: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;}','yes'),(105,'cron','a:10:{i:1692809306;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:1692809427;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1692827305;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:1692827427;a:1:{s:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1692827723;a:3:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1692827726;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1692835200;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:1692914350;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1693000105;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','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:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(120,'recovery_keys','a:0:{}','yes'),(121,'theme_mods_twentytwentythree','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1692309606;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'),(122,'_transient_wp_core_block_css_files','a:496:{i:0;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/archives/editor-rtl.css\";i:1;s:92:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/archives/editor-rtl.min.css\";i:2;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/archives/editor.css\";i:3;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/archives/editor.min.css\";i:4;s:87:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/archives/style-rtl.css\";i:5;s:91:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/archives/style-rtl.min.css\";i:6;s:83:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/archives/style.css\";i:7;s:87:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/archives/style.min.css\";i:8;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/audio/editor-rtl.css\";i:9;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/audio/editor-rtl.min.css\";i:10;s:81:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/audio/editor.css\";i:11;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/audio/editor.min.css\";i:12;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/audio/style-rtl.css\";i:13;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/audio/style-rtl.min.css\";i:14;s:80:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/audio/style.css\";i:15;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/audio/style.min.css\";i:16;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/audio/theme-rtl.css\";i:17;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/audio/theme-rtl.min.css\";i:18;s:80:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/audio/theme.css\";i:19;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/audio/theme.min.css\";i:20;s:86:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/avatar/editor-rtl.css\";i:21;s:90:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/avatar/editor-rtl.min.css\";i:22;s:82:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/avatar/editor.css\";i:23;s:86:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/avatar/editor.min.css\";i:24;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/avatar/style-rtl.css\";i:25;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/avatar/style-rtl.min.css\";i:26;s:81:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/avatar/style.css\";i:27;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/avatar/style.min.css\";i:28;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/block/editor-rtl.css\";i:29;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/block/editor-rtl.min.css\";i:30;s:81:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/block/editor.css\";i:31;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/block/editor.min.css\";i:32;s:86:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/button/editor-rtl.css\";i:33;s:90:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/button/editor-rtl.min.css\";i:34;s:82:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/button/editor.css\";i:35;s:86:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/button/editor.min.css\";i:36;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/button/style-rtl.css\";i:37;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/button/style-rtl.min.css\";i:38;s:81:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/button/style.css\";i:39;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/button/style.min.css\";i:40;s:87:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/buttons/editor-rtl.css\";i:41;s:91:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/buttons/editor-rtl.min.css\";i:42;s:83:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/buttons/editor.css\";i:43;s:87:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/buttons/editor.min.css\";i:44;s:86:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/buttons/style-rtl.css\";i:45;s:90:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/buttons/style-rtl.min.css\";i:46;s:82:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/buttons/style.css\";i:47;s:86:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/buttons/style.min.css\";i:48;s:87:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/calendar/style-rtl.css\";i:49;s:91:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/calendar/style-rtl.min.css\";i:50;s:83:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/calendar/style.css\";i:51;s:87:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/calendar/style.min.css\";i:52;s:90:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/categories/editor-rtl.css\";i:53;s:94:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/categories/editor-rtl.min.css\";i:54;s:86:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/categories/editor.css\";i:55;s:90:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/categories/editor.min.css\";i:56;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/categories/style-rtl.css\";i:57;s:93:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/categories/style-rtl.min.css\";i:58;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/categories/style.css\";i:59;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/categories/style.min.css\";i:60;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/code/editor-rtl.css\";i:61;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/code/editor-rtl.min.css\";i:62;s:80:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/code/editor.css\";i:63;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/code/editor.min.css\";i:64;s:83:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/code/style-rtl.css\";i:65;s:87:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/code/style-rtl.min.css\";i:66;s:79:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/code/style.css\";i:67;s:83:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/code/style.min.css\";i:68;s:83:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/code/theme-rtl.css\";i:69;s:87:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/code/theme-rtl.min.css\";i:70;s:79:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/code/theme.css\";i:71;s:83:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/code/theme.min.css\";i:72;s:87:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/columns/editor-rtl.css\";i:73;s:91:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/columns/editor-rtl.min.css\";i:74;s:83:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/columns/editor.css\";i:75;s:87:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/columns/editor.min.css\";i:76;s:86:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/columns/style-rtl.css\";i:77;s:90:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/columns/style-rtl.min.css\";i:78;s:82:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/columns/style.css\";i:79;s:86:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/columns/style.min.css\";i:80;s:94:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/comment-content/style-rtl.css\";i:81;s:98:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/comment-content/style-rtl.min.css\";i:82;s:90:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/comment-content/style.css\";i:83;s:94:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/comment-content/style.min.css\";i:84;s:95:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/comment-template/style-rtl.css\";i:85;s:99:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/comment-template/style-rtl.min.css\";i:86;s:91:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/comment-template/style.css\";i:87;s:95:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/comment-template/style.min.css\";i:88;s:107:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/comments-pagination-numbers/editor-rtl.css\";i:89;s:111:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/comments-pagination-numbers/editor-rtl.min.css\";i:90;s:103:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/comments-pagination-numbers/editor.css\";i:91;s:107:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/comments-pagination-numbers/editor.min.css\";i:92;s:99:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/comments-pagination/editor-rtl.css\";i:93;s:103:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/comments-pagination/editor-rtl.min.css\";i:94;s:95:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/comments-pagination/editor.css\";i:95;s:99:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/comments-pagination/editor.min.css\";i:96;s:98:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/comments-pagination/style-rtl.css\";i:97;s:102:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/comments-pagination/style-rtl.min.css\";i:98;s:94:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/comments-pagination/style.css\";i:99;s:98:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/comments-pagination/style.min.css\";i:100;s:94:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/comments-title/editor-rtl.css\";i:101;s:98:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/comments-title/editor-rtl.min.css\";i:102;s:90:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/comments-title/editor.css\";i:103;s:94:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/comments-title/editor.min.css\";i:104;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/comments/editor-rtl.css\";i:105;s:92:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/comments/editor-rtl.min.css\";i:106;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/comments/editor.css\";i:107;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/comments/editor.min.css\";i:108;s:87:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/comments/style-rtl.css\";i:109;s:91:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/comments/style-rtl.min.css\";i:110;s:83:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/comments/style.css\";i:111;s:87:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/comments/style.min.css\";i:112;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/cover/editor-rtl.css\";i:113;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/cover/editor-rtl.min.css\";i:114;s:81:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/cover/editor.css\";i:115;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/cover/editor.min.css\";i:116;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/cover/style-rtl.css\";i:117;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/cover/style-rtl.min.css\";i:118;s:80:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/cover/style.css\";i:119;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/cover/style.min.css\";i:120;s:87:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/details/editor-rtl.css\";i:121;s:91:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/details/editor-rtl.min.css\";i:122;s:83:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/details/editor.css\";i:123;s:87:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/details/editor.min.css\";i:124;s:86:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/details/style-rtl.css\";i:125;s:90:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/details/style-rtl.min.css\";i:126;s:82:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/details/style.css\";i:127;s:86:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/details/style.min.css\";i:128;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/embed/editor-rtl.css\";i:129;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/embed/editor-rtl.min.css\";i:130;s:81:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/embed/editor.css\";i:131;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/embed/editor.min.css\";i:132;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/embed/style-rtl.css\";i:133;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/embed/style-rtl.min.css\";i:134;s:80:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/embed/style.css\";i:135;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/embed/style.min.css\";i:136;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/embed/theme-rtl.css\";i:137;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/embed/theme-rtl.min.css\";i:138;s:80:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/embed/theme.css\";i:139;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/embed/theme.min.css\";i:140;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/file/editor-rtl.css\";i:141;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/file/editor-rtl.min.css\";i:142;s:80:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/file/editor.css\";i:143;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/file/editor.min.css\";i:144;s:83:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/file/style-rtl.css\";i:145;s:87:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/file/style-rtl.min.css\";i:146;s:79:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/file/style.css\";i:147;s:83:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/file/style.min.css\";i:148;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/footnotes/style-rtl.css\";i:149;s:92:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/footnotes/style-rtl.min.css\";i:150;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/footnotes/style.css\";i:151;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/footnotes/style.min.css\";i:152;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/freeform/editor-rtl.css\";i:153;s:92:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/freeform/editor-rtl.min.css\";i:154;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/freeform/editor.css\";i:155;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/freeform/editor.min.css\";i:156;s:87:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/gallery/editor-rtl.css\";i:157;s:91:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/gallery/editor-rtl.min.css\";i:158;s:83:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/gallery/editor.css\";i:159;s:87:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/gallery/editor.min.css\";i:160;s:86:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/gallery/style-rtl.css\";i:161;s:90:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/gallery/style-rtl.min.css\";i:162;s:82:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/gallery/style.css\";i:163;s:86:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/gallery/style.min.css\";i:164;s:86:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/gallery/theme-rtl.css\";i:165;s:90:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/gallery/theme-rtl.min.css\";i:166;s:82:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/gallery/theme.css\";i:167;s:86:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/gallery/theme.min.css\";i:168;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/group/editor-rtl.css\";i:169;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/group/editor-rtl.min.css\";i:170;s:81:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/group/editor.css\";i:171;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/group/editor.min.css\";i:172;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/group/style-rtl.css\";i:173;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/group/style-rtl.min.css\";i:174;s:80:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/group/style.css\";i:175;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/group/style.min.css\";i:176;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/group/theme-rtl.css\";i:177;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/group/theme-rtl.min.css\";i:178;s:80:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/group/theme.css\";i:179;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/group/theme.min.css\";i:180;s:86:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/heading/style-rtl.css\";i:181;s:90:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/heading/style-rtl.min.css\";i:182;s:82:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/heading/style.css\";i:183;s:86:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/heading/style.min.css\";i:184;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/html/editor-rtl.css\";i:185;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/html/editor-rtl.min.css\";i:186;s:80:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/html/editor.css\";i:187;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/html/editor.min.css\";i:188;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/image/editor-rtl.css\";i:189;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/image/editor-rtl.min.css\";i:190;s:81:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/image/editor.css\";i:191;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/image/editor.min.css\";i:192;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/image/style-rtl.css\";i:193;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/image/style-rtl.min.css\";i:194;s:80:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/image/style.css\";i:195;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/image/style.min.css\";i:196;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/image/theme-rtl.css\";i:197;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/image/theme-rtl.min.css\";i:198;s:80:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/image/theme.css\";i:199;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/image/theme.min.css\";i:200;s:94:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/latest-comments/style-rtl.css\";i:201;s:98:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/latest-comments/style-rtl.min.css\";i:202;s:90:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/latest-comments/style.css\";i:203;s:94:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/latest-comments/style.min.css\";i:204;s:92:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/latest-posts/editor-rtl.css\";i:205;s:96:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/latest-posts/editor-rtl.min.css\";i:206;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/latest-posts/editor.css\";i:207;s:92:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/latest-posts/editor.min.css\";i:208;s:91:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/latest-posts/style-rtl.css\";i:209;s:95:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/latest-posts/style-rtl.min.css\";i:210;s:87:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/latest-posts/style.css\";i:211;s:91:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/latest-posts/style.min.css\";i:212;s:83:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/list/style-rtl.css\";i:213;s:87:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/list/style-rtl.min.css\";i:214;s:79:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/list/style.css\";i:215;s:83:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/list/style.min.css\";i:216;s:90:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/media-text/editor-rtl.css\";i:217;s:94:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/media-text/editor-rtl.min.css\";i:218;s:86:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/media-text/editor.css\";i:219;s:90:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/media-text/editor.min.css\";i:220;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/media-text/style-rtl.css\";i:221;s:93:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/media-text/style-rtl.min.css\";i:222;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/media-text/style.css\";i:223;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/media-text/style.min.css\";i:224;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/more/editor-rtl.css\";i:225;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/more/editor-rtl.min.css\";i:226;s:80:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/more/editor.css\";i:227;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/more/editor.min.css\";i:228;s:95:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/navigation-link/editor-rtl.css\";i:229;s:99:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/navigation-link/editor-rtl.min.css\";i:230;s:91:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/navigation-link/editor.css\";i:231;s:95:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/navigation-link/editor.min.css\";i:232;s:94:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/navigation-link/style-rtl.css\";i:233;s:98:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/navigation-link/style-rtl.min.css\";i:234;s:90:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/navigation-link/style.css\";i:235;s:94:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/navigation-link/style.min.css\";i:236;s:98:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/navigation-submenu/editor-rtl.css\";i:237;s:102:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/navigation-submenu/editor-rtl.min.css\";i:238;s:94:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/navigation-submenu/editor.css\";i:239;s:98:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/navigation-submenu/editor.min.css\";i:240;s:90:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/navigation/editor-rtl.css\";i:241;s:94:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/navigation/editor-rtl.min.css\";i:242;s:86:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/navigation/editor.css\";i:243;s:90:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/navigation/editor.min.css\";i:244;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/navigation/style-rtl.css\";i:245;s:93:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/navigation/style-rtl.min.css\";i:246;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/navigation/style.css\";i:247;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/navigation/style.min.css\";i:248;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/nextpage/editor-rtl.css\";i:249;s:92:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/nextpage/editor-rtl.min.css\";i:250;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/nextpage/editor.css\";i:251;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/nextpage/editor.min.css\";i:252;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/page-list/editor-rtl.css\";i:253;s:93:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/page-list/editor-rtl.min.css\";i:254;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/page-list/editor.css\";i:255;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/page-list/editor.min.css\";i:256;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/page-list/style-rtl.css\";i:257;s:92:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/page-list/style-rtl.min.css\";i:258;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/page-list/style.css\";i:259;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/page-list/style.min.css\";i:260;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/paragraph/editor-rtl.css\";i:261;s:93:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/paragraph/editor-rtl.min.css\";i:262;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/paragraph/editor.css\";i:263;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/paragraph/editor.min.css\";i:264;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/paragraph/style-rtl.css\";i:265;s:92:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/paragraph/style-rtl.min.css\";i:266;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/paragraph/style.css\";i:267;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/paragraph/style.min.css\";i:268;s:90:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-author/style-rtl.css\";i:269;s:94:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-author/style-rtl.min.css\";i:270;s:86:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-author/style.css\";i:271;s:90:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-author/style.min.css\";i:272;s:98:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-comments-form/editor-rtl.css\";i:273;s:102:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-comments-form/editor-rtl.min.css\";i:274;s:94:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-comments-form/editor.css\";i:275;s:98:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-comments-form/editor.min.css\";i:276;s:97:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-comments-form/style-rtl.css\";i:277;s:101:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-comments-form/style-rtl.min.css\";i:278;s:93:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-comments-form/style.css\";i:279;s:97:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-comments-form/style.min.css\";i:280;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-date/style-rtl.css\";i:281;s:92:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-date/style-rtl.min.css\";i:282;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-date/style.css\";i:283;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-date/style.min.css\";i:284;s:92:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-excerpt/editor-rtl.css\";i:285;s:96:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-excerpt/editor-rtl.min.css\";i:286;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-excerpt/editor.css\";i:287;s:92:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-excerpt/editor.min.css\";i:288;s:91:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-excerpt/style-rtl.css\";i:289;s:95:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-excerpt/style-rtl.min.css\";i:290;s:87:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-excerpt/style.css\";i:291;s:91:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-excerpt/style.min.css\";i:292;s:99:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-featured-image/editor-rtl.css\";i:293;s:103:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-featured-image/editor-rtl.min.css\";i:294;s:95:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-featured-image/editor.css\";i:295;s:99:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-featured-image/editor.min.css\";i:296;s:98:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-featured-image/style-rtl.css\";i:297;s:102:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-featured-image/style-rtl.min.css\";i:298;s:94:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-featured-image/style.css\";i:299;s:98:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-featured-image/style.min.css\";i:300;s:99:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-navigation-link/style-rtl.css\";i:301;s:103:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-navigation-link/style-rtl.min.css\";i:302;s:95:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-navigation-link/style.css\";i:303;s:99:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-navigation-link/style.min.css\";i:304;s:93:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-template/editor-rtl.css\";i:305;s:97:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-template/editor-rtl.min.css\";i:306;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-template/editor.css\";i:307;s:93:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-template/editor.min.css\";i:308;s:92:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-template/style-rtl.css\";i:309;s:96:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-template/style-rtl.min.css\";i:310;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-template/style.css\";i:311;s:92:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-template/style.min.css\";i:312;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-terms/style-rtl.css\";i:313;s:93:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-terms/style-rtl.min.css\";i:314;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-terms/style.css\";i:315;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-terms/style.min.css\";i:316;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-title/style-rtl.css\";i:317;s:93:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-title/style-rtl.min.css\";i:318;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-title/style.css\";i:319;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/post-title/style.min.css\";i:320;s:91:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/preformatted/style-rtl.css\";i:321;s:95:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/preformatted/style-rtl.min.css\";i:322;s:87:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/preformatted/style.css\";i:323;s:91:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/preformatted/style.min.css\";i:324;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/pullquote/editor-rtl.css\";i:325;s:93:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/pullquote/editor-rtl.min.css\";i:326;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/pullquote/editor.css\";i:327;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/pullquote/editor.min.css\";i:328;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/pullquote/style-rtl.css\";i:329;s:92:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/pullquote/style-rtl.min.css\";i:330;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/pullquote/style.css\";i:331;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/pullquote/style.min.css\";i:332;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/pullquote/theme-rtl.css\";i:333;s:92:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/pullquote/theme-rtl.min.css\";i:334;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/pullquote/theme.css\";i:335;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/pullquote/theme.min.css\";i:336;s:104:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/query-pagination-numbers/editor-rtl.css\";i:337;s:108:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/query-pagination-numbers/editor-rtl.min.css\";i:338;s:100:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/query-pagination-numbers/editor.css\";i:339;s:104:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/query-pagination-numbers/editor.min.css\";i:340;s:96:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/query-pagination/editor-rtl.css\";i:341;s:100:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/query-pagination/editor-rtl.min.css\";i:342;s:92:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/query-pagination/editor.css\";i:343;s:96:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/query-pagination/editor.min.css\";i:344;s:95:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/query-pagination/style-rtl.css\";i:345;s:99:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/query-pagination/style-rtl.min.css\";i:346;s:91:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/query-pagination/style.css\";i:347;s:95:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/query-pagination/style.min.css\";i:348;s:90:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/query-title/style-rtl.css\";i:349;s:94:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/query-title/style-rtl.min.css\";i:350;s:86:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/query-title/style.css\";i:351;s:90:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/query-title/style.min.css\";i:352;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/query/editor-rtl.css\";i:353;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/query/editor-rtl.min.css\";i:354;s:81:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/query/editor.css\";i:355;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/query/editor.min.css\";i:356;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/quote/style-rtl.css\";i:357;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/quote/style-rtl.min.css\";i:358;s:80:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/quote/style.css\";i:359;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/quote/style.min.css\";i:360;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/quote/theme-rtl.css\";i:361;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/quote/theme-rtl.min.css\";i:362;s:80:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/quote/theme.css\";i:363;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/quote/theme.min.css\";i:364;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/read-more/style-rtl.css\";i:365;s:92:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/read-more/style-rtl.min.css\";i:366;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/read-more/style.css\";i:367;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/read-more/style.min.css\";i:368;s:83:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/rss/editor-rtl.css\";i:369;s:87:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/rss/editor-rtl.min.css\";i:370;s:79:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/rss/editor.css\";i:371;s:83:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/rss/editor.min.css\";i:372;s:82:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/rss/style-rtl.css\";i:373;s:86:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/rss/style-rtl.min.css\";i:374;s:78:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/rss/style.css\";i:375;s:82:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/rss/style.min.css\";i:376;s:86:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/search/editor-rtl.css\";i:377;s:90:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/search/editor-rtl.min.css\";i:378;s:82:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/search/editor.css\";i:379;s:86:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/search/editor.min.css\";i:380;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/search/style-rtl.css\";i:381;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/search/style-rtl.min.css\";i:382;s:81:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/search/style.css\";i:383;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/search/style.min.css\";i:384;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/search/theme-rtl.css\";i:385;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/search/theme-rtl.min.css\";i:386;s:81:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/search/theme.css\";i:387;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/search/theme.min.css\";i:388;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/separator/editor-rtl.css\";i:389;s:93:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/separator/editor-rtl.min.css\";i:390;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/separator/editor.css\";i:391;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/separator/editor.min.css\";i:392;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/separator/style-rtl.css\";i:393;s:92:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/separator/style-rtl.min.css\";i:394;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/separator/style.css\";i:395;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/separator/style.min.css\";i:396;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/separator/theme-rtl.css\";i:397;s:92:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/separator/theme-rtl.min.css\";i:398;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/separator/theme.css\";i:399;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/separator/theme.min.css\";i:400;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/shortcode/editor-rtl.css\";i:401;s:93:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/shortcode/editor-rtl.min.css\";i:402;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/shortcode/editor.css\";i:403;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/shortcode/editor.min.css\";i:404;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/site-logo/editor-rtl.css\";i:405;s:93:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/site-logo/editor-rtl.min.css\";i:406;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/site-logo/editor.css\";i:407;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/site-logo/editor.min.css\";i:408;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/site-logo/style-rtl.css\";i:409;s:92:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/site-logo/style-rtl.min.css\";i:410;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/site-logo/style.css\";i:411;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/site-logo/style.min.css\";i:412;s:92:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/site-tagline/editor-rtl.css\";i:413;s:96:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/site-tagline/editor-rtl.min.css\";i:414;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/site-tagline/editor.css\";i:415;s:92:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/site-tagline/editor.min.css\";i:416;s:90:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/site-title/editor-rtl.css\";i:417;s:94:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/site-title/editor-rtl.min.css\";i:418;s:86:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/site-title/editor.css\";i:419;s:90:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/site-title/editor.min.css\";i:420;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/site-title/style-rtl.css\";i:421;s:93:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/site-title/style-rtl.min.css\";i:422;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/site-title/style.css\";i:423;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/site-title/style.min.css\";i:424;s:91:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/social-link/editor-rtl.css\";i:425;s:95:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/social-link/editor-rtl.min.css\";i:426;s:87:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/social-link/editor.css\";i:427;s:91:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/social-link/editor.min.css\";i:428;s:92:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/social-links/editor-rtl.css\";i:429;s:96:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/social-links/editor-rtl.min.css\";i:430;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/social-links/editor.css\";i:431;s:92:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/social-links/editor.min.css\";i:432;s:91:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/social-links/style-rtl.css\";i:433;s:95:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/social-links/style-rtl.min.css\";i:434;s:87:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/social-links/style.css\";i:435;s:91:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/social-links/style.min.css\";i:436;s:86:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/spacer/editor-rtl.css\";i:437;s:90:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/spacer/editor-rtl.min.css\";i:438;s:82:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/spacer/editor.css\";i:439;s:86:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/spacer/editor.min.css\";i:440;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/spacer/style-rtl.css\";i:441;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/spacer/style-rtl.min.css\";i:442;s:81:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/spacer/style.css\";i:443;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/spacer/style.min.css\";i:444;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/table/editor-rtl.css\";i:445;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/table/editor-rtl.min.css\";i:446;s:81:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/table/editor.css\";i:447;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/table/editor.min.css\";i:448;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/table/style-rtl.css\";i:449;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/table/style-rtl.min.css\";i:450;s:80:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/table/style.css\";i:451;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/table/style.min.css\";i:452;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/table/theme-rtl.css\";i:453;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/table/theme-rtl.min.css\";i:454;s:80:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/table/theme.css\";i:455;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/table/theme.min.css\";i:456;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/tag-cloud/style-rtl.css\";i:457;s:92:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/tag-cloud/style-rtl.min.css\";i:458;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/tag-cloud/style.css\";i:459;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/tag-cloud/style.min.css\";i:460;s:93:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/template-part/editor-rtl.css\";i:461;s:97:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/template-part/editor-rtl.min.css\";i:462;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/template-part/editor.css\";i:463;s:93:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/template-part/editor.min.css\";i:464;s:92:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/template-part/theme-rtl.css\";i:465;s:96:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/template-part/theme-rtl.min.css\";i:466;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/template-part/theme.css\";i:467;s:92:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/template-part/theme.min.css\";i:468;s:95:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/term-description/style-rtl.css\";i:469;s:99:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/term-description/style-rtl.min.css\";i:470;s:91:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/term-description/style.css\";i:471;s:95:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/term-description/style.min.css\";i:472;s:92:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/text-columns/editor-rtl.css\";i:473;s:96:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/text-columns/editor-rtl.min.css\";i:474;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/text-columns/editor.css\";i:475;s:92:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/text-columns/editor.min.css\";i:476;s:91:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/text-columns/style-rtl.css\";i:477;s:95:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/text-columns/style-rtl.min.css\";i:478;s:87:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/text-columns/style.css\";i:479;s:91:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/text-columns/style.min.css\";i:480;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/verse/style-rtl.css\";i:481;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/verse/style-rtl.min.css\";i:482;s:80:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/verse/style.css\";i:483;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/verse/style.min.css\";i:484;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/video/editor-rtl.css\";i:485;s:89:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/video/editor-rtl.min.css\";i:486;s:81:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/video/editor.css\";i:487;s:85:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/video/editor.min.css\";i:488;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/video/style-rtl.css\";i:489;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/video/style-rtl.min.css\";i:490;s:80:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/video/style.css\";i:491;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/video/style.min.css\";i:492;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/video/theme-rtl.css\";i:493;s:88:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/video/theme-rtl.min.css\";i:494;s:80:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/video/theme.css\";i:495;s:84:\"/home/midura5/test-site.goodcausepartners.com/wp-includes/blocks/video/theme.min.css\";}','yes'),(124,'https_detection_errors','a:1:{s:19:\"bad_response_source\";a:1:{i:0;s:55:\"It looks like the response did not come from this site.\";}}','yes'),(125,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.3.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-6.3-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"6.3\";s:7:\"version\";s:3:\"6.3\";s:11:\"php_version\";s:5:\"7.0.0\";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:1692807936;s:15:\"version_checked\";s:3:\"6.3\";s:12:\"translations\";a:0:{}}','no'),(3414,'_site_transient_timeout_theme_roots','1692809586','no'),(3415,'_site_transient_theme_roots','a:5:{s:17:\"Avada-Child-Theme\";s:7:\"/themes\";s:5:\"Avada\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(187,'current_theme','Avada Child','yes'),(188,'theme_mods_Avada-Child-Theme','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:15:\"main_navigation\";i:20;}s:18:\"custom_css_post_id\";i:-1;}','yes'),(189,'theme_switched','','yes'),(190,'avada_version','7.11.2','yes'),(206,'avada_disable_builder','1','yes'),(207,'avada_disable_encoding','1','yes'),(230,'fusion_registration_data','a:1:{s:5:\"avada\";a:5:{s:5:\"token\";s:0:\"\";s:13:\"purchase_code\";s:36:\"080cd00c-b040-4f21-b0d6-a1b08216609c\";s:8:\"is_valid\";b:1;s:6:\"scopes\";a:0:{}s:6:\"errors\";s:0:\"\";}}','yes'),(131,'_transient_timeout_jetpack_file_data_11.2-a.5','1694814627','no'),(132,'_transient_jetpack_file_data_11.2-a.5','a:1:{s:32:\"3fd340ad52927afb3bbb9e98575eccfd\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:24:\"requires_user_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}}','no'),(133,'jetpack_available_modules','a:1:{s:4:\"12.4\";a:47:{s:10:\"action-bar\";s:4:\"11.4\";s:5:\"blaze\";s:4:\"12.3\";s:8:\"carousel\";s:3:\"1.5\";s:13:\"comment-likes\";s:3:\"5.1\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:9:\"copy-post\";s:3:\"7.0\";s:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:21:\"enhanced-distribution\";s:3:\"1.2\";s:16:\"google-analytics\";s:3:\"4.5\";s:12:\"google-fonts\";s:6:\"10.8.0\";s:19:\"gravatar-hovercards\";s:3:\"1.1\";s:15:\"infinite-scroll\";s:3:\"2.0\";s:8:\"json-api\";s:3:\"1.9\";s:5:\"latex\";s:3:\"1.1\";s:11:\"lazy-images\";s:5:\"5.6.0\";s:5:\"likes\";s:3:\"2.2\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"masterbar\";s:3:\"4.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"photon-cdn\";s:3:\"6.6\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:9:\"post-list\";s:4:\"11.3\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:13:\"related-posts\";s:3:\"2.9\";s:6:\"search\";s:3:\"5.0\";s:9:\"seo-tools\";s:3:\"4.4\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:8:\"sitemaps\";s:3:\"3.9\";s:3:\"sso\";s:3:\"2.6\";s:5:\"stats\";s:3:\"1.1\";s:13:\"subscriptions\";s:3:\"1.2\";s:13:\"tiled-gallery\";s:3:\"2.1\";s:10:\"vaultpress\";s:5:\"0:1.2\";s:18:\"verification-tools\";s:3:\"3.0\";s:10:\"videopress\";s:3:\"2.5\";s:3:\"waf\";s:4:\"10.9\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";s:21:\"woocommerce-analytics\";s:3:\"8.4\";s:7:\"wordads\";s:5:\"4.5.0\";}}','yes'),(134,'jetpack_sync_settings_disable','0','yes'),(135,'jetpack_connection_active_plugins','a:1:{s:7:\"jetpack\";a:1:{s:4:\"name\";s:7:\"Jetpack\";}}','yes'),(137,'_transient_jetpack_autoloader_plugin_paths','a:1:{i:0;s:25:\"{{WP_PLUGIN_DIR}}/jetpack\";}','yes'),(138,'boldgrid_settings','a:2:{s:7:\"library\";a:1:{s:35:\"boldgrid-backup/boldgrid-backup.php\";s:8:\"2.13.7.0\";}s:15:\"plugins_checked\";a:2:{s:35:\"boldgrid-backup/boldgrid-backup.php\";a:2:{s:6:\"1.15.2\";i:1692309060;s:6:\"1.15.7\";i:1692638899;}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";a:1:{s:5:\"1.5.9\";i:1692638899;}}}','yes'),(139,'boldgrid_backup_id','f959c729','no'),(140,'boldgrid_backup_settings','a:14:{s:8:\"schedule\";a:10:{s:10:\"dow_sunday\";i:0;s:10:\"dow_monday\";i:0;s:11:\"dow_tuesday\";i:0;s:13:\"dow_wednesday\";i:0;s:12:\"dow_thursday\";i:0;s:10:\"dow_friday\";i:0;s:12:\"dow_saturday\";i:0;s:5:\"tod_h\";i:2;s:5:\"tod_m\";i:41;s:5:\"tod_a\";s:2:\"AM\";}s:15:\"retention_count\";i:5;s:18:\"notification_email\";s:26:\"info@goodcausepartners.com\";s:13:\"notifications\";a:3:{s:6:\"backup\";i:1;s:7:\"restore\";i:1;s:10:\"site_check\";b:1;}s:11:\"auto_backup\";i:1;s:13:\"auto_rollback\";i:1;s:6:\"remote\";a:1:{s:5:\"local\";a:1:{s:7:\"enabled\";b:1;}}s:14:\"exclude_tables\";a:0:{}s:24:\"folder_exclusion_include\";s:18:\"WPCORE,/wp-content\";s:24:\"folder_exclusion_exclude\";s:17:\".git,node_modules\";s:10:\"site_check\";a:4:{s:7:\"enabled\";b:1;s:6:\"logger\";b:1;s:13:\"auto_recovery\";b:0;s:8:\"interval\";i:15;}s:10:\"encrypt_db\";b:0;s:11:\"auto_update\";a:3:{s:4:\"days\";i:0;s:7:\"plugins\";a:1:{s:7:\"default\";s:1:\"0\";}s:6:\"themes\";a:1:{s:7:\"default\";s:1:\"0\";}}s:16:\"backup_directory\";s:29:\"/home/midura5/boldgrid_backup\";}','no'),(2547,'_transient_timeout_boldgrid_backup_system_zip_test','1692849124','no'),(2548,'_transient_boldgrid_backup_system_zip_test','1','no'),(2549,'_transient_timeout_boldgrid_backup_is_functional','1692849124','no'),(146,'jetpack_sync_https_history_home_url','a:5:{i:0;s:4:\"http\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(145,'jetpack_options','a:3:{s:14:\"last_heartbeat\";i:1692743477;s:7:\"version\";s:19:\"11.2-a.5:1692309323\";s:11:\"old_version\";s:19:\"11.2-a.5:1692309323\";}','yes'),(147,'jetpack_sync_https_history_site_url','a:5:{i:0;s:4:\"http\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(151,'boldgrid_backup_environment','a:3:{s:8:\"hostname\";s:26:\"biz306.inmotionhosting.com\";s:10:\"phpversion\";s:6:\"8.1.21\";s:9:\"wpversion\";s:3:\"6.3\";}','yes'),(468,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1692807936;s:7:\"checked\";a:5:{s:17:\"Avada-Child-Theme\";s:5:\"1.0.0\";s:5:\"Avada\";s:6:\"7.11.2\";s:15:\"twentytwentyone\";s:3:\"1.9\";s:17:\"twentytwentythree\";s:3:\"1.2\";s:15:\"twentytwentytwo\";s:3:\"1.5\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:4:{s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.8\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.8.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.2\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.2.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.4\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.4.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:6:\"7.11.2\";s:3:\"url\";s:58:\"https://avada.com/wp-content/uploads/2023/03/changelog.txt\";s:7:\"package\";s:109:\"https://updates.theme-fusion.com/?avada_action=get_theme&ver=7.11.2&code=080cd00c-b040-4f21-b0d6-a1b08216609c\";s:8:\"required\";s:3:\"4.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(153,'do_activate','0','yes'),(154,'jetpack_activated','2','yes'),(159,'_site_transient_timeout_browser_f2138246781f76a1407401847c35337f','1692914123','no'),(160,'_site_transient_browser_f2138246781f76a1407401847c35337f','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:5:\"116.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'),(161,'_site_transient_timeout_php_check_8fa879a52057541fd4d02aa80888ea2b','1692914123','no'),(162,'_site_transient_php_check_8fa879a52057541fd4d02aa80888ea2b','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:3:\"7.0\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(179,'finished_updating_comment_type','1','yes'),(176,'can_compress_scripts','1','yes'),(2599,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1692807624','no'),(2600,'_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:139:\"WPTavern: WordPress Coding Standards Maintainer Warns Maintenance Will Be Halted Without Funding: “This Is an Unsustainable Situation.”\";s:7:\"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=148049\";s:7:\"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:142:\"https://wptavern.com/wordpress-coding-standards-maintainer-warns-maintenance-will-be-halted-without-funding-this-is-an-unsustainable-situation\";s: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:4425:\"<p><a href=\"https://github.com/WordPress/WordPress-Coding-Standards/releases/tag/3.0.0\">WordPressCS 3.0.0</a> was <a href=\"https://make.wordpress.org/core/2023/08/21/wordpresscs-3-0-0-is-now-available/\">released</a> this week with what its maintainer, Juliette Reinders Folmer, says are significant changes to improve the accuracy, performance, stability, and maintainability of all sniffs, and its handling of modern PHP. The project is a collection of <a href=\"https://github.com/squizlabs/PHP_CodeSniffer\">PHP_CodeSniffer</a> rules (sniffs) that are used to validate code developed for WordPress, helping developers meet the requirements of the official <a href=\"https://make.wordpress.org/core/handbook/best-practices/coding-standards/\">WordPress Coding Standards</a>.</p>\n\n\n\n<p>This update adds many of the non-controversial rules <a href=\"https://make.wordpress.org/core/2020/03/20/updating-the-coding-standards-for-modern-php/\">proposed in March 2020</a> to the Coding standards guidelines but leaves those that generated more discussion or objections for a future release. Many of the new rules are now available as sniffs in WordPressCS.</p>\n\n\n\n<p>Version 3.0.0 includes important architecture changes. Most notably, Composer is now the only supported way to install WordPressCS, as this update includes four run-time dependencies. The release contains breaking changes for those using ignore annotations and those who maintain custom rulesets or have created a custom PHPCS standard based on the project. A <a href=\"https://github.com/WordPress/WordPress-Coding-Standards/wiki/Upgrade-Guide-to-WordPressCS-3.0.0-for-Developers-of-external-standards\">detailed upgrade guide</a> is available for these various scenarios.</p>\n\n\n\n<p>WordPressCS is largely maintained by Folmer and a small group of volunteers, but the future of the project is in jeopardy if they cannot get funding. Folmer said it is currently in a good place with this release but this will not last long with the pace at which PHP is moving.</p>\n\n\n\n<p>&#8220;WordPressCS 3.0.0 has cost thousands of hours of work and the vast majority of work has been done by one, mostly unpaid, contributor, with code review support from two fellow maintainers,&#8221; she said.</p>\n\n\n\n<p>&#8220;Unless funding is found to continue maintaining WordPressCS and its dependencies, the future is bleak and maintenance will be halted.&#8221;</p>\n\n\n\n<p>Folmer is calling on corporation and agency users of WordPressCS to find a way to fund the project&#8217;s continued maintenance and development. She elaborated on the dire need to have more contributors involved:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>If we are being realistic, the&nbsp;<a href=\"https://en.wikipedia.org/wiki/Bus_factor\">bus factor</a>&nbsp;of WordPressCS is&nbsp;<strong>1</strong>, which is the most dangerous situation for any project to be in.</p>\n\n\n\n<p>A large part of the WordPress community, including WordPress Core, relies heavily on the WordPress Coding Standards for code quality and security checks and while the community has been pretty vocal with copious complaints about the delayed release, barely anyone has stepped up and actually contributed.</p>\n\n\n\n<p>The majority of the work for WordPressCS requires specialized knowledge. Knowledge which can be learned with enough time investment, but in recent years nobody has stepped up to do so.</p>\n\n\n\n<p><strong><em>This is an unsustainable situation and it ends now</em></strong>.</p>\n</blockquote>\n\n\n\n<p>WordPressCS has become one of the most highly used open source tools in the WordPress ecosystem that is now in a vulnerable place with so few contributors. Although many developers commented on the release, thanking Folmer for her efforts, no contributors or corporations have publicly stepped forward to support the project&#8217;s continued develpment.</p>\n\n\n\n<p>&#8220;With over 15 million installations on Packagist and a 400% increase in monthly installation in the past three years alone, WPCS’s popularity is surging and shows no sign of stopping,&#8221; Lucas Bustamante, a backend developer specialized in automated tests, commented on the post. &#8220;The situation is alarming as WPCS is a foundational tool that flags not only code style issues but also critical security issues, making WordPress a more secure CMS. Letting WPCS fall into limbo poses a risk to the entire 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:\"Tue, 22 Aug 2023 20:55:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:78:\"Do The Woo Community: All About the Page Builder Summit with Anchen and Nathan\";s:7:\"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=76079\";s:7:\"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://dothewoo.io/all-about-the-page-builder-summit-with-anchen-and-nathan/\";s: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:434:\"<p>We chat about the Page Builder Summit, how it started, what it takes to run the summit and what you can expect in September.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/all-about-the-page-builder-summit-with-anchen-and-nathan/\">All About the Page Builder Summit with Anchen and Nathan</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, 22 Aug 2023 08:07:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:107:\"WPTavern: New Chrome Browser Extension Enables One-Click Plugin and Theme Testing with WordPress Playground\";s:7:\"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=147997\";s:7:\"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://wptavern.com/new-chrome-browser-extension-enables-one-click-plugin-and-theme-testing-with-wordpress-playground\";s: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:4052:\"<p><a href=\"https://developer.wordpress.org/playground/\">WordPress Playground</a>, an experimental project that uses WebAssembly (WASM) to&nbsp;<a href=\"https://wptavern.com/new-prototype-runs-wordpress-in-the-browser-with-no-php-server\">run WordPress in the browser</a>,&nbsp;makes it possible for users to quickly test plugins and themes without having to set up a local development environment.</p>\n\n\n\n<p>Ordinarily, testing a plugin or theme with Playground requires visiting&nbsp;<a rel=\"noreferrer noopener\" href=\"https://playground.wordpress.net/\" target=\"_blank\"><code>playground.wordpress.net</code></a>, which will&nbsp;instantly create a real WordPress instance with admin access without having to install PHP, MySQL, or Apache. It runs inside the browser using a SQLite database. Adding a plugin or theme to the instance is as easy as appending the slug to the URL when creating the test site: </p>\n\n\n\n<p><a href=\"https://playground.wordpress.net/?plugin=gutenberg\">https://playground.wordpress.net/?plugin=gutenberg</a></p>\n\n\n\n<p><a href=\"https://playground.wordpress.net/?theme=lemmony-agency\">https://playground.wordpress.net/?theme=lemmony-agency</a></p>\n\n\n\n<p>A new Chrome browser extension, created by LUBUS, a development agency, makes this even easier by adding a &#8220;Playground&#8221; button to theme and plugin pages on WordPress.org. Users can fire up a sandbox instance to test drive a theme or plugin in just one click. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1470\" height=\"853\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/08/wordpress-playground-browser-extension-lubus.png\" alt=\"\" class=\"wp-image-148029\" />\n\n\n\n<p>I tested the extension and it works as advertised. It&#8217;s a neat little shortcut for launching a Playground instance without having to remember the URL or get the plugin/theme&#8217;s slug to append to it. The video below shows a site created with a selected plugin installed in under 20 seconds.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n\n\n\n\n<p>&#8220;We have been using Playground internally a lot for testing out plugins, and quick demos for internal or client meetings,&#8221; LUBUS founder Ajit Bohra said. &#8220;We often find a plugin or theme which we would like to test drive. It involves copying the slug of the theme or plugin and using them in the URL. To make this quick we thought of building and quick browser extension to add a button on wordpress.org to quickly launch a plugin or theme in the Playground.&#8221;</p>\n\n\n\n<p>Bohra posted his process of creating the extension in a <a href=\"https://twitter.com/ajitbohra/status/1692408702962393256\">thread</a> on X. He used the <a href=\"https://www.plasmo.com/\">Plasmo framework</a>, which offers a dedicated runtime for building browser extensions, taking the project from idea to built in approximately 30 minutes.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">For POC code wise all we need to get the required button on the plugin page. <a href=\"https://t.co/2lEV2H4q0K\">pic.twitter.com/2lEV2H4q0K</a></p>&mdash; Ajit Bohra (@ajitbohra) <a href=\"https://twitter.com/ajitbohra/status/1692415787791958085?ref_src=twsrc%5Etfw\">August 18, 2023</a></blockquote>\n</div>\n\n\n\n<p>Bohra said the browser extension is currently a proof of concept that he would like to further extend with more settings based on feedback from users. He also hopes to collaborate with the Meta team in the future to see something like this added to the plugin and theme pages on WordPress.org so that users don&#8217;t have to rely on a browser extension.</p>\n\n\n\n<p>The Chrome extension is called &#8220;<a href=\"https://chrome.google.com/webstore/detail/open-in-wordpress-playgro/khfpfafeepbfdhggfoalfmbhkmjkolmo/related\">Open in WordPress Playground</a>&#8221; and is available to the public for free on the Chrome Web Store. The code is <a href=\"https://github.com/lubusIN/wp-playground-browser-extension\">open source on GitHub</a> and open for contribution.</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, 22 Aug 2023 00:56: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: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: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:70:\"Do The Woo Community: Podcasting and Doing the Woo at WordCamp US 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:28:\"https://dothewoo.io/?p=76107\";s:7:\"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://dothewoo.io/podcasting-and-doing-the-woo-at-wordcamp-us-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:411:\"<p>Better late than never. Been thinking and talking about WordCamp US for the past few months, so yes, I will be there.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/podcasting-and-doing-the-woo-at-wordcamp-us-2023/\">Podcasting and Doing the Woo at WordCamp US 2023</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:\"Sat, 19 Aug 2023 13:09:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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: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:164:\"Post Status: Translations Across the Project • Admin Design • New Blocks Page • Working Group on Organizations Supporting WordPress • Contributor Mentorship\";s:7:\"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:159:\"https://poststatus.com/translations-across-the-project-admin-design-new-blocks-page-working-group-on-organizations-supporting-wordpress-contributor-mentorship/\";s:7:\"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:159:\"https://poststatus.com/translations-across-the-project-admin-design-new-blocks-page-working-group-on-organizations-supporting-wordpress-contributor-mentorship/\";s: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:19033:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (August 7, 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\">With just a few days before Community Summit, Contributor Day, and WordCamp US, many initiatives across the project are gearing up for time well-spent together. Docs, Training, and several other teams are joining together to work on translations and localizations in a way that supports Gutenberg Phase 4 Multilingual.The Design team is working on the&hellip; </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box150145_a5ac79-bb\"><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=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Translations, Dashboard Redesign, Blocks page, Supporting Orgs, Mentorship</h2><p class=\"kt-blocks-info-box-text\">  <a href=\"https://make.wordpress.org/polyglots/2023/08/15/discussion-for-a-proposal-for-wp-org-content-translation-and-localization/\">Discussion for a proposal for WP.org content translation and localization</a><br /><br />  <a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/\">Admin Design Kickoff</a><br /><br />  <a href=\"https://make.wordpress.org/meta/2023/08/11/introducing-wordpress-org-blocks/\">Introducing WordPress.org/blocks</a><br /><br />  <a href=\"https://make.wordpress.org/meta/2023/08/09/organizations-supporting-wordpress-org/\">Organizations Supporting WordPress.org</a><br /><br /> &#x200d;  <a href=\"https://make.wordpress.org/project/2023/08/11/the-inaugural-cohort-of-the-wordpress-contributor-mentorship-program-has-concluded/\">The Inaugural Cohort of the WordPress Contributor Mentorship Program has Concluded</a></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-150145_9cb3a4-58\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-150145_050cc2-2e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-2 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://jeanbaptisteaudras.com/2023/08/contribution-stats-for-wordpress-6-3-lionel/\">Contribution Stats for WordPress 6.3 « Lionel »</a></blockquote>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</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<div class=\"wp-block-columns is-layout-flex wp-container-7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-5 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/08/16/contributor-working-group-mentorship-chat-agenda-august-17th-0700-utc-apac-emea-and-1600-utc-amer/\">Contributor Working Group: Mentorship Chat Agenda | August 17th 07:00 UTC (APAC/EMEA) and 16:00 UTC (AMER)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/14/wcus-2023-community-team-event-at-contributor-day/\">WCUS 2023: Community Team event at Contributor Day</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/09/recap-of-the-diverse-speaker-training-group-wpdiversity-amer-emea-on-august-9-2023/\">Recap of the Diverse Speaker Training group (#WPDiversity) AMER/EMEA on August 9, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/2023/08/16/a-week-in-core-august-14-2023/\">Two Weeks in Core – August 14, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/15/status-update-on-the-interactivity-api/\">Status update on the Interactivity API</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Phase 3 Ideations</h3>\n\n\n\n<ul>\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\" rel=\"noreferrer noopener\">Real-Time Collaboration</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/04/workflows/\" rel=\"noreferrer noopener\">Workflows</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/05/revisions/\" rel=\"noreferrer noopener\">Revisions</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/07/media-library/\" rel=\"noreferrer noopener\">Media Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/10/block-library/\" rel=\"noreferrer noopener\">Block Library</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/12/admin-design/\" target=\"_blank\" rel=\"noreferrer noopener\">Admin Design</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/\">Admin Design Kickoff</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/08/whats-new-for-developers-august-2023/\">What’s new for developers? (August 2023)</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/15/dev-chat-agenda-august-16-2023/\">Dev Chat agenda, August 16, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/14/editor-chat-agenda-16-august-2023/\">Editor Chat Agenda: 16 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><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/08/14/design-share-jul-31-aug-11/\">Design Share: Jul 31-Aug 11</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/\">Admin Design Kickoff</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/08/15/agenda-for-docs-team-bi-weekly-meeting-august-15-2023/\">Agenda for Docs Team bi-weekly meeting August 15, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/14/documentation-team-update-august-14-2023/\">Documentation Team Update – August 14, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/2023/08/16/hosting-team-meeting-agenda-8-16-2023/\">Hosting Team Meeting Agenda 8-16-2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/hosting/2023/07/26/wordpress-hosting-survey/\">WordPress Hosting Survey</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/marketing\">Marketing</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/marketing/2023/07/10/notes-global-marketing-team-meeting-4-july-2023/\">Notes: Global Marketing Team meeting, 4 July 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/14/marketing-team-update-the-first-half-of-2023/\">Marketing Team Update: The first half of 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/08/11/introducing-wordpress-org-blocks/\">Introducing WordPress.org/blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/08/09/organizations-supporting-wordpress-org/\">Organizations Supporting WordPress.org</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/08/03/matrix-chat-summary-august/\">Matrix chat Summary – August 3, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/updates/2023/08/08/mobile-team-update-august-8th/\">Mobile Team Update – August 8th</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/08/07/last-week-openverse-2023-07-31-2023-08-07/\">A week in Openverse: 2023-07-31 – 2023-08-07</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/28/openverse-monthly-priorities-meeting-2023-08-02/\">Openverse Monthly Priorities Meeting 2023-08-02</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/08/15/performance-chat-summary-15-august-2023/\">Performance Chat Summary: 15 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/08/14/plugin-review-team-14-august-2023/\">Plugin Review Team: 14 August 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/16/agenda-weekly-polyglots-chat-august-16-2023-1300-utc/\">Agenda: Weekly Polyglots Chat – August 16, 2023 (13:00 UTC)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/15/discussion-for-a-proposal-for-wp-org-content-translation-and-localization/\">Discussion for a proposal for WP.org content translation and localization</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/08/11/the-inaugural-cohort-of-the-wordpress-contributor-mentorship-program-has-concluded/\">The Inaugural Cohort of the WordPress Contributor Mentorship Program has Concluded</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/07/28/sustainability-chat-summary-july-28-2023/\">Sustainability Chat Summary, July 28, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/2023/08/15/test-team-reps-call-for-nominations-3/\">Test Team Reps: Call for Nominations</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/08/15/test-team-at-wcus-2023/\">Test Team at WCUS 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/14/test-team-update-14-august-2023/\">Test Team Update: 14 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/08/11/blue-note-the-second-community-theme-is-released/\">Blue Note: The second community theme is released</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/15/themes-team-update-august-15-2023/\">Themes team update August 15, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/08/04/wcus-contributor-day-tutorials-workshop-in-person-remote/\">WCUS Contributor Day: Tutorials Workshop (In-Person &amp; Remote)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/03/introducing-the-training-team-guide-program/\">Introducing the Training Team Guide Program!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/02/announcing-the-first-learn-wordpress-course-cohort/\">Announcing the first Learn WordPress Course Cohort.</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/14/training-team-meeting-recap-8th-august-2023/\">Training Team Meeting Recap – 8th August 2023</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" 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/embedding-media-and-third-party-content-on-your-website/\">Embedding media and third-party content on your website</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/testing-your-plugins-for-php-version-compatibility/\">Testing your plugins for PHP version compatibility</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=https-www-meetup-com-learn-wordpress-online-workshops-events-295453051\">The Wide World of WordPress Events</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=contributing-to-the-learn-wordpress-platform-part-1\">Contributing to the Learn WordPress platform – part 1</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=whats-new-for-developers-august-2023\">What’s new for developers? (August 2023)</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-12\">WP dev livestream: Sendig block theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=training-team-contributor-hour\">Training Team Contributor Hour</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=website-auditing-and-conversion-optimization\">Website auditing and conversion optimization</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wordpress-database-optimization-and-maintenance\">WordPress database optimization and maintenance</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=creating-a-contact-page\">Creating a contact page</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" 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/developing-with-the-wordpress-rest-api/\">Introduction to developing with the WordPress REST API</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/tv\">WordPress TV</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/tv/2023/06/15/enhancing-slide-management-for-video-publications/\">Enhancing Slide Management for Video Publications</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/\">jQuery 3.7.0</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-1\">PHP 8.3.0 Alpha 3 available for testing</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\"></a><a href=\"https://www.php.net/archive/2023.php#2023-07-06-2\">PHP 8.2.8 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-3\">PHP 8.1.21 Released!</a></li>\n\n\n\n<li><a href=\"https://github.com/PHPMailer/PHPMailer/releases/tag/v6.8.0\">PHPMailer 6.8.0</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/\">TC39</a></li>\n\n\n\n<li><a href=\"http://github.com/composer/composer/releases/tag/2.5.8\">Composer 2.5.8</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>   <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&#8217; <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It&#8217;s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>.  </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://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:\"Sat, 19 Aug 2023 03:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:116:\"Post Status: WordPress 6.3 • Release Workflows • European Union Cyber Resiliency Act • Gutenberg Accessibility\";s:7:\"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:37:\"https://poststatus.com/wordpress-6-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"https://poststatus.com/wordpress-6-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:18225:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (August 7, 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.3, Lionel, has been released. It&#8217;s time to test out the details and footnotes blocks, give the WP_DEVELOPMENT_MODE a try, and check out the new Get Involved tab on the Welcome screen. The WordPress Training team announces its first course cohort for Learn.WordPress.org. The course will cover Developing Your First WordPress Block, and offer&hellip; </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box_94d1bd-77\"><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=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\"> WP 6.3, 1st LearnWP Cohort, EU CRA</h2><p class=\"kt-blocks-info-box-text\">  <a href=\"https://wordpress.org/news/2023/08/lionel/\">WordPress 6.3 “Lionel”</a><br /><br /> &#x200d;  <a href=\"https://make.wordpress.org/training/2023/08/02/announcing-the-first-learn-wordpress-course-cohort/\">Announcing the first Learn WordPress Course Cohort</a><br /><br /> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2934.png\" alt=\"⤴\" class=\"wp-smiley\" /><a href=\"https://make.wordpress.org/core/2023/08/01/proposal-improve-the-editor-tech-workflow-for-major-releases/\">Proposal: improve the editor tech workflow for major releases</a><br /><br />  <a href=\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\">Concerns over the European Union’s Cyber Resilience Act (CRA)</a></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_b57166-6e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/08/lionel/\">WordPress 6.3 “Lionel”</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\">Concerns over the European Union’s Cyber Resilience Act (CRA)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/contribute\">Contribute</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-9 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</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<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-14 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-12 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2023/08/07/matrix-test-results/\">Matrix Test Results</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/new-github-feature-request-separating-access-to-the-meetup-and-wordcamp-trackers/\">New GitHub Feature Request: Separating access to the Meetup and WordCamp trackers</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/community-team-meeting-agenda-for-3-august-2023/\">Community Team Meeting Agenda for 3 August, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/recap-inaugural-nextgen-pilot-events/\">Recap: Inaugural NextGen Pilot Events</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/2023/08/01/whose-ticket-is-it-anyway/\">Whose ticket is it, anyway?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/proposal-improve-the-editor-tech-workflow-for-major-releases/\">Proposal: improve the editor tech workflow for major releases</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/07/wordpress-6-3-performance-improvements/\">WordPress 6.3 performance improvements</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Phase 3 Ideations</h3>\n\n\n\n<ul>\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\" rel=\"noreferrer noopener\">Real-Time Collaboration</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/04/workflows/\" rel=\"noreferrer noopener\">Workflows</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/05/revisions/\" rel=\"noreferrer noopener\">Revisions</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/07/media-library/\" rel=\"noreferrer noopener\">Media Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/10/block-library/\" rel=\"noreferrer noopener\">Block Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/12/admin-design/\" rel=\"noreferrer noopener\">Admin Design</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/08/styling-blocks-empowering-users-with-css-custom-properties/\">Styling blocks: empowering users with CSS custom properties</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/09/dev-chat-agenda-august-9-2023/\">Dev Chat agenda, August 9, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/07/editor-chat-agenda-9-august-2023/\">Editor Chat Agenda: 9 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/08/04/summary-for-docs-team-meeting-august-1-2023/\">Summary for Docs Team meeting, August 1, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/07/documentation-team-update-august-7-2023/\">Documentation Team Update – August 7, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/2023/07/26/wordpress-hosting-survey/\">WordPress Hosting Survey</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/08/09/organizations-supporting-wordpress-org/\">Organizations Supporting WordPress.org</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/20/make-team-dashboards/\">Make Team Dashboards</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/15/triaging-open-issues-on-trac-for-make-teams/\">Triaging open issues on Trac for Make Teams</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/updates/2023/08/08/mobile-team-update-august-8th/\">Mobile Team Update – August 8th</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/08/07/last-week-openverse-2023-07-31-2023-08-07/\">A week in Openverse: 2023-07-31 – 2023-08-07</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/28/openverse-monthly-priorities-meeting-2023-08-02/\">Openverse Monthly Priorities Meeting 2023-08-02</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/08/08/performance-chat-summary-8-august-2023/\">Performance Chat Summary: 8 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/08/07/plugin-review-team-7-august-2023/\">Plugin Review Team: 7 August 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/09/adding-some-meta-buttons-always-visible/\">Adding some meta buttons always visible</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/09/new-wordpress-org-theme-for-your-rosetta-site/\">New WordPress.org Theme for your Rosetta Site</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/07/13/proposal-for-establishing-a-make-diversity-equity-inclusion-and-belonging-deib-team-within-the-wordpress-community/\">Proposal for Establishing a Make Diversity, Equity, Inclusion, and Belonging (“DEIB”) Team within the WordPress Community</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/07/28/sustainability-chat-summary-july-28-2023/\">Sustainability Chat Summary, July 28, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/updates/2023/08/07/test-team-update-7-august-2023/\">Test Team Update: 7 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/08/07/themes-team-meeting-agenda-for-august-08-2023/\">Themes team meeting agenda for August 08, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/08/themes-team-update-august-08-2023/\">Themes team update August 08, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/08/04/wcus-contributor-day-tutorials-workshop-in-person-remote/\">WCUS Contributor Day: Tutorials Workshop (In-Person &amp; Remote)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/03/introducing-the-training-team-guide-program/\">Introducing the Training Team Guide Program!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/02/announcing-the-first-learn-wordpress-course-cohort/\">Announcing the first Learn WordPress Course Cohort.</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" 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/exploring-wordpress-6-3/\">Exploring WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/how-to-use-the-spacer-block/\">How to use the spacer block</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=what-is-the-domain-name-system-6\">What is the Domain Name System?</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=what-is-the-domain-name-system-5\">What is the Domain Name System?</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=training-team-contributor-day-online-session-2\">Training Team Contributor Day Online Session</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=common-wordpress-apis-global-variables\">Common WordPress APIs: Global Variables</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-11\">WP dev livestream: Sendig block theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=%E3%83%95%E3%83%AB%E3%82%B5%E3%82%A4%E3%83%88%E7%B7%A8%E9%9B%86%E3%81%A7%E5%AE%9F%E9%9A%9B%E3%81%AB%E3%82%B5%E3%82%A4%E3%83%88%E3%82%92%E4%BD%9C%E3%81%A3%E3%81%A6%E3%81%BF%E3%82%88%E3%81%86%EF%BC%81\">フルサイト編集で実際にサイトを作ってみよう！</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=contributing-to-the-wordpress-community-team-events-and-roles\">Contributing to the WordPress Community Team: Events and Roles</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=hallway-hangout-extending-blocks-with-custom-design-tools\">Hallway Hangout: Extending blocks with custom design tools</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-start-contributing-to-the-wordpress-core\">How to start contributing to the WordPress Core</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" 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/developing-with-the-wordpress-rest-api/\">Introduction to developing with the WordPress REST API</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/tv\">WordPress TV</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/tv/2023/06/15/enhancing-slide-management-for-video-publications/\">Enhancing Slide Management for Video Publications</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/\">jQuery 3.7.0</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-1\">PHP 8.3.0 Alpha 3 available for testing</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\"></a><a href=\"https://www.php.net/archive/2023.php#2023-07-06-2\">PHP 8.2.8 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-3\">PHP 8.1.21 Released!</a></li>\n\n\n\n<li><a href=\"https://github.com/PHPMailer/PHPMailer/releases/tag/v6.8.0\">PHPMailer 6.8.0</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/\">TC39</a></li>\n\n\n\n<li><a href=\"http://github.com/composer/composer/releases/tag/2.5.8\">Composer 2.5.8</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>   <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&#8217; <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It&#8217;s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>.  </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://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:\"Sat, 19 Aug 2023 03:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:\"Post Status: WordPress 6.3 RC3 • Cyber Resilience Act • Accessibility in Block Editing • Merging Gutenberg during Alpha\";s:7:\"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:124:\"https://poststatus.com/wordpress-6-3-rc3-cyber-resilience-act-accessibility-in-block-editing-merging-gutenberg-during-alpha/\";s:7:\"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://poststatus.com/wordpress-6-3-rc3-cyber-resilience-act-accessibility-in-block-editing-merging-gutenberg-during-alpha/\";s: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:24892:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (July 30, 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\">What do WordPress, Drupal, Joomla, and TYPO3 have in common? Leaders across these Content Management Systems have come together to express their concerns and seek dialogue with EU legislators regarding the proposed Cyber Resilience Act. They emphasize the vital role of Free and Open Source Software in fostering innovation, security, and economic prosperity. We&#8217;re just&hellip; </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box_94d1bd-77\"><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=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\"> WP 6.3, Whose Ticket, Merging Gutenberg during Alpha, and EU CRA</h2><p class=\"kt-blocks-info-box-text\">  <a href=\"https://wordpress.org/news/2023/08/wordpress-6-3-rc3/\">WordPress 6.3 RC3</a><br /><br />  <a href=\"https://make.wordpress.org/core/2023/08/01/whose-ticket-is-it-anyway/\">Whose ticket is it, anyway?</a><br /><br /> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2934.png\" alt=\"⤴\" class=\"wp-smiley\" /><a href=\"https://make.wordpress.org/core/2023/08/01/proposal-improve-the-editor-tech-workflow-for-major-releases/\">Proposal: improve the editor tech workflow for major releases</a><br /><br />  <a href=\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\">Concerns over the European Union’s Cyber Resilience Act (CRA)</a></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_b57166-6e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\">Concerns over the European Union’s Cyber Resilience Act (CRA)</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/08/wordpress-6-3-rc3/\">WordPress 6.3 RC3</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/people-of-wordpress-ihtisham-zahoor/\">People of WordPress: Ihtisham Zahoor</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/synced-patterns-the-evolution-of-reusable-blocks/\">Synced Patterns: The Evolution of Reusable Blocks</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-17 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\">WordPress 6.3</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/wordpress-6-3-release-day-process/\">WordPress 6.3 Release Day Process</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/18/wordpress-6-3-ready-to-be-translated/\">WordPress 6.3 ready to be translated</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-2/\">WordPress 6.3 Release Candidate 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-3-accessibility-improvements/\">WordPress 6.3 Accessibility Improvements</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-1/\">WordPress 6.3 Release Candidate 1</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-2-release-candidate-phase-2/\">WordPress 6.3 Release Candidate Phase</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/30/6-3-release-parties-schedule-and-hosts/\">6.3 Release Parties Schedule and hosts</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">WordPress 6.3 Beta 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/05/25/wordpress-6-3-design-kickoff/\">WordPress 6.3 design kickoff</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/25/bug-scrub-schedule-for-6-3/\">Bug Scrub Schedule for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/wordpress-6-3-planning-roundup/\">WordPress 6.3 Planning Roundup</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\">Roadmap to 6.3</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\">WordPress 6.3 Field Guide and Dev-Notes</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">WordPress 6.3 Field Guide</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-block-selectors-api/\">Introducing the Block Selectors API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Introducing the WordPress Command Palette API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/layout-updates-in-the-editor-for-wordpress-6-3/\">Layout updates in the editor for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/social-icons-block-applied-colors-now-dynamically-update-based-on-theme-json-and-global-styles/\">Social Icons block: Applied colors now dynamically update based on theme.json and Global Styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-editor-changes-in-wordpress-6-3/\">Miscellaneous Editor changes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/bundled-themes-dropping-internet-explorer-scripts-and-styles/\">Bundled themes dropping Internet Explorer scripts and styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/improvements-to-the-cache-api-in-wordpress-6-3/\">Improvements to the Cache API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/configuring-development-mode-in-6-3/\">Configuring development mode in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/i18n-improvements-in-6-3/\">I18N Improvements in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/image-performance-enhancements-in-wordpress-6-3/\">Image performance enhancements in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/wp_query-used-internally-in-get_pages/\">WP_Query used internally in get_pages()</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/registering-scripts-with-async-and-defer-attributes-in-wordpress-6-3/\">Registering scripts with `async` and `defer` attributes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/improved-caching-for-database-queries-in-wp_user_query/\">Improved Caching for Database Queries in WP_User_Query</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-developer-changes-in-wordpress-6-3/\">Miscellaneous developer changes in WordPress 6.3</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<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-22 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-20 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2023/08/04/accessibility-team-meeting-agenda-august-4-2023/\">Accessibility Team Meeting Agenda: August 4, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/accessibility/2023/08/04/testing-matrix/\">Testing Matrix</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/new-github-feature-request-separating-access-to-the-meetup-and-wordcamp-trackers/\">New GitHub Feature Request: Separating access to the Meetup and WordCamp trackers</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/community-team-meeting-agenda-for-3-august-2023/\">Community Team Meeting Agenda for 3 August, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/recap-inaugural-nextgen-pilot-events/\">Recap: Inaugural NextGen Pilot Events</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/2023/08/01/whose-ticket-is-it-anyway/\">Whose ticket is it, anyway?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/proposal-improve-the-editor-tech-workflow-for-major-releases/\">Proposal: improve the editor tech workflow for major releases</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/a-week-in-core-july-31-2023/\">A Week in Core – July 31, 2023</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Phase 3 Ideations</h3>\n\n\n\n<ul>\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\" rel=\"noreferrer noopener\">Real-Time Collaboration</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/04/workflows/\" rel=\"noreferrer noopener\">Workflows</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/05/revisions/\" rel=\"noreferrer noopener\">Revisions</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/07/media-library/\" rel=\"noreferrer noopener\">Media Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/10/block-library/\" rel=\"noreferrer noopener\">Block Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/12/admin-design/\" rel=\"noreferrer noopener\">Admin Design</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/08/beyond-block-styles-part-3-building-custom-design-tools/\">Beyond block styles, part 3: building custom design tools</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/08/understand-and-use-wordpress-nonces-properly/\">Understand and use WordPress nonces properly</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/beyond-block-styles-part-2-building-a-custom-style-for-the-separator-block/\">Beyond block styles, part 2: building a custom style for the Separator block</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/dev-chat-agenda-august-1-2023/\">Dev Chat agenda, August 2, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/08/04/summary-for-docs-team-meeting-august-1-2023/\">Summary for Docs Team meeting, August 1, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/docs/2023/08/01/summary-for-docs-team-meeting-jul-18-2023/\">Summary for Docs Team meeting, Jul 18, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/2023/08/02/hosting-team-meeting-agenda-2023-08-02/\">Hosting Team meeting agenda 2023-08-02</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/hosting/2023/07/26/wordpress-hosting-survey/\">WordPress Hosting Survey</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/08/03/matrix-chat-summary-august/\">Matrix chat Summary – August 3, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/20/make-team-dashboards/\">Make Team Dashboards</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/15/triaging-open-issues-on-trac-for-make-teams/\">Triaging open issues on Trac for Make Teams</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/11/linking-to-supporting-orgs/\">Linking to Supporting Orgs</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul>\n<li></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/07/31/last-week-openverse-2023-07-24-2023-07-31/\">A week in Openverse: 2023-07-24 – 2023-07-31</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/28/openverse-monthly-priorities-meeting-2023-08-02/\">Openverse Monthly Priorities Meeting 2023-08-02</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/08/01/performance-chat-summary-25-july-2023-2/\">Performance Chat Summary: 1 August 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/01/core-performance-team-update-july-2023/\">Core Performance Team Update: July 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2023/07/24/tackling-team-challenges-together/\">Tackling team challenges together</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/31/plugin-review-team-31-jul-2023/\">Plugin Review Team: 31 Jul 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/03/cross-locale-project-translation-editor-request-5/\">Cross-Locale Project Translation Editor Request</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/02/adding-error-checks-at-translate-wordpress-org/\">Adding error checks at translate.wordpress.org</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/02/agenda-weekly-polyglots-chat-august-2-2023-1300-utc/\">Agenda: Weekly Polyglots Chat – August 2, 2023 (13:00 UTC)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/18/wordpress-6-3-ready-to-be-translated/\">WordPress 6.3 ready to be translated</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/07/13/proposal-for-establishing-a-make-diversity-equity-inclusion-and-belonging-deib-team-within-the-wordpress-community/\">Proposal for Establishing a Make Diversity, Equity, Inclusion, and Belonging (“DEIB”) Team within the WordPress Community</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Support</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2023/08/agenda-for-august-3rd-support-meeting-2/\">Agenda for August 3rd Support Meeting</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/support/2023/07/summary-for-july-27th-support-meeting/\">Summary for July 27th Support Meeting</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/07/28/sustainability-chat-summary-july-28-2023/\">Sustainability Chat Summary, July 28, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/updates/2023/07/31/test-team-update-31-july-2023/\">Test Team Update: 31 July 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/07/31/hallway-hangout-extending-blocks-with-custom-design-tools/\">Hallway Hangout: Extending blocks with custom design tools</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/01/themes-team-update-august-01-2023/\">Themes team update August 01, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/08/03/training-team-meeting-recap-1st-august-2023/\">Training Team Meeting Recap – 1st August 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/03/introducing-the-training-team-guide-program/\">Introducing the Training Team Guide Program!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/02/announcing-the-first-learn-wordpress-course-cohort/\">Announcing the first Learn WordPress Course Cohort.</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/01/xpost-whats-new-on-learn-wordpress-in-july-2023/\">X-post: What’s new on Learn WordPress in July 2023</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" 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/how-to-add-tables-to-your-site/\">How to add tables to your site</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=common-wordpress-apis-global-variables\">Common WordPress APIs: Global Variables</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-11\">WP dev livestream: Sendig block theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=%E3%83%95%E3%83%AB%E3%82%B5%E3%82%A4%E3%83%88%E7%B7%A8%E9%9B%86%E3%81%A7%E5%AE%9F%E9%9A%9B%E3%81%AB%E3%82%B5%E3%82%A4%E3%83%88%E3%82%92%E4%BD%9C%E3%81%A3%E3%81%A6%E3%81%BF%E3%82%88%E3%81%86%EF%BC%81\">フルサイト編集で実際にサイトを作ってみよう！</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=contributing-to-the-wordpress-community-team-events-and-roles\">Contributing to the WordPress Community Team: Events and Roles</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=hallway-hangout-extending-blocks-with-custom-design-tools\">Hallway Hangout: Extending blocks with custom design tools</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-start-contributing-to-the-wordpress-core\">How to start contributing to the WordPress Core</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=common-wordpress-apis-internationalization\">Common WordPress APIs: Internationalization</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-10\">WP dev livestream: Sendig block theme</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" 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/developing-with-the-wordpress-rest-api/\">Introduction to developing with the WordPress REST API</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/tv\">WordPress TV</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/tv/2023/06/15/enhancing-slide-management-for-video-publications/\">Enhancing Slide Management for Video Publications</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/\">jQuery 3.7.0</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-1\">PHP 8.3.0 Alpha 3 available for testing</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\"></a><a href=\"https://www.php.net/archive/2023.php#2023-07-06-2\">PHP 8.2.8 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-3\">PHP 8.1.21 Released!</a></li>\n\n\n\n<li><a href=\"https://github.com/PHPMailer/PHPMailer/releases/tag/v6.8.0\">PHPMailer 6.8.0</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/\">TC39</a></li>\n\n\n\n<li><a href=\"http://github.com/composer/composer/releases/tag/2.5.8\">Composer 2.5.8</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>   <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&#8217; <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It&#8217;s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>.  </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://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:\"Sat, 19 Aug 2023 03:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:91:\"Post Status: What is Coaching &amp; What Are Key Times to Have a Coach with Kelly Gallagher\";s:7:\"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:96:\"https://poststatus.com/what-is-coaching-what-are-key-times-to-have-a-coach-with-kelly-gallagher/\";s:7:\"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:96:\"https://poststatus.com/what-is-coaching-what-are-key-times-to-have-a-coach-with-kelly-gallagher/\";s: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:47578:\"<div class=\"wp-block-embed__wrapper\">\n\n</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 class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\">In this podcast episode, <a href=\"https://twitter.com/corymiller303\">Cory Miller</a> introduces his professional coach, <a href=\"https://www.linkedin.com/in/coachkellygallagher\">Kelly Gallagher</a>, to discuss the role of coaching in personal and professional growth. They explore the difference between coaching and therapy and how they can complement each other. They highlight the value of coaching for high achievers and how it can help with career changes, improving performance, and enhancing communication skills. Cory shares his personal experience with coaching and expresses its positive impact on his life.</p>\n\n\n\n<p class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"><strong>Episode Highlights:</strong></p>\n\n\n\n<ul type=\"video\" class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\">\n<li>[00:00:00] <strong>The role of coaching and introduction of Kelly Gallagher-</strong>Cory introduces Kelly Gallagher as his professional coach and discusses their working relationship for four and a half years.</li>\n\n\n\n<li>[00:01:25] <strong>Kelly&#8217;s background in business development and coaching training-</strong> Kelly shares her background in business development and her coaching journey, including her training and pursuit of a master&#8217;s degree.</li>\n\n\n\n<li>[00:07:38] <strong>The difference between coaching and therapy, and the value of coaching for high achievers</strong>-Cory and Kelly discuss the definition of coaching, the distinction between coaching and therapy, and the importance of coaching for high achievers.</li>\n\n\n\n<li>[00:11:39] <strong>The distinction between therapy and coaching-</strong>Discussion on the differences between therapy and coaching and how they complement each other.</li>\n\n\n\n<li>[00:12:41] <strong>The value of having a coach for high achievers-</strong>Exploration of the benefits of coaching for high achievers and the importance of self-awareness.</li>\n\n\n\n<li>[00:13:55]<strong> Times when people seek coaching-</strong>Identification of common situations that lead individuals to actively seek coaching, such as career conflicts, the desire for personal growth, and the need for support during organizational changes.</li>\n\n\n\n<li>[00:23:31] <strong>The role of coaching and the importance of ICF certification-</strong>Discussion on the role of coaching, the significance of ICF certification, and the difference between coaching and therapy.</li>\n\n\n\n<li>[00:28:34] <strong>The value of having a coach for high achievers-</strong>Exploration of the benefits of coaching for high performers and the potential negative stigma associated with coaching as a remedial tool.</li>\n\n\n\n<li>[00:31:58] <strong>Coaching for entrepreneurs-</strong>The essentiality of coaching for entrepreneurs, particularly in navigating change, making big decisions, and improving performance.</li>\n\n\n\n<li>[00:34:24]<strong> The role of coaching and seizing opportunities-</strong>Cory reflects on the importance of having a coach and making the most of opportunities in business.</li>\n\n\n\n<li>[00:35:18] <strong>The importance of personal happiness and joy in work</strong>-Kelly discusses the significance of finding joy and personal happiness in one&#8217;s work and how it affects performance.[00:37:09] <strong>The passion for helping others and personal growth-</strong>Kelly shares her passion for helping others find personal growth in coaching and how it is more rewarding than pure sales.</li>\n</ul>\n\n\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<div class=\"wp-block-columns sponsor has-theme-palette-8-background-color has-background is-layout-flex wp-container-25 wp-block-columns-is-layout-flex\" id=\"StellarWP\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"StellarWP has-theme-palette-1-color has-text-color wp-block-heading\" id=\"Sponsor\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> Sponsor: <span><a href=\"https://poststat.us/elementor\" rel=\"sponsored nofollow\">Elementor</a></span></h3>\n\n\n\n<p><strong>Elementor </strong>enables web creators to build professional, pixel-perfect websites with an intuitive visual builder. Quickly create amazing websites for your clients or your business with complete control over every piece, without writing a single line of code. Join <a href=\"https://elementor.com/community/\">a vast community of web creators</a> from all around the world who deliver exceptional websites using Elementor.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow\"><div class=\"wp-block-image elementor-logo\">\n<img src=\"https://poststatus.com/wp-content/uploads/2022/08/Elementor-Logo-Symbol-Blue-150x150.png\" alt=\"Elementor\" class=\"wp-image-104033\" width=\"150\" height=\"150\" title=\"Elementor Logo\" />Elementor</div></div>\n</div>\n</div></div>\n\n\n\n<h3 class=\"wp-block-heading eplus-wrapper\" id=\"h-mentioned-in-the-show\">  Mentioned in the show<strong>:</strong></h3>\n\n\n\n<ul>\n<li><a href=\"https://obcc.utdallas.edu/coaching/\">University of Texas at Dallas Coaching Program</a></li>\n\n\n\n<li><a href=\"https://coachingfederation.org/\">International Coach Federation</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading eplus-wrapper\" id=\"h-you-can-follow-post-status-and-our-guests-on-twitter\">  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/salesrxcoaching\">Kelly Gallagher</a>  (Executive Coach, <a href=\"https://gallagherexecutivecoachingpartnerships.com/\">Gallagher Executive Coaching Partnerships</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.  <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>.  </p>\n\n\n\n<h2 class=\"wp-block-heading eplus-wrapper\" id=\"h-transcript\">Transcript</h2>\n\n\n\n<p>Cory Miller (00:00:00) &#8211; Hey everybody. Welcome back to Post Status Draft. I&#8217;ve got a special guest today and I&#8217;m excited because I&#8217;ve worked with this awesome person professional for I think it&#8217;s been five years now. Four years? No, probably four and a half years now, Kelly. And. So back when I had just sold items, I was working the, you know, my job at trying to transition team, get some things done in the year after we had sold and I was starting to percolate. Okay, I&#8217;ve got this huge career change coming up, this huge business, whatever change in my professional life. And I sought out a coach and found Kelly Gallagher. So she&#8217;s my professional coach for four and a half years. We&#8217;re going to have a great conversation talking about coaching times when it&#8217;s so helpful to have a coach. And I&#8217;ll share personal experiences, too, but you&#8217;re in for a treat today. So Kelly, thanks so much for being on the podcast.</p>\n\n\n\n<p>Kelly Gallagher (00:01:02) &#8211; Thank you for having me. I&#8217;ve been watching some of your podcasts, and I&#8217;m just honored to be the subject of one of them.</p>\n\n\n\n<p>Kelly Gallagher (00:01:07) &#8211; So thank you.</p>\n\n\n\n<p>Cory Miller (00:01:09) &#8211; I often refer to Kelly as my secret weapon because a lot of the big things that have happened in the last five years, for sure in my life I&#8217;ve rehearsed, practiced, talked through all of these with Kelly. So, Kelly, tell us a little bit about your background.</p>\n\n\n\n<p>Kelly Gallagher (00:01:25) &#8211; Um, Cory, I came from a business development specialty within corporate America, specifically pharmaceuticals and the medical industry, and also diagnostics and lab testing. So I was a road warrior. I was out closing deals and my responsibilities escalated and escalated to the point where. Um, the last ten years, I was with a diagnostic lab, and I was also training other salespeople. I was interviewing them, hiring them and then coaching them. But I didn&#8217;t know I was coaching because I wasn&#8217;t sure even what coaching was. I wanted to take over the training department. So I was told, Well, you have no experience, even though I was already doing it. So I challenged and said I would like to go back and get my masters.</p>\n\n\n\n<p>Kelly Gallagher (00:02:16) &#8211; And I entered the coaching program, which is a just gold standard industry. I don&#8217;t know. It turned out to be one of the best. And so I entered that. And then while I was doing it, I thought, why not just get a master&#8217;s in business administration? Because I already know these things. So I went to school for five years and it was the best five years of my life. Um, I learned that I love to learn, and I think that may be what separates good coaches from great coaches. Is that. Constant wanting to move the bar up, that constant going to class mentality to be at another level. And that&#8217;s what&#8217;s really defined my career. There&#8217;s not really a time of the year when I&#8217;m not in continuing education and it&#8217;s my passion. I just want to be a master of my craft. So that was my journey. The interesting sidebar is I was told you can do all this, but if your sales performance drops, we&#8217;re done. We&#8217;re not paying. I said, okay.</p>\n\n\n\n<p>Kelly Gallagher (00:03:29) &#8211; But the more I studied coaching and communications, the higher myself through. And there&#8217;s actually a correlation between the two. It doesn&#8217;t seem like there would be, but I learned how to really listen. I was a good listener to begin with, but I became just a great listener and observer of behavior. And I also learned how to challenge people. So if a buyer told me, yes, yes, I&#8217;m definitely going to get the contract signed. And I sensed a hesitancy, I would call them out and go, you know, you&#8217;re sending one thing, but I&#8217;m hearing something else. It sounds like you&#8217;re still uneasy. And a lot of times by doing that, I could tease out that they weren&#8217;t going to buy it and we can have further discussion. So the coaching actually when I finished up. My sales career. It was as far as I could take it, but I owe it all to the coaching training.</p>\n\n\n\n<p>Cory Miller (00:04:32) &#8211; That&#8217;s awesome. Now, I know you have ICF credentials and all that and you can share a little bit about what ICF is, but so I know you are very involved there.</p>\n\n\n\n<p>Cory Miller (00:04:45) &#8211; Have done there&#8217;s so many regular like you said, I do a lot of work with mental health practitioners and there&#8217;s such a very, I would say regulated, but no like very intense and purposeful way to do therapy. A lot of guidelines, a lot of regulations, a lot of licensure things, ethical consideration, continuing. Ed But coaching has so much of that too. And that&#8217;s where ICF comes into yes.</p>\n\n\n\n<p>Kelly Gallagher (00:05:12) &#8211; And unfortunately, there&#8217;s not a specific license. I wish there was, but because there isn&#8217;t, the consumer has to really be discerning. And one way to start is that ICF because it&#8217;s the gold standard and for coach is not doing continuing education and involved with ICF. I don&#8217;t know. Chances are there will be less rigor to what they&#8217;re going to be able to do. It&#8217;s not that they wouldn&#8217;t be good coaches.</p>\n\n\n\n<p>Cory Miller (00:05:40) &#8211; Yeah, I think the ICF stuff is strong. Sometimes I feel like it&#8217;s a little bit too limiting, but I go, Gosh, it&#8217;s so good because it&#8217;s trying to really professionalize the coaching industry where anybody can just say, Oh, I&#8217;m my coach, I&#8217;m a life coach, whatever it is.</p>\n\n\n\n<p>Kelly Gallagher (00:05:57) &#8211; People just hang out a shingle and say, Boom, magic, I&#8217;m a coach. I two think it can be limiting, but I offer a bit of a hybrid because I have so much business experience. I&#8217;ll often tell my clients, Hey, I&#8217;m going to shift out of coaching if you want. Is it okay if I put on my business act and they almost never had anyone say no in interviews? And so then I&#8217;m able to interject a little, you know what this happened to blah, blah, blah. And I think that&#8217;s what differentiates me from other coaches. But the ICF standards are just critical. And the other thing about the ICF is you have to have 250 hours of continuing education to keep getting the licensure. That&#8217;s not a license to keep, you know, being indoors. And so that really raises the bar and enables the coach to really grow because you&#8217;re constantly taking a course. Yeah.</p>\n\n\n\n<p>Cory Miller (00:07:02) &#8211; So super, super strong. By the way, if you&#8217;re listening, you want to look if the coach has ICF certifications and all that, that&#8217;s really important, rigorous, rigorous work that they do to keep that up means to me it goes through taking it very seriously their profession.</p>\n\n\n\n<p>Cory Miller (00:07:19) &#8211; So Kelly, what is a coach? We&#8217;re going to spend some time talking about the times in which coach has been so, so valuable to your clients, to me, and we&#8217;re going to share experiences around that. But first, I kind of want to get a baseline of like, what is a coach?</p>\n\n\n\n<p>Kelly Gallagher (00:07:38) &#8211; Great question. Mean a coach. I had this conversation this morning at the pool at 5 a.m. Someone said, Oh, you&#8217;re going to coach. They just want content. I said, No, that&#8217;s not really what coaching is. I&#8217;m not really delivering content. I think a coach is someone that walks on a journey with a professional who wants to raise the bar. Um, it can be a life coach too. So then you&#8217;re walking the journey with an individual who has an area of life where they want to improve or progress. And that&#8217;s still the same formula for going through the coaching process, whether it be an executive or whether it be. Someone who wants to increase communication with their husband or wife.</p>\n\n\n\n<p>Cory Miller (00:08:25) &#8211; So, yeah. And part of how we were working together when we first started working together was I was going to the same school you went to, which is fantastic. University of Texas and Dallas and their coaching program is incredible. And being mentored by you. And because I was getting asked when when I left our teams and I was trying to do my own thing, I thought, okay, it&#8217;s going to be coaching People go, What is it, Coach? What do you do? And I was like, Oh gosh, I&#8217;m struggling with these. But it&#8217;s so much that it&#8217;s that walking alongside a person on a journey and I like what you added to it, is like they want to raise the bar, they want to do something more. And, you know, I have so much reflected about my business entrepreneurial career for the last 15 years ago. If I had a coach from the beginning, it would have been so much better in many ways. Not just success, success for sure, but also health clarity.</p>\n\n\n\n<p>Kelly Gallagher (00:09:23) &#8211; It&#8217;s funny you say that, Cory, because even 20 years ago when I was in pharmaceuticals and I was doing very well, had I had a coach, I would have been a rock star because there were rough edges that I couldn&#8217;t see. You can&#8217;t see them in yourselves the way someone else can who&#8217;s actively listening to you.</p>\n\n\n\n<p>Cory Miller (00:09:43) &#8211; Yeah. Well, and you know, the parallel we always give is sports. You know the best. Greatest of all time. Athletes have coaches and have people around them. Like you just assume they wake up and they&#8217;re just as good naturally. No, they work on their craft. And I think about that so much. Like, I know you work with a lot of high achievers and oftentimes so many of the entrepreneurs I&#8217;ve worked with very high achievers too. I&#8217;ve had the pleasure of having people on my team big time, high achievers. And you just go, like, if you really want to do well in what you&#8217;re doing, you need to have somebody that&#8217;s on your side.</p>\n\n\n\n<p>Cory Miller (00:10:23) &#8211; Nobody does it alone. I think that&#8217;s the fast that we perpetuate in our culture and especially in business, like with entrepreneurs, is like, Oh, I&#8217;m the rockstar. I do this by myself, that you got these icons out there. You know, Steve Jobs is the one you hear over and over and over 100,000 times. You go, He didn&#8217;t do it alone. No, there&#8217;s no way you can do it alone. And having someone in your corner that&#8217;s helping you perform at the highest level is so critical.</p>\n\n\n\n<p>Kelly Gallagher (00:10:54) &#8211; Yes, I agree. And, you know, oftentimes people will also say, well, isn&#8217;t it like therapy? I would call it therapy. Ten x. Because therapy&#8217;s great and I think everyone should go through that process at some time in their life. I really believe in it. But at some point it&#8217;s limited because it&#8217;s just keeps moving into the past and feelings and often sad feelings. Whereas coaches moving the person forward so high achievers get bored in therapy after a while, after a while, and they might go back and forth to therapy.</p>\n\n\n\n<p>Kelly Gallagher (00:11:34) &#8211; But generally they find that coaching helps them because it&#8217;s goal oriented.</p>\n\n\n\n<p>Cory Miller (00:11:39) &#8211; Yeah, well, and I know there&#8217;s a big distinction between therapy and coaching and really, you know, really try to their distinct things. And oftentimes probably you have taught this mentioned like therapy is looking back, coaching is looking forward. Is that how you kind of see that?</p>\n\n\n\n<p>Kelly Gallagher (00:11:56) &#8211; Yes. And you know, as a coach and a credentialed coach, I&#8217;m ethically bound if I feel like someone continually goes into therapy. Waters and themes, um, I&#8217;m bound to refer them on to therapists till they are more stabilized. And then oftentimes a lot of my clients are in therapy and coaching together. They really work well hand in hand.</p>\n\n\n\n<p>Cory Miller (00:12:22) &#8211; Yes. In fact, for the bulk of the time right now, I am not currently seeing a counselor, however, for the last see two months, but for the bulk of the time we&#8217;ve worked together have had a counselor and a coach. So I think their yin yang, their.</p>\n\n\n\n<p>Kelly Gallagher (00:12:41) &#8211; Right. And the people that come to me and have had some therapy, even if it was limited, they have just a little bit more self awareness.</p>\n\n\n\n<p>Kelly Gallagher (00:12:49) &#8211; So coaching progresses faster.</p>\n\n\n\n<p>Cory Miller (00:12:52) &#8211; Yeah. If you&#8217;re doing your work to.</p>\n\n\n\n<p>Kelly Gallagher (00:12:55) &#8211; Because other otherwise get clients. Sometimes we&#8217;ll say, Well, what does it matter how I&#8217;m feeling about this? Well, it matters a lot because, you know, your heart is just as involved in these decisions and actions and creative things you&#8217;re asking yourself to do as the frontal lobe of your brain. So they are connected.</p>\n\n\n\n<p>Cory Miller (00:13:14) &#8211; Yeah. Okay. So we talked about what coaching is a little bit we talked about the distinctions, therapy versus coaching and how they&#8217;re additive and can exist together. And in fact, or even better sometimes, oftentimes, especially in my experience, I would say. Well, I&#8217;m curious, Kelly So I know my own personal experience is related to our coaching professional relationship. But I&#8217;m curious, what are the times you you see people getting into the meat of this kind of conversation between us is like, what are those times when people go, okay, they&#8217;re thrust out to go actively look for a coach and end up, you know, in a in a room or a meeting with you.</p>\n\n\n\n<p>Kelly Gallagher (00:13:55) &#8211; I would say that generally there&#8217;s some type of struggle. It can be a conflict at work. That&#8217;s a huge one because that dips into, well, do I want a career change? And sometimes people come and they don&#8217;t know what they want. They&#8217;re just not happy. Um, people who want to progress with that and find meaning and integrate what they&#8217;re learning about themselves will come to coaching because that process. It really it&#8217;s like turbocharging the job search and turbocharging people to take interviews and move on and move up without really any kind of formal instruction to just that self-awareness that it builds. So that&#8217;s one of the big ones. Um.</p>\n\n\n\n<p>Cory Miller (00:14:44) &#8211; Let&#8217;s talk about struggle for a second. So struggle back to that. So is that so you mentioned a couple of factors there. I want to hit both sides. One is maybe I need to make a change, like move out of what I&#8217;m doing. But there&#8217;s another one, which is maybe I want to get promoted or have been promoted or, you know, within an organization to and I&#8217;m curious your experiences around around that too.</p>\n\n\n\n<p>Cory Miller (00:15:10) &#8211; So I like that it starts with like there&#8217;s some kind of struggle and they&#8217;re seeking outside perspective and help support with that. But it starts with some things they&#8217;re trying to change and wrestling against. Sounds like.</p>\n\n\n\n<p>Kelly Gallagher (00:15:24) &#8211; Right? And many times, you know, when you&#8217;re in a new position or you&#8217;re in a position where you are striving to do something else within that company, you will conform to their expectations and almost wear a mask. The to the degree that you lose something in the translation because then you&#8217;re not really connecting with your creative side or your problem solving side or your heart. And so a lot of work can be done to find that balance for people. The other thing that touches on is fear of failure. Your fear of failure is. It&#8217;s just a sweet spot because so many. Points of wanting to change. If we whittle down and we go with the client, what&#8217;s beneath that? What&#8217;s beneath that or what&#8217;s beneath that? And we get down to the core or the middle of the onion. It&#8217;s fear of failure.</p>\n\n\n\n<p>Kelly Gallagher (00:16:19) &#8211; And that&#8217;s that&#8217;s just a part of being human. No one wants to humiliate themselves or fall down. But I think, too, in our society, think about schools nowadays. Everyone&#8217;s given a trophy. Soccer, Everyone&#8217;s campaigning, trophy swimming. Everyone makes the team. No one&#8217;s not on the team. Great. So children are raised to not really fail or understand that they founded something and think in a way, I like the philosophy, but in a way I think I see a lot of young adults who come out into the world and they are terrified of not getting a trophy of not. And the reality is, in real life, you don&#8217;t get that many trophies.</p>\n\n\n\n<p>Cory Miller (00:17:06) &#8211; Yep. Well, we that was that fear of failure thing. We, we talked our last coaching session about that specifically and totally like, you know, when you&#8217;ve especially if you&#8217;ve been accustomed to winning, doing succeeding and then you hit some failures and or trying to do anything big and new, take that next job, start that new endeavor, whatever that is, and that, you know, oh, this is not a guaranteed success.</p>\n\n\n\n<p>Cory Miller (00:17:35) &#8211; So that that definitely resonates.</p>\n\n\n\n<p>Kelly Gallagher (00:17:37) &#8211; Right? And if I fail, that also relates to a further theme of then the fear of being actually seen for who you are. Um, yeah, it&#8217;s a heavy topic and it can take a while to work through, but it&#8217;s, I think most of my clients will say that&#8217;s valuable work. And it&#8217;s not that they become fearless, but I think they&#8217;re able to notice the emotion name and then kind of negotiated.</p>\n\n\n\n<p>Cory Miller (00:18:08) &#8211; Yeah, you mentioned the word emotions. And I think when I first started working with you, I didn&#8217;t I didn&#8217;t go to that realm. I was, you know, okay, more intellectual thinking process and stuff. And you&#8217;re extremely helpful with that. And probably because of some of the, you know, understandings between therapy and coaching or misunderstanding to say, I didn&#8217;t really get into that. But I think our best work has come with the emotions. Like my my definitely I&#8217;ve benefited every time we&#8217;ve talked. I&#8217;ve been better for it. However, I think the most profound times is when we get into, okay, I&#8217;m doing this thing.</p>\n\n\n\n<p>Cory Miller (00:18:48) &#8211; It&#8217;s an event, like you said, a struggle or something new or a change or something I&#8217;m preparing for. But then okay, the emotion around that and understanding that and leveraging, you know, really deep dive into that where I&#8217;m trying to improve. I can&#8217;t remember how many times you&#8217;ve said to me, okay, well they are not in this call. What is the what about you? And I was like, Oh man, doing that hard work, which is made I know it&#8217;s made me better as a professional and a leader for sure, because oftentimes you kind of redirect back to me and go, okay, well, they&#8217;re not here. Let&#8217;s talk about what this means to you, for you. And I&#8217;m always like, Well, let me take a deep breath on that one.</p>\n\n\n\n<p>Kelly Gallagher (00:19:31) &#8211; That&#8217;s a hard one. I learned that actually didn&#8217;t learn that at Utd or anywhere. I learned that as a young rep out in the field and I complain about these idiot customers. Right? And the manager told me once, he said, Turn your rearview mirror to your face.</p>\n\n\n\n<p>Kelly Gallagher (00:19:48) &#8211; And I didn&#8217;t. He goes, Now look at that. That&#8217;s the person that would have to change. The client&#8217;s not going to change. And it was the most profound thing. It kind of hurt my feelings, but it was so true.</p>\n\n\n\n<p>Cory Miller (00:20:01) &#8211; Well, I&#8217;ve talked through everything with you from partner team issues, all that. And it&#8217;s been so helpful because I think oftentimes kind of thinking, okay, yeah, they&#8217;ve got to change. There&#8217;s something with them. And the real work, profound and deep, that continues to get deeper is what does that mean for me about me? What do do I need to change something and what is that? And those are the times really in reflective work that I go, okay. And more and more I think I&#8217;m getting it. Or I go, okay, So something I&#8217;m not aware about myself potentially pointing outwards and then going, I kind of need to turn the rearview mirror back to myself.</p>\n\n\n\n<p>Kelly Gallagher (00:20:46) &#8211; Back to your face? Yes.</p>\n\n\n\n<p>Cory Miller (00:20:48) &#8211; It&#8217;s not the easiest thing to do, but I&#8217;m glad you do it.</p>\n\n\n\n<p>Kelly Gallagher (00:20:50) &#8211; It&#8217;s not the easiest thing to do. And in periods of conflict or intense conversations with bosses or calling people, you&#8217;re supervising, it&#8217;s extremely hard to stop yourself and say, wait a minute, who am I? And yeah, it&#8217;s it&#8217;s really, really hard. But I think as people progress in coaching, they become almost a coach within themselves.</p>\n\n\n\n<p>Cory Miller (00:21:16) &#8211; Yes. Yes. I can hear you quite a bit doing that.</p>\n\n\n\n<p>Kelly Gallagher (00:21:21) &#8211; Yeah. Oh yeah. So that would be my goal is that when I&#8217;m not there because I&#8217;m not there all the time and I don&#8217;t know of it, even though I know so much, I don&#8217;t know all of it. But my goal would be when that person&#8217;s gone for a week or they&#8217;re in a high stress situation, they&#8217;re able to somewhat coach themselves through it.</p>\n\n\n\n<p>Cory Miller (00:21:44) &#8211; Absolutely. Well, okay. So we talked about like the struggle conflict. Something&#8217;s going on there. Want to do reach something new? Maybe they&#8217;re evaluating a big change. I mean, that resonates with me. I was that&#8217;s how we kicked off our thing.</p>\n\n\n\n<p>Cory Miller (00:21:59) &#8211; It was like I was changing my profession career very substantially, knew I was going to be leaving the company I started. And, you know, okay, here&#8217;s a totally new avenue and having somebody to talk that through the fear of failure, the emotions of being an achiever, especially a high achiever, trying to do something in the world like an entrepreneur, what are some other things that you you see often in your coaching?</p>\n\n\n\n<p>Kelly Gallagher (00:22:27) &#8211; Well, I would say the other thing, the theme is some type of organizational change, because your organization, of course, they&#8217;re always changing. And there are new standards that people don&#8217;t. We talked about that before we went on tape that sometimes people don&#8217;t like change. So being able to go in and help a person challenge their assumptions about the change really recognize within themselves the any negative thinking loops or or extra baggage they&#8217;re bringing in the situation and then thrive throughout the change would be a big thing. Um, and as they go along to they learn about themselves and then to integrate that learning.</p>\n\n\n\n<p>Kelly Gallagher (00:23:12) &#8211; Back into the organization. That&#8217;s changing because change is constant. Yep. I don&#8217;t think I&#8217;ve ever been in an organization in 30 years that wasn&#8217;t doing some type of change. It&#8217;s almost never stay.</p>\n\n\n\n<p>Cory Miller (00:23:31) &#8211; It&#8217;s yeah, absolutely. Well, there&#8217;s two things I think about when we&#8217;ve worked together and what I know of coaching too. It&#8217;s it&#8217;s the word change that you said. Some change. Big change oftentimes big change. The other side of the coin for me is performance.</p>\n\n\n\n<p>Kelly Gallagher (00:23:47) &#8211; So yeah.</p>\n\n\n\n<p>Cory Miller (00:23:49) &#8211; Continual performance. So like and I think about those listening in why you won&#8217;t get you want to get coaching for yourself and your team is that performance factor like it&#8217;s an investment back into yourself or your team if you&#8217;re providing coaching. I think some great organizations, particularly in WordPress I&#8217;ve heard of because I&#8217;ve referred people to you that happen to be in WordPress. I go, Oh, I love the forward thinking of that. You&#8217;re going, it&#8217;s an investment in their people, but the performance side. So we&#8217;ve talked a lot of some about this change side.</p>\n\n\n\n<p>Cory Miller (00:24:24) &#8211; There&#8217;s something going on and how we wrestle and adapt to that change where we talk about motions and different things and then but the other side to me is like, I can&#8217;t remember how many times I call it performance, but what I think it is, is like preparation. I mean, some of the biggest deals I&#8217;ve done in five years have been rehearsed, practiced, polished, perhaps even with you. And gosh, I didn&#8217;t have that my previous ten years. And I thought, wow, I went into so many situations. I thought I had done my preparation. But doing it with you with a coach was made things so much better, I think, through that process. Kelly It also eliminated like things I wasn&#8217;t aware of, things I hadn&#8217;t thought about, and just an approach to get some, like, clarity.</p>\n\n\n\n<p>Kelly Gallagher (00:25:12) &#8211; Flirty, some big one. And I think that goes into the third bucket of communication skills. Just people sometimes come to me and in her struggle or there&#8217;s conflict or they&#8217;re going into a big sales promotion and they&#8217;re not quite sure how to go about it.</p>\n\n\n\n<p>Kelly Gallagher (00:25:29) &#8211; So that would all fall into the bucket of communication skills. And that that&#8217;s a big one. I don&#8217;t think oftentimes people think they&#8217;re coming across one way, but it&#8217;s quite different if you&#8217;re observing them. The other thing is. They, you know, like you said, you&#8217;ll rehearse. And rehearse. But when you get in that situation sometimes. Hopefully you&#8217;re primed with enough rehearsal to lean back. If you forget what you&#8217;re going to say, you can lean back into the gist of it. So I think for performance, though, it comes down to communication skills and confidence, because in selling some time it&#8217;s not what you said anyway, it&#8217;s how you said it. And you can walk in if you say it with conviction and you have that internal clarity, as you mentioned, and conviction. The little wordsmithing and nuances of it aren&#8217;t going to matter. They&#8217;re going to matter. But the big the capital A to achievement or performance is how you set it.</p>\n\n\n\n<p>Cory Miller (00:26:36) &#8211; Well, I didn&#8217;t say this in the beginning, but we we now meet twice a week and we&#8217;ve I think we&#8217;ve met twice a week for the last year or two.</p>\n\n\n\n<p>Cory Miller (00:26:44) &#8211; And that was out of, oh, I need these times. We&#8217;re kind of booking them at the front of the week and the end of the week. But oftentimes I realize so many times it&#8217;s just seeking clarity for myself and those of us who are leaders out there trying to give a clear vision to somebody else, I&#8217;ll just say it. Maybe other leaders just wake up with clairvoyant vision. I don&#8217;t. I need rehearsal. I need work. I need to bounce it off people. I need a coach to help me kind of ask questions, think, think it through. And every single time I&#8217;m better. I remember some of the biggest ones that I&#8217;ve, like, talked to you. And it&#8217;s not even one session, maybe 2 or 3. They end up talking about it. But I go, Gosh, if I hadn&#8217;t had that, I would have made so many mistakes going into that big decision or time of presentation, whatever that was. And I&#8217;m so better for like I just need to practice and realize I couldn&#8217;t just do that.</p>\n\n\n\n<p>Cory Miller (00:27:40) &#8211; I needed someone else to help me. And that&#8217;s where you&#8217;ve come in and done that. And so clarity for me is like when you say, what? When people would ask me, What&#8217;s the biggest takeaway for coaching? I go clarity and what is clarity? Build what you said confidence. And those two alone have made me a better leader. That&#8217;s why I can say, let&#8217;s just go back to the start of my career. If I&#8217;d had a coach, it started my career. Everything would have been better because I&#8217;ve been more clear, more confident.</p>\n\n\n\n<p>Kelly Gallagher (00:28:03) &#8211; Being a millionaire ten times over just had a coach because I did so many stupid things along with the good things. That you don&#8217;t know, but you do learn from failure. You do learn. Oh, and so, you know, maybe not, but I sure would have liked to have a coach. It is a perk for high performers. If if if you if it&#8217;s a if there&#8217;s an employer listening in and they&#8217;re thinking of who does that need coaching? Yes, it can be remedial, but sometimes then it&#8217;s not the employees idea.</p>\n\n\n\n<p>Kelly Gallagher (00:28:34) &#8211; The high performance will progress the fastest because it generally will be their idea. They want that perk and they want to grow a career.</p>\n\n\n\n<p>Cory Miller (00:28:44) &#8211; This is my personal opinion, not Kelly. So I want to be clear about that. But I&#8217;ve been around organizations that use coaching as remedial, and I go, Then what happens is coaching gets stigmatized within that organization of if you&#8217;re not performing and you&#8217;re doing a crappy job, you&#8217;re going to get sent. And it has a negative tint to coaching, which is not what it&#8217;s supposed to be. It&#8217;s supposed to be progressing positive, helping improving, navigating situations. And this one organization in particular, it&#8217;s like that&#8217;s how they use coaching. I go, Oh man, Like, then they then all these high performers have this worry about it and don&#8217;t want to potentially go into coaching and miss this incredible benefit to what coaching is.</p>\n\n\n\n<p>Kelly Gallagher (00:29:31) &#8211; That&#8217;s so true. There&#8217;s someone at my door. Can I. Can we pause?</p>\n\n\n\n<p>Cory Miller (00:29:36) &#8211; Yeah.</p>\n\n\n\n<p>Kelly Gallagher (00:29:45) &#8211; Yeah, we&#8217;re talking about, like, high performers and performance coaching. And I do want to make the point that that&#8217;s kind of what I think is my differentiator is that I have all that coaching training, but also I&#8217;ve been in the business world for 30 years selling. So if someone asked me about that, it&#8217;s easy for me to switch out. Yeah, most coaches have like a background, so they&#8217;ve never really had to go out into the world and perform, right?</p>\n\n\n\n<p>Cory Miller (00:30:17) &#8211; Yeah. You bring both sides to that coin I think is incredibly helpful. Like I&#8217;ve talked so much with you about cells because it&#8217;s a weak area. I feel like it&#8217;s a weak area for me, but something I&#8217;ve had to do but forced to do and now trying to begrudgingly trying to do it. But I know you&#8217;ve got such an extensive sales background, business development background that totally leveraged that. In fact I think that&#8217;s how our two times a week started was a sales academy where it wasn&#8217;t necessarily coaching, it was more like sales coaching.</p>\n\n\n\n<p>Kelly Gallagher (00:30:47) &#8211; Right. And it&#8217;s very hard for someone to coach you if they haven&#8217;t walked down the street, guide you down the path. If I&#8217;ve never been on it, I can coach and I can move you in many ways, but can&#8217;t exactly help you to perform because I don&#8217;t know how to perform. So I think that is the differentiator in my coaching style as I&#8217;ve been there. I&#8217;ve been in sales meetings where I got humiliated. I&#8217;ve had clients slam doors in my face. You know, I&#8217;ve executed $1 million contract. So. I just think it helps me to bring more to the party.</p>\n\n\n\n<p>Cory Miller (00:31:25) &#8211; Yeah. And you understand the complete picture. That&#8217;s why, you know, our community is a lot of founders and a lot of high achiever leaders. You know, I&#8217;m curious your thoughts about entrepreneurship, entrepreneurs and coaching. You know, I don&#8217;t know your risk, your client base, but I am one. I know I&#8217;ve benefited from incredibly navigating change, big decisions and the performance side. But what do you say to entrepreneurs about coaching?</p>\n\n\n\n<p>Kelly Gallagher (00:31:58) &#8211; I&#8217;d say it&#8217;s essential because of everything we&#8217;ve talked about in the end.</p>\n\n\n\n<p>Kelly Gallagher (00:32:04) &#8211; As an entrepreneur, you&#8217;re alone, right? That&#8217;s what it is. That&#8217;s the gig. You might have a few people on your team, but generally you&#8217;re alone. It&#8217;s very hard to win deals in isolation. So I would say having a business coach is key to moving forward. Not only in all the things we mentioned, the clarity, the communication, the conflict, the struggle, but then sometimes you just have to go execute. And so for me, it&#8217;s very helpful because I&#8217;ve been in that sales situation so many times and understand features, benefits. I understand how to extrapolate from a client what&#8217;s going to really matter and what&#8217;s not. And I can help people with their slide deck or, you know, whatever it is they want to. So I will generally I can come in in that regard like we do and be a consultant on Friday, but a coach on Mondays. And then and most of my clients who are entrepreneurs use me in that way. Like they will sometimes just bring us like back or we&#8217;ll practice a presentation or they&#8217;ll practice what they&#8217;re going to say to their team before they say it.</p>\n\n\n\n<p>Cory Miller (00:33:18) &#8211; Yep.</p>\n\n\n\n<p>Kelly Gallagher (00:33:18) &#8211; Get some clarity around it to understand. How they&#8217;re feeling in that moment of saying these wonderful things they think are are going to move the team. And sometimes they come out of the meeting and they&#8217;re going to say something completely different. Once we do the coaching, it&#8217;s not that I ever told them to say anything different, but we, you know, polished it. Let&#8217;s say, you know, they come out with this big chunk of coal and they leave and they&#8217;ve got a little diamond and it&#8217;s polished. And like you said earlier, they feel confident.</p>\n\n\n\n<p>Cory Miller (00:33:50) &#8211; Maybe there&#8217;s some entrepreneurs that that come fully birthed into the whole process, but most of us have to learn it and grow through it. What I&#8217;m hearing, though, you know, big decisions, big challenges, big changes, and then the performance side preparation, Polish getting ready for those big things, too. And then the simply put, just trying to make the most of the opportunity. That&#8217;s what I think about. Like so many high achievers that go with an entrepreneur&#8217;s, like we have an opportunity.</p>\n\n\n\n<p>Cory Miller (00:34:24) &#8211; We often like my my story is I stumbled into it, stumbled into it and go, wow, I have this amazing opportunity. So much with business. You go like, it&#8217;s right timing, it&#8217;s right place, right people, right, partners, all the things that have to go together for something to go really well. And then you go, I want to make the most of that. And that&#8217;s my reflection, is that I had an opportunity. I wanted to seize that opportunity to make the most of it. Now, seeing, Oh, wow. Now I did have a coach during about half of my business time, invaluable to help us with the organization. But I go like having someone that this is why we keep working together as I go. I just need it. It&#8217;s just a part of making the most of who I am and my opportunities that come my way to to do even more. And it&#8217;s not necessarily just about money, but it&#8217;s about making the most of the opportunity.</p>\n\n\n\n<p>Kelly Gallagher (00:35:18) &#8211; Right.</p>\n\n\n\n<p>Kelly Gallagher (00:35:19) &#8211; And Joy, while you&#8217;re doing you we haven&#8217;t even touched about that. But there&#8217;s that personal happiness factor and a lot of my clients either are working out or I have them. I try to persuade them to start a fitness program while they&#8217;re with me. But that joy, that love of what you&#8217;re doing, you know, if it&#8217;s not there, it&#8217;s very hard to perform on your.</p>\n\n\n\n<p>Cory Miller (00:35:43) &#8211; Yeah. And you&#8217;ve been such a good coach and you walk that talk. Kelly was telling me before we started the recording that she just ran a mile and swam, and I was like, Gosh, you overachiever. But it&#8217;s such a good inspiration for me for sure, because that other aspect of just life and business and everything is just being physically healthy. And you are a great encourager and you walk your talk.</p>\n\n\n\n<p>Kelly Gallagher (00:36:07) &#8211; I try. I try. I try. I mean, no one&#8217;s perfect. But yeah, I definitely try. And I also find because I work out a lot and I&#8217;m more effective for people because, you know, it brings all that blood flow to the brain.</p>\n\n\n\n<p>Kelly Gallagher (00:36:20) &#8211; So I shared with Cory that sometimes in between clients I&#8217;ll just run up the hill outside my house 4 or 5 times just to sharpen myself for the next person because I can feel it within myself. Then I come in their house and I&#8217;m all happy again and I&#8217;m feeling creative and supercharged and ready to go.</p>\n\n\n\n<p>Cory Miller (00:36:41) &#8211; Oh yeah. You can tell what the energy you have for sure. Well, Kelly, thanks so much for taking the time to talk to us about what you&#8217;re doing. Share a little bit of the experience. I mean, they resonate with me. Everything you&#8217;ve talked about are things that we&#8217;ve worked on in our coaching sessions, and I&#8217;ve been better for it as a person on Earth, as a human, on earth, as a business entrepreneur, leader, all those. But anything else that you want to share that we didn&#8217;t get to talk about?</p>\n\n\n\n<p>Kelly Gallagher (00:37:09) &#8211; No, I mean, what you just said, that&#8217;s what I live for. That&#8217;s my passion is did I, you know, did I help someone? Did they feel better after we, you know, did we move the bar? And I just live for success stories.</p>\n\n\n\n<p>Kelly Gallagher (00:37:23) &#8211; And I find it so much more rewarding than just pure sales. Although I would have argued back then that I was making people&#8217;s lives better because I had a terrific product or whatever, but somehow that what you just said, just seeing personal growth in other people, I just kind of live for that. So thank you.</p>\n\n\n\n<p>Cory Miller (00:37:43) &#8211; Bet. Well, thanks, Keller, for being on. And thanks, everybody, for listening. We&#8217;ll share in the show notes how you can get a hold of Kelly if you&#8217;re interested in talking more with her. She&#8217;s fantastic. Coach, you can&#8217;t. I&#8217;ve referred you numerous times to people that now I believe are our regular clients with you. And we they&#8217;re defensive minded and we always talk like, yep, I just had my Kelly session, just had my Kelly Sessions, so.</p>\n\n\n\n<p>Kelly Gallagher (00:38:08) &#8211; Well, thank you for doing that. Yes. I don&#8217;t really advertise. I haven&#8217;t ever. I only did maybe in the first year. But I think that&#8217;s the other thing. Good coaches just kind of get referrals and.</p>\n\n\n\n<p>Kelly Gallagher (00:38:21) &#8211; That&#8217;s the way it should be.</p>\n\n\n\n<p>Cory Miller (00:38:23) &#8211; You do. All right. Thanks, everybody, for listening to Post Status Draft. It&#8217;s been another episode kind of went out of our league but love to introduce people that have made an indelible difference in my life and to share their wisdom. So we&#8217;ll see everybody next time. Thank you.</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:\"Sat, 19 Aug 2023 03:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Cory Miller\";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:97:\"Post Status: WordPress 6.3 RC2 • Synced Patterns • Internationalization • Gutenberg Phase 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://poststatus.com/wordpress-6-3-rc2-synced-patterns-internationalization-gutenberg-phase-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://poststatus.com/wordpress-6-3-rc2-synced-patterns-internationalization-gutenberg-phase-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:24701:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (July 25, 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\">We&#8217;re under two weeks away from WordPress 6.3 release. Have you started testing? Big changes are envisioned for the Media Library, Admin Dashboard, and more. You have an opportunity NOW to share ideas. What considerations do we need to account for? Read the Phase 3 post from Matías and share your feedback in the comments.&hellip; </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box_94d1bd-77\"><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=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\"> WP 6.3, Reusable Blocks, Phase 3, i18N</h2><p class=\"kt-blocks-info-box-text\"><br />  <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-2/\">WordPress 6.3 Release Candidate 2</a><br /><br />3&#x20e3; <a href=\"https://make.wordpress.org/core/tag/phase-3/\">Gutenberg Phase 3</a><br /><br />  <a href=\"https://make.wordpress.org/core/2023/07/24/i18n-performance-analysis/\">I18N Performance Analysis</a><br /><br />  <a href=\"https://wordpress.org/news/2023/07/synced-patterns-the-evolution-of-reusable-blocks/\">Synced Patterns: The Evolution of Reusable Blocks</a></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_b57166-6e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/07/synced-patterns-the-evolution-of-reusable-blocks/\">Synced Patterns: The Evolution of Reusable Blocks</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-2/\">WordPress 6.3 Release Candidate 2</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\">WordPress 6.3 Live Product Demo – Highlights &amp; Recording</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-29 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\">WordPress 6.3</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/18/wordpress-6-3-ready-to-be-translated/\">WordPress 6.3 ready to be translated</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-2/\">WordPress 6.3 Release Candidate 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-3-accessibility-improvements/\">WordPress 6.3 Accessibility Improvements</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-1/\">WordPress 6.3 Release Candidate 1</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-2-release-candidate-phase-2/\">WordPress 6.3 Release Candidate Phase</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/30/6-3-release-parties-schedule-and-hosts/\">6.3 Release Parties Schedule and hosts</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">WordPress 6.3 Beta 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/05/25/wordpress-6-3-design-kickoff/\">WordPress 6.3 design kickoff</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/25/bug-scrub-schedule-for-6-3/\">Bug Scrub Schedule for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/wordpress-6-3-planning-roundup/\">WordPress 6.3 Planning Roundup</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\">Roadmap to 6.3</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\">WordPress 6.3 Field Guide and Dev-Notes</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">WordPress 6.3 Field Guide</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-block-selectors-api/\">Introducing the Block Selectors API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Introducing the WordPress Command Palette API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/layout-updates-in-the-editor-for-wordpress-6-3/\">Layout updates in the editor for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/social-icons-block-applied-colors-now-dynamically-update-based-on-theme-json-and-global-styles/\">Social Icons block: Applied colors now dynamically update based on theme.json and Global Styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-editor-changes-in-wordpress-6-3/\">Miscellaneous Editor changes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/bundled-themes-dropping-internet-explorer-scripts-and-styles/\">Bundled themes dropping Internet Explorer scripts and styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/improvements-to-the-cache-api-in-wordpress-6-3/\">Improvements to the Cache API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/configuring-development-mode-in-6-3/\">Configuring development mode in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/i18n-improvements-in-6-3/\">I18N Improvements in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/image-performance-enhancements-in-wordpress-6-3/\">Image performance enhancements in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/wp_query-used-internally-in-get_pages/\">WP_Query used internally in get_pages()</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/registering-scripts-with-async-and-defer-attributes-in-wordpress-6-3/\">Registering scripts with `async` and `defer` attributes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/improved-caching-for-database-queries-in-wp_user_query/\">Improved Caching for Database Queries in WP_User_Query</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-developer-changes-in-wordpress-6-3/\">Miscellaneous developer changes in WordPress 6.3</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<div class=\"wp-block-columns is-layout-flex wp-container-34 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-32 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/07/13/recap-of-the-diverse-speaker-training-group-wpdiversity-amer-emea-on-july-12-2023/\">Recap of the Diverse Speaker Training group (#WPDiversity) AMER/EMEA on July 12, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/07/13/new-handbook-page-for-wordcamp-organizers-wordcamp-speaker-selection-for-content-and-diversity/\">New handbook page for WordCamp Organizers: WordCamp Speaker Selection (for content AND diversity)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/07/12/summary-of-the-q2-community-team-role-updates/\">Summary of the Q2 Community Team Role Updates</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/2023/07/25/a-week-in-core-july-24-2023/\">A Week in Core – July 24, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/26/whats-new-in-gutenberg-16-3-26-july/\">What’s new in Gutenberg 16.3? (26 July)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/24/i18n-performance-analysis/\">I18N Performance Analysis</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Phase 3 Ideations</h3>\n\n\n\n<ul>\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\" rel=\"noreferrer noopener\">Real-Time Collaboration</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/04/workflows/\" rel=\"noreferrer noopener\">Workflows</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/05/revisions/\" rel=\"noreferrer noopener\">Revisions</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/07/media-library/\" rel=\"noreferrer noopener\">Media Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/10/block-library/\" rel=\"noreferrer noopener\">Block Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/12/admin-design/\" rel=\"noreferrer noopener\">Admin Design</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/07/beyond-block-styles-part-1-using-the-wordpress-scripts-package-with-themes/\">Beyond block styles, part 1: using the WordPress scripts package with themes</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/make-your-sites-typography-make-a-statement/\">Make your site’s typography make a statement</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/whats-new-for-developers-july-2023/\">What’s new for developers? (July 2023)</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/how-to-modify-theme-json-data-using-server-side-filters/\">How to modify theme.json data using server-side filters</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/26/core-editor-chat-summary-26th-july-2023/\">Core Editor chat summary: 26th July 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/25/dev-chat-agenda-july-26-2023/\">Dev Chat agenda, July 26, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/07/24/online-monthly-docs-team-contributor-day-july-25-2023/\">Online monthly Docs Team Contributor Day July 25, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/docs/2023/07/18/call-for-volunteers-to-help-with-6-3-end-user-documentation/\">Call for volunteers to help with 6.3 end-user documentation</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/24/documentation-team-update-july-24-2023/\">Documentation Team Update – July 24, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/2023/07/26/hosting-team-meeting-agenda-2023-07-26/\">Hosting Team meeting agenda 2023-07-26</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/hosting/2023/07/26/wordpress-hosting-survey/\">WordPress Hosting Survey</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/07/20/matrix-chat-summary-july-20-2023/\">Matrix chat Summary – July 20, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/20/make-team-dashboards/\">Make Team Dashboards</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/15/triaging-open-issues-on-trac-for-make-teams/\">Triaging open issues on Trac for Make Teams</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/11/linking-to-supporting-orgs/\">Linking to Supporting Orgs</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/updates/2023/07/26/mobile-team-update-july-25th/\">Mobile Team Update – July 25th</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/07/25/community-meeting-recap-2023-07-25/\">Community Meeting Recap (2023-07-25)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/24/last-week-openverse-2023-07-17-2023-07-24/\">A week in Openverse: 2023-07-17 – 2023-07-24</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/07/25/performance-chat-summary-25-july-2023/\">Performance Chat Summary: 25 July 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2023/07/24/tackling-team-challenges-together/\">Tackling team challenges together</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/plugins/2023/06/29/plugin-review-team-update-the-next-phase-begins/\">Plugin Review Team Update: The next phase begins</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/24/plugin-review-team-24-jul-2023/\">Plugin Review Team: 24 Jul 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/26/agenda-weekly-polyglots-chat-july-26-2023-0700-utc/\">Agenda: Weekly Polyglots Chat – July 26, 2023 (07:00 UTC)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/18/wordpress-6-3-ready-to-be-translated/\">WordPress 6.3 ready to be translated</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/07/13/proposal-for-establishing-a-make-diversity-equity-inclusion-and-belonging-deib-team-within-the-wordpress-community/\">Proposal for Establishing a Make Diversity, Equity, Inclusion, and Belonging (“DEIB”) Team within the WordPress Community</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Support</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2023/07/wp-contributor-mentorship-program-support-team-onboarding-meeting/\">WP Contributor Mentorship Program: Support Team Onboarding Meeting</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/support/2023/07/agenda-for-july-27th-support-meeting-2/\">Agenda for July 27th Support Meeting</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/07/27/sustainability-chat-agenda-july-28-2023/\">Sustainability Chat Agenda, July 28, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/24/test-team-update-24-july-2023/\">Test Team Update: 24 July 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/07/26/themes-team-meeting-notes-july-25-2023/\">Themes Team Meeting Notes – July 25, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/25/themes-team-update-july-25-2023/\">Themes team update July 25, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/07/26/training-team-meeting-recap-25th-july-2023/\">Training Team Meeting Recap – 25th July 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/07/25/call-for-volunteers-to-help-with-6-3-learn-wordpress-updates/\">Call for Volunteers to help with 6.3 Learn WordPress updates</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" 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/improving-website-performance-with-caching/\">Improving website performance with caching</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/installing-node-js-and-npm-for-local-wordpress-development/\">Installing Node.js and npm for local WordPress development</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=apac-exploring-some-of-the-new-6-3-wordpress-features\">APAC: Exploring some of the new 6.3 WordPress features</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=exploring-some-of-the-new-6-3-wordpress-features\">Exploring some of the new 6.3 WordPress features</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=onboarding-to-test-team\">Onboarding to Test Team</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=testing-wordpress-6-3-developer-edition\">Testing WordPress 6.3 – Developer edition</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-validate-content-feedback-for-the-wordpress-training-team-3\">How to validate content feedback for the WordPress Training Team</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-validate-content-feedback-for-the-wordpress-training-team-2\">How to validate content feedback for the WordPress Training Team</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=mentorship-program-introduction-to-the-wordpress-open-source-project\">Mentorship Program: Introduction to the WordPress Open Source Project</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=what-is-the-domain-name-system-4\">What is the Domain Name System?</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=what-is-the-domain-name-system-3\">What is the Domain Name System?</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" 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/developing-with-the-wordpress-rest-api/\">Introduction to developing with the WordPress REST API</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/tv\">WordPress TV</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/tv/2023/06/15/enhancing-slide-management-for-video-publications/\">Enhancing Slide Management for Video Publications</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordCamp Central</h2>\n\n\n\n<ul>\n<li><a href=\"https://central.wordcamp.org/news/2023/07/wordcamp-malaysia-2023-is-looking-for-speakers-and-sponsors/\">WordCamp Malaysia 2023 is Looking for Speakers and Sponsors</a></li>\n\n\n\n<li><a href=\"https://central.wordcamp.org/news/2023/07/wordcamp-masaka-2023-celebrating-inclusion-diversity-and-innovation-with-wordpress-in-ugandas-pearl-of-africa/\">WordCamp Masaka 2023: Celebrating Inclusion, Diversity, and Innovation with WordPress in Uganda’s Pearl of Africa!</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/\">jQuery 3.7.0</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-1\">PHP 8.3.0 Alpha 3 available for testing</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\"></a><a href=\"https://www.php.net/archive/2023.php#2023-07-06-2\">PHP 8.2.8 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-3\">PHP 8.1.21 Released!</a></li>\n\n\n\n<li><a href=\"https://github.com/PHPMailer/PHPMailer/releases/tag/v6.8.0\">PHPMailer 6.8.0</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/\">TC39</a></li>\n\n\n\n<li><a href=\"http://github.com/composer/composer/releases/tag/2.5.8\">Composer 2.5.8</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>   <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&#8217; <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It&#8217;s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>.  </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://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:\"Sat, 19 Aug 2023 03:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:72:\"Post Status: The WP Agency Journey with J.J. Toothman of Lone Rock Point\";s:7:\"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:82:\"https://poststatus.com/the-wp-agency-journey-with-j-j-toothman-of-lone-rock-point/\";s:7:\"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://poststatus.com/the-wp-agency-journey-with-j-j-toothman-of-lone-rock-point/\";s: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:47031:\"<div class=\"wp-block-embed__wrapper\">\n\n</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 class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\">In this episode, <a href=\"https://twitter.com/corymiller303\">Cory Miller</a> interviews <a href=\"https://twitter.com/jjtoothman\">J.J. Toothman</a>, owner of <a href=\"https://lonerockpoint.com/\">Lone Rock Point</a>, a WordPress agency based in Sudbury, Massachusetts. J.J. shares his agency journey, discussing the growth of his agency and its remote-first approach.</p>\n\n\n\n<p class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"><strong>Episode Highlights:</strong></p>\n\n\n\n<ul type=\"video\" class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\">\n<li><strong>The Growth of Lone Rock Point</strong> [00:00:32] JJ discusses the growth of his agency, Lone Rock Point, from 4-5 people in spring 2020 to 16 people now.</li>\n\n\n\n<li><strong>Remote-first Approach</strong> [00:02:29] JJ talks about adopting a remote-first organizational structure from the beginning and how they didn&#8217;t miss a beat when the pandemic hit in 2020.</li>\n\n\n\n<li><strong>Focus on Public Sector and NASA</strong> [00:04:02] JJ explains his background in government contracting and how his agency focuses on working with the public sector, particularly in the federal level, including clients like NASA.</li>\n\n\n\n<li><strong>The federal government ecosystem</strong> [00:11:29] Discussion on the ecosystem and governance of federal government agencies, including guidance and policies.</li>\n\n\n\n<li><strong>Starting Lone Rock Point</strong> [00:13:39] JJ&#8217;s decision to start his own agency after exploring side hustles and feeling the desire to be more entrepreneurial.</li>\n\n\n\n<li><strong>Niching down to WordPress</strong> [00:18:25] The growth and success of Lone Rock Point after focusing on WordPress as their main service offering.</li>\n\n\n\n<li><strong>Topic 1: Using WordPress as a Content Management System</strong> [00:22:17] Discussion on using WordPress as a content management system and adapting WooCommerce for check payments.</li>\n\n\n\n<li><strong>Topic 2: WordPress and the Public Sector</strong> [00:22:58] Exploration of using WordPress in the public sector, particularly in government agencies like NASA, for managing and publishing content.</li>\n\n\n\n<li><strong>Topic 3: Web Modernization Project with NASA</strong> [00:28:26] Overview of a web modernization project with NASA, including evaluating different CMS options and deciding to invest in WordPress.</li>\n\n\n\n<li><strong>The SEO and Accessibility Tools in WordPress </strong>[00:32:35] Discusses the real-time analysis tools in WordPress for SEO and accessibility, such as Yoast, and how they differentiate it from other CMS platforms.</li>\n\n\n\n<li><strong>The Resources and Knowledge Sharing in the WordPress Community </strong>[00:34:57] Explains the abundance of resources, knowledge sharing, and community support available in the WordPress ecosystem compared to other CMS platforms.</li>\n\n\n\n<li><strong>The Importance of Open Source and User Experience in WordPress</strong> [00:37:11] Highlights the significance of open source adoption in the public sector and how WordPress&#8217;s user experience and inclusivity differentiate it from commercial solutions.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\"><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<div class=\"wp-block-columns has-theme-palette-8-background-color has-background is-layout-flex wp-container-37 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n\n\n<p>A2Hosting offers solutions for WordPress and WooCommerce that are both blazing fast and ultra-reliable. WordPress can be easily deployed on ANY web hosting plan from A2: Shared, VPS, or Dedicated. A2 also offers Managed WordPress and WooCommerce Hosting. Take a look at a2hosting.com today!</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<img width=\"752\" height=\"470\" src=\"https://poststatus.com/wp-content/uploads/2022/08/imageedit_1_6433774706-752x470.png\" alt=\"A2 Hosting\" class=\"wp-image-104073\" />A2 Hosting\n</div>\n</div>\n\n\n\n<h3 class=\"wp-block-heading eplus-wrapper\" id=\"h-mentioned-in-the-show\">  Mentioned in the show<strong>:</strong></h3>\n\n\n\n<ul>\n<li><a href=\"https://lonerockpoint.com/\">Lone Rock Point</a></li>\n\n\n\n<li><a href=\"https://wordpress.com/\">WordPress&nbsp;</a></li>\n\n\n\n<li><a href=\"https://www.nasa.gov/\">NASA</a></li>\n\n\n\n<li><a href=\"https://automattic.com/\">Automattic</a></li>\n\n\n\n<li><a href=\"https://wpvip.com/\">WordPress VIP</a></li>\n\n\n\n<li><a href=\"https://www.fedramp.gov/\">FedRAMP</a>&nbsp;</li>\n\n\n\n<li><a href=\"https://wpvip.com/partners/\">WordPress Agency Partnership Program</a></li>\n\n\n\n<li><a href=\"https://www.rtx.com/\">Raytheon</a></li>\n\n\n\n<li><a href=\"https://www.nasa.gov/ames\">Nasa Ames Research Center</a></li>\n\n\n\n<li><a href=\"https://www.recodingamerica.us/\">&#8220;Recoding America&#8221;</a> by <a href=\"https://twitter.com/pahlkadot?lang=bn\">Jennifer Palka</a>&nbsp;</li>\n\n\n\n<li><a href=\"https://woocommerce.com/\">WooCommerce</a></li>\n\n\n\n<li><a href=\"https://en.wikipedia.org/wiki/Main_Page\">Wikis</a></li>\n\n\n\n<li><a href=\"https://www.eventbrite.com/\">Ticketfly</a></li>\n\n\n\n<li><a href=\"https://digital.gov/resources/21st-century-integrated-digital-experience-act/\">Integrated Digital Experience Act</a></li>\n\n\n\n<li><a href=\"https://www.drupal.org/\">Drupal</a></li>\n\n\n\n<li><a href=\"https://business.adobe.com/products/experience-manager/sites/aem-sites.html\">Adobe Experience Manager</a></li>\n\n\n\n<li><a href=\"https://wagtail.org/\">Wagtail</a></li>\n\n\n\n<li><a href=\"https://www.contentful.com/\">Contentful</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/gutenberg/\">Gutenberg</a></li>\n\n\n\n<li><a href=\"https://atomicdesign.bradfrost.com/chapter-2/\">Atomic Design System</a></li>\n\n\n\n<li><a href=\"https://yoast.com/\">Yoast</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/plugins/\">WordPress plugins</a></li>\n\n\n\n<li><a href=\"https://stackoverflow.com/\">Stack Overflow</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading eplus-wrapper\" id=\"h-you-can-follow-post-status-and-our-guests-on-twitter\">  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/jjtoothman\">JJ Toothman</a> (Owner, <a href=\"https://lonerockpoint.com/\">Lone Rock Point</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.  <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>.  </p>\n\n\n\n<h2 class=\"wp-block-heading eplus-wrapper\" id=\"h-transcript\">Transcript</h2>\n\n\n\n<p>Cory Miller (00:00:02) &#8211; Hey everybody. Welcome back to Post Status Draft. Got another great interview in our agency Journey series and I&#8217;m talking with JJ Toothman, a member of Post Status and JJ, Hey, thanks for coming on post this draft and talking about your agency journey story.</p>\n\n\n\n<p>J.J. Toothman (00:00:18) &#8211; Hey, thanks for having me. Cory. It&#8217;s great to be here. Um, really appreciate everything you do for post status and for the community. So I&#8217;m happy to be, um, you know, a member of both. So.</p>\n\n\n\n<p>Cory Miller (00:00:32) &#8211; Awesome. Well, we&#8217;ve gotten to get to know each other over the last, like, I&#8217;d say, what, eight months and hear about some of the work that your agency does. It&#8217;s super, super exciting. But can you tell me about the agency where it is now? Team clients kind of work. You kind of do.</p>\n\n\n\n<p>J.J. Toothman (00:00:50) &#8211; There&#8217;s my dog and wife.</p>\n\n\n\n<p>Cory Miller (00:00:54) &#8211; Great introduction.</p>\n\n\n\n<p>J.J. Toothman (00:00:55) &#8211; Yeah. Um, so the. So my company is Lone Rock Point and I am located outside of Boston, Massachusetts, in a town called Sudbury.</p>\n\n\n\n<p>J.J. Toothman (00:01:09) &#8211; Um, if you know the Revolutionary War history, you remember the Battle of Lexington and Concord and Sudbury borders. Concord. I live about five miles from where Paul Revere was captured at the end of his famous ride to tell everybody the British were coming. Oh, wow. Lone Rock Point. We have grown it to 16 people. You know, 12 of those people are full time. And there&#8217;s a handful of of, of part timers. Um, the were distributed all over the place. Uh, I&#8217;ve got, you know, some of us are in California, Texas. Uh, Michigan. There&#8217;s a few people in around Grand Rapids. There&#8217;s people in Florida, a few people around Asheville, North Carolina. And we definitely, you know, adopted a remote first, you know, virtual kind of organization, organizational structure from the very beginning. You know, when when the pandemic happened in 2020, we didn&#8217;t miss a beat. You know, our the people that we were working with, you know, just it just continued.</p>\n\n\n\n<p>J.J. Toothman (00:02:29) &#8211; It&#8217;s weird to look back on that time and think about the, you know, ways that we were able to grow during that time in a period where so many small businesses were were, you know, struggling. But, you know, look back on that time and think about like we, you know, we were, you know, going remote, being virtual. That wasn&#8217;t a problem for us. We were ready to do that for the very beginning. And the people we were worked with, like just we just kept working on it, kept asking for more from us. It was actually a period of growth for us. We probably went from, you know, at the beginning of. You know, spring 2020, we were around four people and 4 or 5, and now we&#8217;re 16. We became a WordPress agency approximately 15, 16 months ago. Um, and we joined WordPress is kind of a continuation of our work with the public sector when I started my company in 2016. Um, you know that we can talk about the genesis of that, but it was, you know, I was had come from a federal government contracting world and I&#8217;ve been working for big companies like Raytheon, um, Perot Systems, Dell and, you know, decided that, you know, I wanted to start my own company, you know, had this, you know, the proverbial entrepreneurial itch that most entrepreneurs feel and just kind of wanted to try that out.</p>\n\n\n\n<p>J.J. Toothman (00:04:02) &#8211; So I started to serve this company and wanted to start working. There were two customers that I wanted to work with from the very beginning, and one of those was NASA, which is it&#8217;s hard for me to talk about my own journey and the work that we&#8217;re doing without connecting to the long history I have working with with NASA. So I use that relationship and that relationship capital that I&#8217;ve built, you know, from starting working with them back in as early as 2001. Well, one of my first clients and then one of my second clients, big clients was Automattic. Some people over there that had built relationships over the years came to me and said, Hey, you know a lot about, you know, this public sector world, you know, federal government contracting. Can you help us, you know, with kind of get into that vertical and so help them with some some business strategy around that? I helped them with some security compliance, things they needed to be aware of. And then that relation, you know, that work kind of matured a little bit and kind of ran its course a little bit.</p>\n\n\n\n<p>J.J. Toothman (00:05:15) &#8211; And then, you know, as they as WordPress VIP, you know, kind of solidified its it&#8217;s standing and it&#8217;s got themselves into what&#8217;s called the Fedramp marketplace. You know, they came to me and said, Hey, you should, you know, your company, you should we should continue working together. You should join the WordPress Agency partnership program. And that&#8217;s something I did, you know, specifically because of our shared interest in working together on public sector opportunities. And, um, you know, that&#8217;s, that&#8217;s, that&#8217;s, that&#8217;s really what my company is doing right now is, you know, Lone Rock Point. We are, we&#8217;re definitely exploring that intersection of WordPress and public SpaC, public sector, predominantly the federal level of that. You know, there&#8217;s a lot of state and municipal stuff opportunities there as well. Um, but we&#8217;re, you know, the, the kind of the, when you think of like WordPress and public sector, what I want people to come out of that connection with is is Lone Rock point and so that&#8217;s you know that&#8217;s work we&#8217;re doing with and and work we&#8217;re doing with NASA and it&#8217;s going we&#8217;ve been working on some projects from NASA for the past few years.</p>\n\n\n\n<p>J.J. Toothman (00:06:31) &#8211; And it&#8217;s it&#8217;s really rewarding work. It&#8217;s good to feel like you&#8217;re contributing to. You know, we&#8217;re not civil servants, but we&#8217;re definitely kind of contributing to. You know, putting the taxpayer dollars to work, being good stewards of taxpayer money. And we think WordPress has a a role in that.</p>\n\n\n\n<p>Cory Miller (00:06:54) &#8211; Excellent. Well, there&#8217;s a lot here I want to unpack, but it&#8217;s so compelling. Congratulations on your success. Congratulations on what you&#8217;ve done in the public sector to take WordPress there. I love hearing stories like yours and our other members doing good work in our world. And I get to I think I&#8217;ve told you, I get to brag, Hey, I know the people working on these projects, you know, which is pretty fantastic, and taking WordPress to the Enterprise, but Public sector Spaces is really fantastic as WordPress grows. So okay, I want to I want to thank you for telling us kind of what Lone Lone Rock Point does today. So I heard in there 2016. So I, I had assumed, as we had talked for because of the kind of work you&#8217;re doing, you had been doing this particular agency type work for a long time.</p>\n\n\n\n<p>Cory Miller (00:07:49) &#8211; But wow, that&#8217;s why I say congrats one, Congratulations on your success. But like it&#8217;s pretty fast timeline to be able to get to doing an agency to doing this kind of work, I think. But can you take me back like before 2016, you said you were doing enterprise or. Yeah, public sector government, government contracting work. What were you doing before the agency?</p>\n\n\n\n<p>J.J. Toothman (00:08:10) &#8211; Before. Before I founded my agency. Yeah. Yeah. So I was, I was a software developer, web application developer. I got hired by Raytheon to work on a contract they had with NASA Ames Research Center. And back in 2001, actually, the thing that the opportunity that kind of brought me into that world was that&#8217;s when they first started thinking about like, what do they have to do about website accessibility? So they brought me in there to kind of help, you know, help, you know, mature what they were doing around all that kind of stuff. And it&#8217;s been interesting to see what the what where was thinking about this over the last couple of weeks.</p>\n\n\n\n<p>J.J. Toothman (00:08:57) &#8211; You know, when I first started working at NASA Ames and started talking about website accessibility and looking at all the various websites and web applications that was that were running at Ames Research Center, which is one of the, you know, field centers that&#8217;s part of the the NASA enterprise. Um, there was people were really just they were really resistant to it. They were trying to. They were trying to check the box on it quite a bit. You know, they were just like, What&#8217;s the minimum I have to do to, like, just check the box on this and so I can move on. Like it really the the optics of how important that was and just it just being the generally the right thing to do, forget the whole legal requirements of it all that really just wasn&#8217;t cemented. And here we are, you know, 20 plus years later where, you know, that&#8217;s that&#8217;s kind of like at the core of what is happening definitely in the public sector, but in the web in general, just like this, this strong emphasis on making it accessible and available to everybody.</p>\n\n\n\n<p>J.J. Toothman (00:10:00) &#8211; You know, I saw how that started, you know, 20 years ago. And it&#8217;s it was not the same temperature, both from various from developers, designers, project managers, you know, that whole thing is shifted in very positive ways over the last couple of decades. So I was a software developer there working on various, um, you know, web applications, internal business process type applications, looking at accessibility improvements. Um, and then just kind of grew things over the years, you know, you know, started, you know, started rising the ranks a little bit, like getting opportunities to understand how government projects actually work, how it works, which is a pretty thing. I started participating in proposals that big companies like Dell were doing and responding to government RFPs, which are massive undertakings unto themselves, um, understanding compliance and security regulations that exist in government, in government, and really just kind of understanding how these governments, these government agencies and, you know, as individual as they kind of have their own ecosystems unto themselves, that&#8217;s probably not, you know, unique to all various massive, you know, corporate enterprises.</p>\n\n\n\n<p>J.J. Toothman (00:11:29) &#8211; You know, we talk a little bit about the WordPress ecosystem now, but these these federal government agencies, they all have their own ecosystems around it. And then they&#8217;re also operating in this big federal thing where there&#8217;s kind of like this. Um, Jennifer Palka just wrote this great book called Recoding America, and she calls this term friendly fire. So where there&#8217;s like things where like the Office of Management, the OMB and General Services Administrations and other offices and agencies within the executive branch and other parts of government are putting together governance and policy around it and how the web should work. Um, and it creates all this types of, you know, these, this guidance and guardrails that you have to adhere to. So that becomes like kind of a larger ecosystem unto itself. So, you know, starting to understand how to work within that type of, um, you know, those types of scenarios and guardrails and boundaries and knowing how to interoperate it all just became, you know, something that started gaining more experience with and more exposure to with and, you know, think it&#8217;s been a big, you know, that knowledge is a big part of like why, you know, my company&#8217;s positioned and why we&#8217;ve achieved some success.</p>\n\n\n\n<p>J.J. Toothman (00:12:44) &#8211; You know, working and and gaining some credibility in parts of the public sector and procuring our relationship with with WordPress VIP and, you know, expanding our own opportunities within itself. Yeah, it&#8217;s exciting. It&#8217;s challenging. Exhausting at times, but it&#8217;s also exciting and rewarding.</p>\n\n\n\n<p>Cory Miller (00:13:04) &#8211; Yeah. Yeah. I can&#8217;t imagine. So just just for clarity. So you&#8217;re working full time at Raytheon or were you contract as a software?</p>\n\n\n\n<p>J.J. Toothman (00:13:12) &#8211; So a contract means you&#8217;re you&#8217;re you&#8217;re like you&#8217;re kind of embedded, so you&#8217;re a full time employee and you&#8217;re your government contractor working on a contract that, you know, a company like Raytheon or Dell or Booz Allen or Lockheed Martin has with the federal government to deliver services abilities that are part of their requirements.</p>\n\n\n\n<p>Cory Miller (00:13:39) &#8211; Okay. Okay. That totally makes sense. So what was that catalytic moment when you&#8217;re like, Hey, I&#8217;m gonna do this for myself, I&#8217;m gonna start my agency?</p>\n\n\n\n<p>J.J. Toothman (00:13:46) &#8211; Yeah.</p>\n\n\n\n<p>Cory Miller (00:13:47) &#8211; So prompted that. Um.</p>\n\n\n\n<p>J.J. Toothman (00:13:50) &#8211; A couple of things. So I left NASA for a while and I went and worked for a company, a music ticketing startup called Ticket Fly.</p>\n\n\n\n<p>J.J. Toothman (00:13:58) &#8211; I helped them, like, basically create a network of websites for small independent music venues, um, and help those music venues talk about, you know, what shows were coming, how to buy tickets, you know, when the on sale dates were and all the other, you know, all that content that is basically all about converting into ticket sales. And so I was with was, you know, with them when they were really small. And, you know, it was definitely the startup world and that was really exciting. It was also a bad time for my life. I just had like my my second child and like my work life balance was it was it was pretty bad. Um, you know, working at a small startup like that. So ended up going back to NASA. Um, you know, and just trying to, like, find my footing a little bit. I also wanted to leave California and move relocate back to the East Coast. And I knew that was, you know, being in a place, a large organization like that would offer some flexibility like that.</p>\n\n\n\n<p>J.J. Toothman (00:15:05) &#8211; Um, but then, you know, I would say around a decade, you know, ten years ago. I started having this, you know, I started having that entrepreneurial itch again. I started thinking about, like, how fun it was to, you know, move fast at ticket fly and wanted that that feeling again. And so I started, you know, I explored a couple of like side hustles, you know, some small little independent web projects. One of them was like a newsletter to help families spend more time outdoors. And they didn&#8217;t really take off. They didn&#8217;t really get get some traction. And what I mean by that, it wasn&#8217;t necessarily traction from a, you know, where we&#8217;re making revenue or gaining customers. We were just like just the balance of of, you know, trying to do do that type of initiative while, you know, having a full time job and also like, you know, having a growing family and all that kind of stuff. And then in but was it was clear that.</p>\n\n\n\n<p>J.J. Toothman (00:16:06) &#8211; You know, I was exploring something. And, you know, again, that desire to to like be in more, you know, control of of of my destiny, so to speak, and be entrepreneurial is something I just couldn&#8217;t I couldn&#8217;t get rid of completely. And it wasn&#8217;t happening within big companies like Dell in the way that I wanted to know. I really wanted to be, you know, in control of a lot of decisions that wasn&#8217;t in control of, um, and, you know, that&#8217;s why people start their own things and, you know, be founders of companies. And, you know, I had dinner with a friend of mine who was also in the government contracting space. He&#8217;s like, you know, you&#8217;ve been thinking about. And he told me he&#8217;s like, You&#8217;ve been thinking about all these little product ideas, these digital product ideas, like, you know, just just start a services business, you know, like and that will satisfy your need or the desire. You have to be entrepreneurial and, you know, like, you know, look at balance sheets and think about marketing and, you know, attracting talent and retaining talent and stuff like that.</p>\n\n\n\n<p>J.J. Toothman (00:17:12) &#8211; And he was right. He was like, You know what? That&#8217;s a really good idea. And within 120 days, I&#8217;d like set the wheels in motion to, you know, start Lone Rock Point. Um, and, you know, we, we went from there. So it started in the fall of I started the company in the fall of 2016. It was just me for, you know, a year. And then it was like me and a virtual assistant for like another year. And I, you know, I started under this like this umbrella of like, digital transformation consulting. At the time, I was doing a lot of work with the public sector around cloud transformations. So people were were operating applications and on premise data centers and starting to make that migration into things like Amazon Web Services. And so working out a lot of change management type type projects associated with that. And it all kind of just fit under this like big umbrella of digital and cloud transformation, which, to be totally honest with you, is, is is too vague and too broad and borderline meaningless.</p>\n\n\n\n<p>J.J. Toothman (00:18:25) &#8211; You know, if you ask ten different people what digital transformation is, you&#8217;re probably going to get ten different definitions of it. Yeah. And so it&#8217;s really hard to like, you know, grow a services business out that way is really just like me being a consultant at that point. Um, and it wasn&#8217;t until like started niching down into, you know what, like let&#8217;s just do this WordPress thing, you know, was I was delivering, um, you know, whitepapers and providing analysis of like how what people should do with like their, their inventory of web applications and advising them on what is and what platforms they should be using. And a lot of times ended up started like you know, making recommendations around WordPress oriented applications, sometimes just building WordPress sites, sometimes using WordPress as an application framework. Um, in over the, in the time I&#8217;ve been with NASA. I&#8217;ve used WordPress with them and a lot of different ways. We&#8217;ve done it in a WordPress network multi-site kind of way for allowing smaller NASA missions and programs and projects to, you know, have their own websites where they all communicate what they&#8217;re up to and what their findings are and share what they learned with, you know, with, with interested stakeholders and visitors to their sites.</p>\n\n\n\n<p>J.J. Toothman (00:19:55) &#8211; Um, there, there&#8217;s been some internal things where needed to like communicate various services as it had to various corners of the agency. So we did like a WooCommerce thing where people can go to a web application, a website and just pick what, what services they want. Like I need, I need some Amazon cloud storage or processing or, you know, EC2 units. And they could apply, they could add all those things to a cart and then say, check out and, you know, check, you know, do a checkout with that and just start getting services provided to them that way. So um, and then, you know, over time it just became clear that like, this is, I keep recommending this, like there&#8217;s growth opportunity for me here and then, you know, niching down to being like, we&#8217;re going to be a WordPress, a more traditional WordPress agency is really when, you know, the growth started happening and the opportunity started becoming a little bit. And it isn&#8217;t just like strategic consulting, it became the execution part of it as well.</p>\n\n\n\n<p>J.J. Toothman (00:21:00) &#8211; And the tactics part of it too, and the tactics and execution. We&#8217;re all oriented for the most of the time.</p>\n\n\n\n<p>Cory Miller (00:21:06) &#8211; Yeah, I&#8217;d love to hear these stories because you got, you know, a big career in enterprise and public sector, you know, with your Raytheon and NASA days and then entrepreneurial hit. Okay, want to do this and then seeing you know when you say NASA and WordPress, it just seems like those things should always go together, you know, and that&#8217;s what really compelling to me is seeing WordPress more on the public sector enterprise. And now there&#8217;s really big institutions in in the US federal government anyway, probably around the world too, but that are starting to use WordPress more and more and leverage it and see that opportunity. Um, so I love kind of how those intersection of things happen. So that lone rock point would kind of exist and grow and then you hit your I was going to ask the question when the WordPress come into play, but you pretty much answered it. So like your 2 or 3 or so, it seems like, hey, we&#8217;re going to drill down.</p>\n\n\n\n<p>Cory Miller (00:22:04) &#8211; And then when you mention WooCommerce that like that use case for an internal tool within a big organization like that to procure and get resources and things, that&#8217;s so compelling. You know, most of my.</p>\n\n\n\n<p>J.J. Toothman (00:22:17) &#8211; Career that like, people just wanted that checkout expert, They wanted that. They wanted that experience of like, I want X, Y and Z, I want to add it to the cart and I want to tell you that I want it. And we just, you know, WooCommerce has that option to, you know, just do check payments, right? Which removes the credit card processing out of it. And so we kind of adapted that to, all right, we&#8217;re going to send this order to somebody who can fulfill that order via this WooCommerce WordPress system. Um, and, you know, it&#8217;s, it&#8217;s, it&#8217;s, you know, it&#8217;s using the WordPress ecosystem at its best, like using it almost kind of as Legos and want this part of it. I want that part of it. I want to, I want to glue them together in this way.</p>\n\n\n\n<p>J.J. Toothman (00:22:58) &#8211; And it&#8217;s, you know, kind of a no code kind of way around WordPress to solve some, you know, some very simple, narrow use cases. But, you know, my, my journey with WordPress, you know, starts way back in 2007 at my first stint with at Ames Research Center. Um, you know, I was working with all these various scientists and researchers and they just like need a place to like publish my, my research findings and publish my data and, and they, they all one, they all had the same, um. You know, requirements and needs. At the highest level, it&#8217;s like I just need a place to put it. And I want to I want to be able to manage it myself in a way. And I don&#8217;t know. I don&#8217;t know how to don&#8217;t know how to code. I don&#8217;t know. I don&#8217;t have anybody on my team who knows HTML. And so that, you know, that basically introduced the concept of like content management systems into all this back in 2007.</p>\n\n\n\n<p>J.J. Toothman (00:24:03) &#8211; And, you know, we were looking at things like wikis at the time and, and then discovered WordPress and around that and just the user experience of someone just, you know, managing their content with that type of, you know, WordPress, CMS, this is like version 2.0 of WordPress, you know, back when they added pages in addition to posts was the real thing. That&#8217;s like, oh, this is what this satisfies what everyone&#8217;s looking for. They want an easy place just to log into. And you know, they all some of them wanted to start blogging. Some of them wanted to start blogging without knowing that they wanted to start blogging. They just want to share what they know and tell their stories. Um, and then back in 2007, I created this is also the Web 2.0 era where, you know, your blogging was, was kind of heavy in the lexicon back then. And I was I did one of NASA&#8217;s first official public blogs on WordPress and, and kind of grew with WordPress, you know, from there that led to the ticket fly work.</p>\n\n\n\n<p>J.J. Toothman (00:25:13) &#8211; And so WordPress was kind of always in my DNA, even when wasn&#8217;t, you know, it wasn&#8217;t like a defined part of what I was, you know, of my, my role description. But my role was in some cases to be strategic and provide advice and provide some roadmaps. And, you know, how do we do things? Give us some give us some guidance here. And a lot of times just said like, well, you don&#8217;t have to create a custom bespoke application for this. Just use a content management system like WordPress, you know, teach your users how to how to how to manage using WordPress themselves. And and you go from there. So and the WordPress ecosystem is what makes all that happen mean there&#8217;s all these different, you know, there&#8217;s all these different plugins and themes and you just kind of integrate it all together, um, you know, in a unique way. And you have a great solution architecture, depending on how you put it together.</p>\n\n\n\n<p>Cory Miller (00:26:08) &#8211; What you&#8217;re talking kind of way back.</p>\n\n\n\n<p>Cory Miller (00:26:11) &#8211; But you know, remember a lot of the solutions that we have now didn&#8217;t exist. So, you know, big organizations were having to do like the the internal resourcing that you&#8217;re talking about. They&#8217;d have to custom code those things or build them because they didn&#8217;t exist off the shelf. Then you fast forward and you go, you could take WooCommerce save. I can&#8217;t even imagine how much time to kind of do git to feature like, you know, par with that and then take that open source solution and then utilize it and just customize with a with a great agency like you all to figure out what their exact needs are. So it&#8217;s it&#8217;s great to see how everything has fast forward to. Well, we touched on this. I know we&#8217;re going to have more conversations down the road. And and I want to talk more about the public sector and enterprise. And I know we&#8217;re talking and we&#8217;re going to have some great conversations in the next couple of months about this, because I know you&#8217;re passionate about it, about the public sector and bringing WordPress to the public sector, but we&#8217;ll save that for another time.</p>\n\n\n\n<p>Cory Miller (00:27:07) &#8211; I don&#8217;t want to spoil too much of that, but I appreciate so much the journey and what you&#8217;re doing. So thank you for telling us that. That&#8217;s, that&#8217;s that&#8217;s incredible. Um, okay. What are you excited about today? What are you excited about today and the future going forward and what you&#8217;re doing with the agency and your team and the work you&#8217;re doing?</p>\n\n\n\n<p>J.J. Toothman (00:27:27) &#8211; Yeah. So a few years ago, the government, Pervez passed a Congress passed an act called the Integrated Digital Experience Act. And within that act is basically it tells all these federal agencies how to modernize their website. So, you know. Obvious things like improve accessibility. They have to be accessible. They have to work on mobile. They. They. You have to have like good search. They should. People should be able to find content there. They also need to be based on user research and user needs. So they&#8217;re all logical things within. You know, public sector and it&#8217;s all so I&#8217;m really excited about that. Be something that initiates or triggers a lot of the work that I&#8217;ve been doing for the last couple of years.</p>\n\n\n\n<p>J.J. Toothman (00:28:26) &#8211; And so for the last few years I&#8217;ve been working on a web modernization project with NASA. It exists for a couple of reasons. It exists. One, because of that idea act. It also exists because NASA has a couple of thousand websites and they don&#8217;t want there to be a couple of thousand websites. They want all that information in one website. So we&#8217;ve been doing a lot of work with them. You know, that started back in kind of mid 2000, late 2000, and it started with, hey, what should be using for its main, you know, web source, major web properties. And so I spent a year taking a look at the landscape of you know, of all the available CMS&#8217;s that are out there, you know, Drupal source site, Adobe Experience manager and then some new newer ones like Wagtail. And then there&#8217;s even we even took a look at, you know, some of the software as a service type solutions like Contentful and just trying to understand the pros and cons of Elda.</p>\n\n\n\n<p>J.J. Toothman (00:29:38) &#8211; And so we spent a year taking a look at the CMS landscape and acquiring data for it, acquiring evidence of it. And while in my heart, you know, being a WordPress guy, I knew like, you know, WordPress makes a lot of sense here. You know, we it&#8217;s still there was a lot of benefit for me to kind of like take a look at like what, you know, all the driving factors for making a decision like that were, um, and you know at the end of it WordPress like was the, the solution, the CMS that NASA wanted to invest in for the future. And that&#8217;s what we&#8217;ve been working on for the last couple of years. So for the last couple of years we&#8217;ve been working on a couple of big. Uh, NASA WordPress projects. And a lot of, you know, I talked a lot about how I&#8217;ve been using WordPress and a no code kind of way. This is not a no code kind of way. There was a lot of Gutenberg custom development here.</p>\n\n\n\n<p>J.J. Toothman (00:30:34) &#8211; It&#8217;s the, it&#8217;s, it&#8217;s the project that has everything like, you know, an emphasis on SEO, an emphasis on accessibility. There&#8217;s a new atomic design system that was created for this. And so the seeing the marriage of an atomic design system and Gutenberg, you know, come to bring all that stuff to life has been really, really exciting. And I&#8217;m excited to like for, for, you know, people, you know, interested in what NASA is up to and people interested in WordPress to see the fruits of all this labor that we&#8217;ve been working on for the last couple of years and it&#8217;s all coming in the next few months. And yeah, so I&#8217;m really excited to share that with you and share that with other people in the community.</p>\n\n\n\n<p>Cory Miller (00:31:19) &#8211; Yeah, that&#8217;s excellent. So I want to take just a minute in sidebar because you did this whole year, you know, one of seeing what&#8217;s out there, seeing what the options are. And I love that you&#8217;ve done some deep, deep research for big organizations trying to make a big, important decision on it.</p>\n\n\n\n<p>Cory Miller (00:31:36) &#8211; Um, I&#8217;m just curious what we&#8217;re couple takeaways. As you just surveyed the landscape. You know, we love WordPress. We understand, you know, we, we support WordPress, but, but we know that there&#8217;s a lot of stuff out there. Um, but I&#8217;m curious, what, what did the landscape look like? Where were some of the things you saw when you looked at the other platforms you mentioned like Wagtail? I hadn&#8217;t heard that one before. I&#8217;ve heard of Contentful for instance, and of course Drupal. But what, what were a couple of the takeaways on that year of investigation out there?</p>\n\n\n\n<p>J.J. Toothman (00:32:08) &#8211; So the I, I would say that there are two major, maybe three major differentiators that separated WordPress from the rest from the rest of the pack. If you will. Um, you know, there&#8217;s a lot of great content management systems out there. You know, they all do the same thing or try to do people the same. They try to make it easy for people to publish information onto the web and make it easy for others to consume it.</p>\n\n\n\n<p>J.J. Toothman (00:32:35) &#8211; But the differentiators from WordPress versus the other CMS that we were looking at were number one. A lot of again, it had a lot of it had to do with the ecosystem. WordPress was the only CMS that had real time analysis tools around SEO. So and accessibility to kind of try to improve those situations before the point of publishing. So Yoast is the obvious example. So Yoast, you know, we&#8217;ve all been exposed to Yoast. Yoast allows you to allows the content creator user to be authoring and editing content and getting some real time analysis about how friendly or compatible, whatever the term you want to use it is before the point of publish. There&#8217;s accessibility tools out there that do the same things that are kind of integrated within the WordPress Admin WordPress dashboard that allow that content creator user to like, you know, when it&#8217;s in draft format to analyze. Do I have accessibly accessible content that I&#8217;m about to publish in here and make live other CMS didn&#8217;t have that baked in. You know, there&#8217;s WordPress plugins that do these things.</p>\n\n\n\n<p>J.J. Toothman (00:33:51) &#8211; Um, we could even, we even have the ability to prevent publishing until certain excessively thresholds and SEO optimization thresholds are met. That was really, really attractive. All the most of the majority of the other solutions are you publish it first it&#8217;s live and then you can go back and check it and then you kind of have to retrofit it. I&#8217;ve been working in enterprises enough to know that that doesn&#8217;t happen once it&#8217;s published, Once it&#8217;s out there, people are generally going to move on. They&#8217;re not going to do the analysis of like, All right, how do I go back and improve this thing? So you really got to you really got to catch those things early and often. Um, you know, up front in the, in the content publishing lifecycle. So that was one of the big differentiators was that and that again, that&#8217;s all a product of the WordPress ecosystem and the innovation that comes out of that ecosystem. The other one was just kind of like the resources around this. So we all, you know, you can take for a grain of salt like, you know, the the whole thing about, you know, WordPress powers, 40% of the web, you know, that kind of stuff.</p>\n\n\n\n<p>J.J. Toothman (00:34:57) &#8211; But there is some byproduct of that. And that is there&#8217;s a lot of people using it. There&#8217;s a lot of people building it. There&#8217;s a lot of people developing on it. There&#8217;s a lot of people extending on. There&#8217;s a lot of knowledge being shared around that. One of the things I did was I went in the stack overflow and compared WordPress with other CMS&#8217;s and just being like, How many conversations are happening around this thing, you know, that we&#8217;re looking at? And it was, you know, what you expected, the ability for, you know, to be able to. Try to solve a problem by getting by by, you know, interfacing or sponging up knowledge that was already contributed back in some way, you know, via via StackOverflow or, you know, other places on the Web, other groups, Slack channels, etcetera, that exists in WordPress in a way that it doesn&#8217;t exist in these other, you know, CMS products. You know, the if you want to if you want to get developer knowledge around Adobe Experience Manager, you for for the most part there are some Adobe experience manager specialists out there, but for the most part you got to go to Adobe for it.</p>\n\n\n\n<p>J.J. Toothman (00:36:02) &#8211; Um. Uh, you know, same thing with sorts. There&#8217;s not there&#8217;s not a huge community of sort site developers out there. So for a place like NASA, you know, resource acquisition becomes a problem. Like, where are they going to find talent for that? Yeah. And you know, again, WordPress, you know, kind of is head and shoulders above the rest in that area. Um, and then, you know, this whole concept of WordPress is for everyone to like that. That rang true in all this research too. Like it&#8217;s more than just developer community. There&#8217;s user communities out there that are also sharing their knowledge here. Um, you know, there&#8217;s all these kinds of like, there&#8217;s, there&#8217;s solutions for learning WordPress that are provided by the communities and multiple companies with the community that add a lot of value within the equals. So it&#8217;s not just like the software ecosystem, but it&#8217;s like, you know, the kind of service ecosystem to that exist within WordPress. Um, and then honestly, like, you know, portability matters to, um, you know, there&#8217;s, for the most part, like I really just wanted public sector to adopt open source.</p>\n\n\n\n<p>J.J. Toothman (00:37:11) &#8211; You know, that&#8217;s the first decision I want, I want them to do is just, just, you know, make an open source decision. And then you&#8217;ve done that. You know, you&#8217;re in a good you&#8217;re in a better place than picking a commercial, you know, bespoke solution. You know, And then, you know, once you get past that hurdle now, you know, the obvious open source can cannot exist. And you know, the user experience of WordPress and that whole concept of WordPress being for everyone and being considering everyone, depending on who you are, really rings true and is a differentiator as well.</p>\n\n\n\n<p>Cory Miller (00:37:50) &#8211; Well, that&#8217;s excellent. And that rings true. You know, I&#8217;m curious because as I talked to more enterprise agencies, all of you out there in the world interfacing with clients, with their needs, what they actually are trying to get done. That&#8217;s really, really great to hear and it&#8217;s reflective of the community. I think sometimes they&#8217;ve been in the community like you as long as we have.</p>\n\n\n\n<p>Cory Miller (00:38:10) &#8211; I take some of those things for granted. So I think that&#8217;s that&#8217;s excellent. Well, JJ, thanks so much for the time today. I know you just got back from a big trip and you&#8217;ve got work to pile out, but I appreciate you coming on the podcast and sharing your agency journey, and I look forward to our next conversation, sharing the good work you&#8217;re doing with WordPress in our world. That too.</p>\n\n\n\n<p>J.J. Toothman (00:38:31) &#8211; Corey Thanks for having me.</p>\n\n\n\n<p>Cory Miller (00:38:34) &#8211; All right. Thanks, everybody, for being here today. And we&#8217;ll talk to you. We&#8217;ll see. We&#8217;ll talk to you. We&#8217;ll hear from you. They&#8217;ll listen to us soon.</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:\"Sat, 19 Aug 2023 03:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Cory Miller\";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:68:\"Post Status: WordPress 6.3 RC1 • Field Guide • Gutenberg Phase 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://poststatus.com/wordpress-6-3-rc1-field-guide-gutenberg-phase-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://poststatus.com/wordpress-6-3-rc1-field-guide-gutenberg-phase-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:25778:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (July 17, 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.3 will arrive on August 8, so there isn&#8217;t much time left for testing compatibility. Whether you are a plugin or theme maintainer or managing clients&#8217; websites, now is the time to test the latest features. Mike Schroder shares their most anticipated feature with auto-rollbacks coming.Collaborative editing is coming to WordPress, but what might&hellip; </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box_94d1bd-77\"><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=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\"> WP 6.3, Field Guide, Phase 3</h2><p class=\"kt-blocks-info-box-text\"><br />  <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-1/\">WordPress 6.3 Release Candidate 1</a><br /><br />  <a href=\"https://wordpress.org/news/2023/07/episode-60-sneak-a-peek-at-wordpress-6-3-with-special-guest-mike-schroder/\">Sneak a Peek at WP</a><a href=\"https://wordpress.org/news/2023/07/episode-60-sneak-a-peek-at-wordpress-6-3-with-special-guest-mike-schroder/\"> 6.3 with Mike Schroder</a><br /><br /> &#x200d;  <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a><br /><br />3&#x20e3; <a href=\"https://make.wordpress.org/core/tag/phase-3/\">Gutenberg Phase 3</a><br /><br />  <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">WordPress 6.3 Field Guide</a><br />><br /></a><br /><br />><br /></a><br /><br /></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_b57166-6e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-1/\">WordPress 6.3 Release Candidate 1</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/episode-60-sneak-a-peek-at-wordpress-6-3-with-special-guest-mike-schroder/\">WP Briefing: Episode 60: Sneak a Peek at WordPress 6.3 with Special Guest Mike Schroder</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/designed-with-wordpress/\">Designed with WordPress</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-40 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\">WordPress 6.3</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/18/wordpress-6-3-ready-to-be-translated/\">WordPress 6.3 ready to be translated</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-3-accessibility-improvements/\">WordPress 6.3 Accessibility Improvements</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-1/\">WordPress 6.3 Release Candidate 1</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-2-release-candidate-phase-2/\">WordPress 6.3 Release Candidate Phase</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/30/6-3-release-parties-schedule-and-hosts/\">6.3 Release Parties Schedule and hosts</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">WordPress 6.3 Beta 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/05/25/wordpress-6-3-design-kickoff/\">WordPress 6.3 design kickoff</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/25/bug-scrub-schedule-for-6-3/\">Bug Scrub Schedule for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/wordpress-6-3-planning-roundup/\">WordPress 6.3 Planning Roundup</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\">Roadmap to 6.3</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\">WordPress 6.3 Field Guide and Dev-Notes</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">WordPress 6.3 Field Guide</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-block-selectors-api/\">Introducing the Block Selectors API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Introducing the WordPress Command Palette API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/layout-updates-in-the-editor-for-wordpress-6-3/\">Layout updates in the editor for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/social-icons-block-applied-colors-now-dynamically-update-based-on-theme-json-and-global-styles/\">Social Icons block: Applied colors now dynamically update based on theme.json and Global Styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-editor-changes-in-wordpress-6-3/\">Miscellaneous Editor changes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/bundled-themes-dropping-internet-explorer-scripts-and-styles/\">Bundled themes dropping Internet Explorer scripts and styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/improvements-to-the-cache-api-in-wordpress-6-3/\">Improvements to the Cache API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/configuring-development-mode-in-6-3/\">Configuring development mode in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/i18n-improvements-in-6-3/\">I18N Improvements in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/image-performance-enhancements-in-wordpress-6-3/\">Image performance enhancements in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/wp_query-used-internally-in-get_pages/\">WP_Query used internally in get_pages()</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/registering-scripts-with-async-and-defer-attributes-in-wordpress-6-3/\">Registering scripts with `async` and `defer` attributes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/improved-caching-for-database-queries-in-wp_user_query/\">Improved Caching for Database Queries in WP_User_Query</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-developer-changes-in-wordpress-6-3/\">Miscellaneous developer changes in WordPress 6.3</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-45 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-43 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2023/07/17/accessibility-team-meeting-agenda-july-21-2023/\">Accessibility Team Meeting Agenda: July 21, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/07/13/recap-of-the-diverse-speaker-training-group-wpdiversity-amer-emea-on-july-12-2023/\">Recap of the Diverse Speaker Training group (#WPDiversity) AMER/EMEA on July 12, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/07/13/new-handbook-page-for-wordcamp-organizers-wordcamp-speaker-selection-for-content-and-diversity/\">New handbook page for WordCamp Organizers: WordCamp Speaker Selection (for content AND diversity)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/07/12/summary-of-the-q2-community-team-role-updates/\">Summary of the Q2 Community Team Role Updates</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/2023/06/29/hallway-hangout-performance-improvements-for-wordpress-6-3/\">Hallway Hangout: Performance Improvements for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/a-week-in-core-july-17-2023/\">A Week in Core – July 17, 2023</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Phase 3 Ideations</h3>\n\n\n\n<ul>\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\" rel=\"noreferrer noopener\">Real-Time Collaboration</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/04/workflows/\" rel=\"noreferrer noopener\">Workflows</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/05/revisions/\" rel=\"noreferrer noopener\">Revisions</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/07/media-library/\" rel=\"noreferrer noopener\">Media Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/10/block-library/\" rel=\"noreferrer noopener\">Block Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/12/admin-design/\" rel=\"noreferrer noopener\">Admin Design</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/07/beyond-block-styles-part-1-using-the-wordpress-scripts-package-with-themes/\">Beyond block styles, part 1: using the WordPress scripts package with themes</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/make-your-sites-typography-make-a-statement/\">Make your site’s typography make a statement</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/whats-new-for-developers-july-2023/\">What’s new for developers? (July 2023)</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/how-to-modify-theme-json-data-using-server-side-filters/\">How to modify theme.json data using server-side filters</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/editor-chat-agenda-july-19th-2023/\">Editor Chat Agenda: July 19th, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/dev-chat-agenda-july-19-2023/\">Dev Chat agenda, July 19, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Design</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/design/2023/07/03/design-share-jun-19-jun-30/\">Design Share: Jun 19–Jun&nbsp;30</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/07/18/call-for-volunteers-to-help-with-6-3-end-user-documentation/\">Call for volunteers to help with 6.3 end-user documentation</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/docs/2023/07/18/agenda-for-docs-team-bi-weekly-meeting-july-18-2023/\">Agenda for Docs Team bi-weekly meeting July 18, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/17/documentation-team-update-july-17-2023/\">Documentation Team Update – July 17, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/2023/07/11/hosting-team-meeting-agenda-2023-07-12/\">Hosting Team meeting agenda 2023-07-12</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/hosting/2023/05/15/is-wordpress-compatible-with-php-8/\">Is WordPress compatible with PHP 8?</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/marketing\">Marketing</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/marketing/2023/06/26/notes-global-marketing-team-meeting-20-june-2023/\">Notes: Global Marketing Team meeting, 20 June 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/marketing/2023/06/19/notes-global-marketing-team-meeting-13-june-2023/\">Notes: Global Marketing Team meeting, 13 June 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/06/20/make-team-dashboards/\">Make Team Dashboards</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/15/triaging-open-issues-on-trac-for-make-teams/\">Triaging open issues on Trac for Make Teams</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/13/new-filter-controls-discover-commercial-and-community-in-the-theme-and-plugin-directory/\">New Filter Controls: Discover “Commercial” and “Community” in the Theme and Plugin Directory</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/11/linking-to-supporting-orgs/\">Linking to Supporting Orgs</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/09/new-curation-filter-in-pattern-directory/\">New curation filter in Pattern Directory</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/updates/2023/07/12/mobile-team-update-july-12th/\">Mobile Team Update – July 12th</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/mobile/2023/04/11/contribute-to-the-future-of-the-wordpress-app/\">Contribute to the Future of the WordPress App</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/12/mobile-team-update-july-12th/\">Mobile Team Update – July 12th</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/07/18/community-meeting-recap-2023-07-18/\">Community Meeting Recap (2023-07-18)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/17/last-week-openverse-2023-07-10-2023-07-17/\">A week in Openverse: 2023-07-10 – 2023-07-17</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" 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/07/18/performance-chat-summary-18-july-2023/\">Performance Chat Summary: 11 July 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2023/06/29/plugin-review-team-update-the-next-phase-begins/\">Plugin Review Team Update: The next phase begins</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/17/plugin-review-team-17-jul-2023/\">Plugin Review Team: 17 Jul 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/19/weekly-polyglots-chat-july-19-2023-1300-utc/\">Weekly Polyglots Chat – July 19, 2023 (13:00 UTC)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/18/wordpress-6-3-ready-to-be-translated/\">WordPress 6.3 ready to be translated</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/07/13/proposal-for-establishing-a-make-diversity-equity-inclusion-and-belonging-deib-team-within-the-wordpress-community/\">Proposal for Establishing a Make Diversity, Equity, Inclusion, and Belonging (“DEIB”) Team within the WordPress Community</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Support</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2023/06/wp-contributor-mentorship-program-support-team-edition/\">WP Contributor Mentorship Program: Support team edition</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/07/14/sustainability-chat-summary-july-14-2023/\">Sustainability Chat Summary, July 14, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/07/12/themes-team-update-july-12-2023/\">Themes team update July 12, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/themes/2023/07/13/themes-team-meeting-notes-july-11-2023/\">Themes Team Meeting Notes –&nbsp;July 11, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/learn-wordpress-july-2023-newsletter/\">Learn WordPress July 2023 Newsletter</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/07/10/training-team-2023-half-year-review/\">Training Team 2023 Half Year Review</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/07/08/next-steps-for-github-updates/\">Next steps for GitHub updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/07/08/announcement-updates-to-team-meeting-times/\">Announcement: Updates to team meeting times</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/07/07/project-thread-learning-pathways-on-learn-wordpress/\">Project Thread: Learning Pathways on Learn WordPress</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" 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/it-choosing-and-installing-a-theme/\">Scegliere e installare un tema</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/7-tips-to-improve-website-security/\">7 Tips to improve website security</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=testing-wordpress-6-3\">Testing WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=come-join-the-wordpress-training-team-4\">Come join the WordPress Training Team!</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-validate-content-feedback-for-the-wordpress-training-team-3\">How to validate content feedback for the WordPress Training Team</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-validate-content-feedback-for-the-wordpress-training-team-2\">How to validate content feedback for the WordPress Training Team</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=mentorship-program-introduction-to-the-wordpress-open-source-project\">Mentorship Program: Introduction to the WordPress Open Source Project</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" 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/developing-with-the-wordpress-rest-api/\">Introduction to developing with the WordPress REST API</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/tv\">WordPress TV</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/tv/2023/06/15/enhancing-slide-management-for-video-publications/\">Enhancing Slide Management for Video Publications</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordCamp Central</h2>\n\n\n\n<ul>\n<li><a href=\"https://central.wordcamp.org/news/2023/07/wordcamp-dhaka-2023-has-been-cancelled/\">WordCamp Dhaka 2023 Has Been Cancelled</a></li>\n\n\n\n<li><a href=\"https://central.wordcamp.org/news/2023/07/wordcamp-rochester-is-back/\">WordCamp Rochester is Back!</a></li>\n\n\n\n<li><a href=\"https://central.wordcamp.org/news/2023/07/wordcamp-san-jose-2023-looking-for-speakers-and-sponsors/\">WordCamp San José 2023: Looking For Speakers And Sponsors!</a></li>\n\n\n\n<li><a href=\"https://central.wordcamp.org/news/2023/06/wordcamp-finland-back-to-tampere-with-educational-insightful-and-thought-provoking-talks/\">WordCamp Finland: back to Tampere with educational, insightful and thought-provoking talks</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/\">jQuery 3.7.0</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-1\">PHP 8.3.0 Alpha 3 available for testing</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\"></a><a href=\"https://www.php.net/archive/2023.php#2023-07-06-2\">PHP 8.2.8 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-3\">PHP 8.1.21 Released!</a></li>\n\n\n\n<li><a href=\"https://github.com/PHPMailer/PHPMailer/releases/tag/v6.8.0\">PHPMailer 6.8.0</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/\">TC39</a></li>\n\n\n\n<li><a href=\"http://github.com/composer/composer/releases/tag/2.5.8\">Composer 2.5.8</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>   <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&#8217; <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It&#8217;s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>.  </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://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:\"Sat, 19 Aug 2023 03:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:96:\"Post Status: WordPress 6.3 Beta 4 • Help Test • DEIB New Team Proposal • Gutenberg Phase 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://poststatus.com/wordpress-6-3-beta-4-help-test-deib-new-team-proposal/\";s:7:\"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://poststatus.com/wordpress-6-3-beta-4-help-test-deib-new-team-proposal/\";s: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:22073:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (July 11, 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.3 is less than one month away. Get started testing now and tune in for the live product demo. As we head into WordPress 6.4&#8217;s kickoff, it&#8217;s time to set our sights on Gutenberg Phase 3: Collaborative Editing. Your feedback to the ideas presented is important. The first cohort of New Contributor Mentorship Program&hellip; </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box_94d1bd-77\"><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=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\"> WP 6.3, DEIB, Mentorship, Phase 3</h2><p class=\"kt-blocks-info-box-text\">β <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-beta-4/\">WordPress 6.3 Beta 4</a><br /><br />  <a href=\"https://wordpress.org/news/2023/07/6-3-live-product-demo/\">6.3 Live Product Demo</a><br /><br /> &#x200d;  <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a><br /><br />3&#x20e3; <a href=\"https://make.wordpress.org/core/tag/phase-3/\">Gutenberg Phase 3</a><br /><br /> &#x200d;  <a href=\"https://make.wordpress.org/updates/2023/07/12/xpost-announcing-the-inaugural-cohort-of-the-wordpress-contributor-mentorship-program/\">Contributor Mentorship Program!</a><br />><br /></a><br /><br />><br /></a><br /><br /></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_b57166-6e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-beta-4/\">WordPress 6.3 Beta 4</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/6-3-live-product-demo/\">6.3 Live Product Demo</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/06/people-of-wordpress-allison-dye/\">People of WordPress: Allison Dye</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/episode-59-a-polyglots-wordpress/\">WP Briefing: Episode 59: A Polyglot’s WordPress</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-50 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-48 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\">WordPress 6.3</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/30/6-3-release-parties-schedule-and-hosts/\">6.3 Release Parties Schedule and hosts</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">WordPress 6.3 Beta 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/05/25/wordpress-6-3-design-kickoff/\">WordPress 6.3 design kickoff</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/25/bug-scrub-schedule-for-6-3/\">Bug Scrub Schedule for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/wordpress-6-3-planning-roundup/\">WordPress 6.3 Planning Roundup</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\">Roadmap to 6.3</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2023/07/07/accessibility-team-meeting-agenda-july-7-2023/\">Accessibility Team Meeting Agenda: July 7, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/07/12/xpost-announcing-the-inaugural-cohort-of-the-wordpress-contributor-mentorship-program/\">Contributor Mentorship Program!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/07/13/new-handbook-page-for-wordcamp-organizers-wordcamp-speaker-selection-for-content-and-diversity/\">New handbook page for WordCamp Organizers: WordCamp Speaker Selection (for content AND diversity)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/07/12/summary-of-the-q2-community-team-role-updates/\">Summary of the Q2 Community Team Role Updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/07/12/announcing-the-inaugural-cohort-of-the-wordpress-contributor-mentorship-program/\">Announcing the Inaugural Cohort of the WordPress Contributor Mentorship Program!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/07/05/community-team-meeting-agenda-for-6-july-2023/\">Community Team Meeting Agenda for 6 July, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/07/05/wcus-2023-contributor-day-help-needed/\">WCUS 2023 Contributor Day: Help Needed!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/07/05/wcus-2023-contributor-day-what-should-we-work-on/\">WCUS 2023 Contributor Day: What should we work on?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/07/03/incident-report-recent-cancelation-of-a-wordcamp/\">Incident Report: Recent Cancelation of a WordCamp</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/07/03/wordcamp-mentors-july-check-in/\">WordCamp Mentors’ July check-in!</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/2023/06/29/hallway-hangout-performance-improvements-for-wordpress-6-3/\">Hallway Hangout: Performance Improvements for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/a-week-in-core-july-10-2023/\">A Week in Core – July 10, 2023</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Phase 3 Ideations</h3>\n\n\n\n<ul>\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\" rel=\"noreferrer noopener\">Real-Time Collaboration</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/04/workflows/\" rel=\"noreferrer noopener\">Workflows</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/05/revisions/\" rel=\"noreferrer noopener\">Revisions</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/07/media-library/\" rel=\"noreferrer noopener\">Media Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/10/block-library/\" rel=\"noreferrer noopener\">Block Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/12/admin-design/\" rel=\"noreferrer noopener\">Admin Design</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/06/the-style-book-a-one-stop-shop-for-styling-block-themes/\">The Style Book: a one-stop shop for styling block themes</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/06/navigating-the-block-editor-handbook/\">Navigating the Block Editor Handbook</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/06/upgrading-the-site-editing-experience-with-custom-template-part-areas/\">Upgrading the site-editing experience with custom template part areas</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/12/dev-chat-summary-july-12-2023-2/\">Dev Chat Summary: July 12, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/12/developer-blog-editorial-meeting-06-june-2023/\">Developer Blog Editorial Meeting – 06 July 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Design</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/design/2023/07/03/design-share-jun-19-jun-30/\">Design Share: Jun 19–Jun&nbsp;30</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/07/12/xpost-announcing-the-inaugural-cohort-of-the-wordpress-contributor-mentorship-program/\">Contributor Mentorship Program!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/docs/2023/07/06/summary-for-docs-team-meeting-jul-04-2023/\">Summary for Docs Team Meeting, Jul 04, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/2023/07/11/hosting-team-meeting-agenda-2023-07-12/\">Hosting Team meeting agenda 2023-07-12</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/hosting/2023/05/15/is-wordpress-compatible-with-php-8/\">Is WordPress compatible with PHP 8?</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/06/20/make-team-dashboards/\">Make Team Dashboards</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/15/triaging-open-issues-on-trac-for-make-teams/\">Triaging open issues on Trac for Make Teams</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/13/new-filter-controls-discover-commercial-and-community-in-the-theme-and-plugin-directory/\">New Filter Controls: Discover “Commercial” and “Community” in the Theme and Plugin Directory</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/11/linking-to-supporting-orgs/\">Linking to Supporting Orgs</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/09/new-curation-filter-in-pattern-directory/\">New curation filter in Pattern Directory</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/2023/04/11/contribute-to-the-future-of-the-wordpress-app/\">Contribute to the Future of the WordPress App</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/12/mobile-team-update-july-12th/\">Mobile Team Update – July 12th</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" 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/07/12/community-meeting-recap-2023-07-11/\">Community Meeting Recap (2023-07-11)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/10/last-week-openverse-2023-07-03-2023-07-10/\">A week in Openverse: 2023-07-03 – 2023-07-10</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/05/priorities-meeting-recap-2023-07-05/\">Priorities Meeting Recap 2023-07-05</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/05/community-meeting-recap-2023-07-04/\">Community Meeting Recap (2023-07-04)</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/07/11/performance-chat-summary-11-july-2023/\">Performance Chat Summary: 11 July 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2023/06/29/plugin-review-team-update-the-next-phase-begins/\">Plugin Review Team Update: The next phase begins</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/12/agenda-weekly-polyglots-chat-july-12-2023-0700-utc/\">Agenda: Weekly Polyglots Chat – July 12, 2023 (07:00 UTC)</a></li>\n</ul>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/06/28/agenda-weekly-polyglots-chat-june-28-2023-0700-utc/\">Agenda: Weekly Polyglots Chat – June 28, 2023 (07:00 UTC)</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/07/13/proposal-for-establishing-a-make-diversity-equity-inclusion-and-belonging-deib-team-within-the-wordpress-community/\">Proposal for Establishing a Make Diversity, Equity, Inclusion, and Belonging (“DEIB”) Team within the WordPress Community</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Support</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2023/06/wp-contributor-mentorship-program-support-team-edition/\">WP Contributor Mentorship Program: Support team edition</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/06/30/sustainability-chat-summary-june-30-2023/\">Sustainability Chat Summary, June 30, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/updates/2023/07/10/test-team-update-10-july-2023/\">Test Team Update: 10 July 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/07/12/themes-team-update-july-12-2023/\">Themes team update July 12, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/themes/2023/07/13/themes-team-meeting-notes-july-11-2023/\">Themes Team Meeting Notes –&nbsp;July 11, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/learn-wordpress-july-2023-newsletter/\">Learn WordPress July 2023 Newsletter</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/07/10/training-team-2023-half-year-review/\">Training Team 2023 Half Year Review</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/07/08/next-steps-for-github-updates/\">Next steps for GitHub updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/07/08/announcement-updates-to-team-meeting-times/\">Announcement: Updates to team meeting times</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/07/07/project-thread-learning-pathways-on-learn-wordpress/\">Project Thread: Learning Pathways on Learn WordPress</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/07/06/training-team-meeting-recap-4th-july-2023/\">Training Team Meeting Recap – 4th July 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/07/04/expertise-needed-learn-how-to-vet-content-topic-ideas-for-the-training-team/\">Expertise needed: Learn how to vet content topic ideas for the Training Team</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/07/03/training-team-meeting-recap-for-june-27th-2023/\">Training Team Meeting Recap for June 27th, 2023</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" 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/7-tips-to-improve-website-security/\">7 Tips to improve website security</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/categories-vs-tags-whats-the-difference/\">Categories vs. Tags: What’s the difference?</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/debugging-in-wordpress/\">Debugging in WordPress</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/designing-with-row-and-stack-blocks/\">Designing with row and stack blocks</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=testing-wordpress-6-3\">Testing WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=come-join-the-wordpress-training-team-4\">Come join the WordPress Training Team!</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" 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/developing-with-the-wordpress-rest-api/\">Introduction to developing with the WordPress REST API</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordCamp Central</h2>\n\n\n\n<ul>\n<li><a href=\"https://central.wordcamp.org/news/2023/07/wordcamp-dhaka-2023-has-been-cancelled/\">WordCamp Dhaka 2023 Has Been Cancelled</a></li>\n\n\n\n<li><a href=\"https://central.wordcamp.org/news/2023/07/wordcamp-rochester-is-back/\">WordCamp Rochester is Back!</a></li>\n\n\n\n<li><a href=\"https://central.wordcamp.org/news/2023/07/wordcamp-san-jose-2023-looking-for-speakers-and-sponsors/\">WordCamp San José 2023: Looking For Speakers And Sponsors!</a></li>\n\n\n\n<li><a href=\"https://central.wordcamp.org/news/2023/06/wordcamp-finland-back-to-tampere-with-educational-insightful-and-thought-provoking-talks/\">WordCamp Finland: back to Tampere with educational, insightful and thought-provoking talks</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/\">jQuery 3.7.0</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-1\">PHP 8.3.0 Alpha 3 available for testing</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\"><a href=\"https://www.php.net/archive/2023.php#2023-07-06-2\">PHP 8.2.8 Released!</a></a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-3\">PHP 8.1.21 Released!</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/\">TC39</a></li>\n\n\n\n<li><a href=\"http://github.com/composer/composer/releases/tag/2.5.8\">Composer 2.5.8</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>   <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&#8217; <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It&#8217;s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>.  </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://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:\"Sat, 19 Aug 2023 03:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:105:\"Post Status: WordPress 6.3 Beta 2 • Help Test • WPDiversity • Plugin Team Next Phase • Mentorship\";s:7:\"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:100:\"https://poststatus.com/wordpress-6-3-beta-2-help-test-wpdiversity-plugin-team-next-phase-mentorship/\";s:7:\"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/wordpress-6-3-beta-2-help-test-wpdiversity-plugin-team-next-phase-mentorship/\";s: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:21026:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (June 26, 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\">Release season is upon us as we approach WordPress 6.3&#8217;s August 8th release. Your help is needed testing the latest changes. Do you run or attend WordPress events and notice only one type of person is attending? What can you do to be a good ally to foster, promote, and support diversity and an inclusive&hellip; </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box_94d1bd-77\"><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=\"kadence-dynamic-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">WP6.3b2 • Test • WPDiversity • Mentorship • Plugin Team Next Steps</h2><p class=\"kt-blocks-info-box-text\">β <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">WordPress 6.3 Beta 2</a><br /><br /> &#x200d;  <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a><br /><br />  <a href=\"https://make.wordpress.org/community/2023/06/22/attention-wordpress-event-organizers-this-important-workshop-on-july-20-2023-is-for-you/\">Attention WordPress event organizers: This important workshop on July 20, 2023 is for you!</a><br /><br />  <a href=\"https://make.wordpress.org/plugins/2023/06/29/plugin-review-team-update-the-next-phase-begins/\">Plugin Review Team Update: The next phase begins</a><br /><br /> &#x200d;  <a href=\"https://make.wordpress.org/project/2023/06/23/launch-your-wordpress-contributor-journey-through-the-mentorship-program-pilot/\">Launch your WordPress Contributor Journey through the Mentorship Program Pilot</a><br /><br /></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_b57166-6e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/06/people-of-wordpress-allison-dye/\">People of WordPress: Allison Dye</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">WordPress 6.3 Beta 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/06/episode-58-a-new-wave-for-wordpress-events/\">WP Briefing: Episode 58: A New Wave for WordPress Events</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-55 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-53 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\">WordPress 6.3</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/06/30/6-3-release-parties-schedule-and-hosts/\">6.3 Release Parties Schedule and hosts</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">WordPress 6.3 Beta 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/05/25/wordpress-6-3-design-kickoff/\">WordPress 6.3 design kickoff</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/25/bug-scrub-schedule-for-6-3/\">Bug Scrub Schedule for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/wordpress-6-3-planning-roundup/\">WordPress 6.3 Planning Roundup</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\">Roadmap to 6.3</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2023/06/16/accessibility-team-meeting-notes-june-16-2023/\">Accessibility Team Meeting Notes: June 16, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/06/29/recap-of-the-diverse-speaker-training-group-wpdiversity-amer-emea-on-june-28-2023/\">Recap of the Diverse Speaker Training group (#WPDiversity) AMER/EMEA on June 28, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/06/22/attention-wordpress-event-organizers-this-important-workshop-on-july-20-2023-is-for-you/\">Attention WordPress event organizers: This important workshop on July 20, 2023 is for you!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/06/21/meetup-organizer-newsletter-june-2023/\">Meetup Organizer Newsletter: June 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/06/21/wceu-2023-community-table-recap/\">WCEU 2023 Community Table Recap</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/06/19/next-generation-of-wordpress-events-updates/\">Next Generation of WordPress Events: Updates</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/2023/06/29/hallway-hangout-performance-improvements-for-wordpress-6-3/\">Hallway Hangout: Performance Improvements for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/29/whats-new-in-gutenberg-16-1-29-june/\">What’s new in Gutenberg 16.1? (29 June)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/27/a-week-in-core-june-26-2023/\">A Week in Core – June 26, 2023</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/06/the-style-book-a-one-stop-shop-for-styling-block-themes/\">The Style Book: a one-stop shop for styling block themes</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/06/navigating-the-block-editor-handbook/\">Navigating the Block Editor Handbook</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/06/upgrading-the-site-editing-experience-with-custom-template-part-areas/\">Upgrading the site-editing experience with custom template part areas</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/06/27/dev-chat-summary-june-21-2023/\">Dev Chat Summary: June 21, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/26/editor-chat-agenda-june-28th-2023/\">Editor Chat Agenda: June 28th, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Design</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/design/2023/05/25/wordpress-6-3-design-kickoff/\">WordPress 6.3 design kickoff</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/06/06/design-share-may-22-jun-2/\">Design Share: May 22–Jun 2</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/06/23/online-monthly-docs-team-contributor-day-june-27-2023/\">Online monthly Docs Team Contributor Day June 27, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/docs/2023/06/23/summary-for-docs-team-meeting-june-20-2023/\">Summary for Docs Team meeting, June 20, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/2023/06/28/hosting-team-meeting-agenda-2023-06-28/\">Hosting Team meeting agenda 2023-06-28</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/hosting/2023/05/15/is-wordpress-compatible-with-php-8/\">Is WordPress compatible with PHP 8?</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/06/20/make-team-dashboards/\">Make Team Dashboards</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/15/triaging-open-issues-on-trac-for-make-teams/\">Triaging open issues on Trac for Make Teams</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/13/new-filter-controls-discover-commercial-and-community-in-the-theme-and-plugin-directory/\">New Filter Controls: Discover “Commercial” and “Community” in the Theme and Plugin Directory</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/11/linking-to-supporting-orgs/\">Linking to Supporting Orgs</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/09/new-curation-filter-in-pattern-directory/\">New curation filter in Pattern Directory</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/2023/04/11/contribute-to-the-future-of-the-wordpress-app/\">Contribute to the Future of the WordPress App</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/06/30/catalog-performance-testing-results/\">Catalog Performance Testing Results</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/06/27/community-meeting-recap-2023-06-27/\">Community Meeting Recap (2023-06-27)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/06/26/last-week-openverse-2023-06-19-2023-06-26/\">A week in Openverse: 2023-06-19 – 2023-06-26</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/06/27/performance-chat-summary-27-june-2023/\">Performance Chat Summary: 27 June 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2023/06/29/plugin-review-team-update-the-next-phase-begins/\">Plugin Review Team Update: The next phase begins</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/06/28/agenda-weekly-polyglots-chat-june-28-2023-0700-utc/\">Agenda: Weekly Polyglots Chat – June 28, 2023 (07:00 UTC)</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/06/23/launch-your-wordpress-contributor-journey-through-the-mentorship-program-pilot/\">Launch your WordPress Contributor Journey through the Mentorship Program Pilot</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Support</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2023/06/wp-contributor-mentorship-program-support-team-edition/\">WP Contributor Mentorship Program: Support team edition</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/06/30/sustainability-chat-summary-june-30-2023/\">Sustainability Chat Summary, June 30, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/06/07/fse-program-testing-call-24-momery-makeover/\">FSE Program Testing Call #24: Momery Makeover</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/06/28/themes-team-meeting-notes-june-27-2023/\">Themes Team Meeting Notes – June 27, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/06/24/proposal-lets-actively-promote-the-learn-wordpress-platform-in-learn-wordpress-content/\">Proposal: Let’s actively promote the Learn WordPress platform in Learn WordPress content</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/06/22/training-team-meeting-recap-20th-june-2023/\">Training Team Meeting Recap – 20th June 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/06/20/proposal-new-contributor-guide-program/\">Proposal: New Contributor Guide Program</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/06/19/brainstorm-table-lead-wordcamp-us-2023-contributor-day/\">Brainstorm &amp; Table Lead – WordCamp US 2023 Contributor Day</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" 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/developing-for-multisite/\">Developing for Multisite</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/how-to-start-using-wordpress-playground/\">How to start using WordPress Playground</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/wpphotos-moderator-training/\">WPPhotos Moderator Training</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/using-the-block-editor-tips-and-shortcuts-for-efficiency/\">Using the block editor: Tips and shortcuts for efficiency</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/using-headings-for-accessibility-and-seo/\">How to use headings for accessibility and&nbsp;SEO</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/advanced-multisite-management/\">Advanced Multisite Management</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/fr-the-difference-between-reusable-blocks-block-patterns-templates-and-template-parts/\">Différences entre blocs réutilisables, compositions de blocs, modèles et éléments de modèle</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=common-wordpress-apis-dashboard-widgets\">Common WordPress APIs: Dashboard Widgets</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-8\">WP dev livestream: Sendig block theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=introducing-domains-4\">Introducing… Domains!</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=introducing-domains-3\">Introducing… Domains!</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=tips-and-shortcuts-for-using-the-block-editor-streamlining-content-creation-apac\">Tips and shortcuts for using the block editor &amp; streamlining content creation (APAC)</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=tips-and-shortcuts-for-using-the-block-editor-streamlining-content-creation\">Tips and shortcuts for using the block editor &amp; streamlining content creation</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=using-the-row-and-stack-blocks-apac\">Using the row and stack blocks (APAC)</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-7\">WP dev livestream: Sendig block theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=custom-tables-in-wordpress\">Custom tables in WordPress</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=developer-hours-exploring-editor-extensibility\">Developer Hours: Exploring Editor Extensibility</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=hallway-hangout-lets-chat-about-wordpress-6-3-and-block-theming\">Hallway Hangout: Let’s chat about WordPress 6.3 and block theming</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=the-wordpress-developer-quiz\">The WordPress developer Quiz</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-can-chat-gpt-help-wordpress-developers-and-designers\">How can Chat GPT help WordPress developers and designers?</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-set-up-a-free-wordpress-test-website-and-explore-code-2\">How to set up a free WordPress test website (and explore code!)</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" 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/creating-a-4-page-business-website/\">Creating a 4-page business website</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/\">jQuery 3.7.0</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-04-13-1\"></a><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\">PHP 8.2.6 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-2\">PHP 8.1.19 Released!</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/13.0/\">TC39</a></li>\n\n\n\n<li><a href=\"https://github.com/composer/composer/releases/tag/2.5.5\">Composer 2.5.5</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>   <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&#8217; <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It&#8217;s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>.  </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://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:\"Sat, 19 Aug 2023 03:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:80:\"Post Status: The WP Agency Journey with Rob Cairns of Stunning Digital Marketing\";s:7:\"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:91:\"https://poststatus.com/the-wp-agency-journey-with-rob-cairns-of-stunning-digital-marketing/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://poststatus.com/the-wp-agency-journey-with-rob-cairns-of-stunning-digital-marketing/\";s: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:46702:\"<div class=\"wp-block-embed__wrapper\">\n\n</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 class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\">In this episode, <a href=\"https://twitter.com/corymiller303\">Cory Miller</a>, CEO of <a href=\"https://poststatus.com/\">Post Status</a>, and <a href=\"https://twitter.com/RobCairns\">Rob Cairns</a>, Founder, CEO, and Chief Creator of Amazing Ideas at <a href=\"https://stunningdigitalmarketing.com/\">Stunning Digital Marketing</a>, discuss the importance of website security, client communication, and managing client expectations. They also talk about the need for businesses to treat their websites as valuable assets and allocate budgets for their maintenance and security. Websites have become an integral part of modern business operations, especially with the impact of the COVID-19 pandemic.</p>\n\n\n\n<p class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"><strong>Top Takeaways:</strong></p>\n\n\n\n<ul type=\"video\" class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\">\n<li><strong>Website Security and Budgeting</strong>: Businesses must prioritize website security and allocate appropriate budgets for maintenance and protection. Websites are now integral to modern business operations, and their value should be recognized and treated as essential as physical security measures.</li>\n\n\n\n<li><strong>Effective Client Communication</strong>: Clear and proactive communication with clients is crucial. Agencies should manage client expectations, set boundaries, and communicate any limitations, such as response times during vacations or other periods of unavailability. Managing client communication helps build trust and ensures a smoother working relationship.</li>\n\n\n\n<li><strong>Community Engagement and Personal Well-being</strong>: Engaging with the WordPress community and participating in events like WordCamps can be valuable for networking, knowledge sharing, and staying updated with industry trends. Additionally, individuals need to prioritize their own well-being and take care of their health.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\"><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<div class=\"wp-block-columns has-theme-palette-8-background-color has-background is-layout-flex wp-container-58 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n\n\n<p>A2Hosting offers solutions for WordPress and WooCommerce that are both blazing fast and ultra-reliable. WordPress can be easily deployed on ANY web hosting plan from A2: Shared, VPS, or Dedicated. A2 also offers Managed WordPress and WooCommerce Hosting. Take a look at a2hosting.com today!</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<img width=\"752\" height=\"470\" src=\"https://poststatus.com/wp-content/uploads/2022/08/imageedit_1_6433774706-752x470.png\" alt=\"A2 Hosting\" class=\"wp-image-104073\" />A2 Hosting\n</div>\n</div>\n\n\n\n<h3 class=\"wp-block-heading eplus-wrapper\" id=\"h-mentioned-in-the-show\">  Mentioned in the show<strong>:</strong></h3>\n\n\n\n<ul>\n<li><a href=\"https://www.lastpass.com/\">LastPass</a></li>\n\n\n\n<li><a href=\"https://twitter.com/kathyzant?lang=en\">Kathy</a>&nbsp;</li>\n\n\n\n<li><a href=\"https://poststatus.com/\">Post Status</a></li>\n\n\n\n<li><a href=\"https://buffalo.wordcamp.org/2023/\">WordCamp Buffalo</a></li>\n\n\n\n<li><a href=\"https://montclair.wordcamp.org/2023/\">WordPress Montclair</a></li>\n\n\n\n<li><a href=\"https://www.linkedin.com/\">LinkedIn</a></li>\n\n\n\n<li><a href=\"https://twitter.com/courtneyr_dev\">Courtney Robertson</a></li>\n\n\n\n<li><a href=\"https://wordpress.com/\">WordPress</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading eplus-wrapper\" id=\"h-you-can-follow-post-status-and-our-guests-on-twitter\">  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/RobCairns\">Rob Cairns</a> (Founder, CEO, &amp; Chief Creator of Amazing Ideas, <a href=\"https://stunningdigitalmarketing.com/\">Stunning Digital Marketing</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.  <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>.  </p>\n\n\n\n<h2 class=\"wp-block-heading eplus-wrapper\" id=\"h-transcript\">Transcript</h2>\n\n\n\n<p>Cory Miller (00:00:00) &#8211; All right. Hey, everybody. Welcome back to Post Edits Draft. We&#8217;ve got another interview in our series on agency journeys. And I&#8217;m talking to a long time friend of mine, Rob Carnes, who has been very active in post. It&#8217;s been to a bunch of our meetups and I&#8217;m really excited to share his story today. So Rob, thanks for being on The Post podcast.</p>\n\n\n\n<p>Rob Cairns (00:00:21) &#8211; My pleasure, Corey. Glad to be here.</p>\n\n\n\n<p>Cory Miller (00:00:24) &#8211; Well, Rob, let&#8217;s dive in. Tell us a little bit about yourself and your agency today. Name and what you do. What kind of work primarily you do for your clients.</p>\n\n\n\n<p>Rob Cairns (00:00:34) &#8211; Okay, So my name is Rob Cairns. I&#8217;m in the greater Toronto area of Toronto, Ontario, Canada. I should tell you, before I got into running an agency, I have a very tech heavy background which a lot of agency owners don&#8217;t have. So I come out of an enterprise healthcare environment, doing servers, doing all kinds of cool stuff to support one of Toronto&#8217;s biggest hospitals.</p>\n\n\n\n<p>Rob Cairns (00:00:58) &#8211; Before that I was actually an old time COBOL programmer. There&#8217;s probably a word that you haven&#8217;t heard in a long, long time, and I spent some time in the financial industry, so I&#8217;ve got a bit of a business background. And then I jumped into agency life because, you know, I always tell the story. I never planned to be in marketing because I had a marketing professor in school back in the 80s who came in the class, and her whole thing was, Oh, I&#8217;m good. I&#8217;m here because I want my summers off. And I said, I swore then in there I&#8217;d never be a marketer if you paid me money to. Well, I lied. So, yeah. And I run I run an agency that&#8217;s WordPress focused. A lot of it is WordPress security stuff right now and some builds and then a lot of email marketing and consulting these days. That&#8217;s kind of where I&#8217;m at.</p>\n\n\n\n<p>Cory Miller (00:01:50) &#8211; Yeah. And what&#8217;s your agency name?</p>\n\n\n\n<p>Rob Cairns (00:01:53) &#8211; Stunning digital marketing.</p>\n\n\n\n<p>Cory Miller (00:01:55) &#8211; And what&#8217;s the website for your.</p>\n\n\n\n<p>Rob Cairns (00:01:58) &#8211; Digital marketing is the agency site and digital marketing.info is like my Linktree site. It&#8217;s got links to everything I do on the web and where you can find me.</p>\n\n\n\n<p>Cory Miller (00:02:09) &#8211; Excellent. Excellent. Well, I know as I&#8217;ve gotten to know you through some of the meetups, too, I hear more and more about the work you do, and it always impresses me. You&#8217;re like, Hey, is anybody worried about this particular update? And and I know you managed quite a few sites and it always I always like lean in when you talk about that because it&#8217;s at the heart of what a lot of agency work, particularly at post is that our agencies do is that beast of maintaining WordPress across multiple WordPress client sites. Well, great. Thank you for that. So tell me a little bit about how you got there. I heard a little preface of that, but I wanted to start out with where you are today. Um, and then talk about how you got there. That&#8217;s always the compelling part of these Journey series to me is what happened before.</p>\n\n\n\n<p>Cory Miller (00:02:59) &#8211; So this is today and then what? What&#8217;s a little snippet of how what led up to where you are today?</p>\n\n\n\n<p>Rob Cairns (00:03:06) &#8211; So where I am today was kind of how I got there was us working in healthcare. I wasn&#8217;t happy, I&#8217;ll tell you that now. I was working probably 60 to 70 hours a week at the time. So this is going back 14 years ago was when we started and I was extremely unhappy and somebody said to me, So why don&#8217;t you just go? And I said, Well, I&#8217;ve been here 21 years, so if they want to get rid of me, it&#8217;s going to cost some lots of money to get rid of me. So let&#8217;s force the hand and see where it goes. Well, 14 years ago, my dad was sick with pancreatic cancer at the time he actually passed away July 8th, the anniversary that&#8217;s coming up. And they decided, knowing I was going to be taking some time off, they decided we need to we&#8217;re going to make some changes and you can go away.</p>\n\n\n\n<p>Rob Cairns (00:03:56) &#8211; And at that point, I was already building WordPress websites on the side. So I just kind of transitioned to what I was doing on the side full time. Now here&#8217;s where it got interesting. I decided really quickly only building the website, it&#8217;s only part of getting it out there. You still got a market that site and you got to do it properly. So I made a decision then and there. I was going to build a full stack marketing agency. I&#8217;ve taken some courses, a lot of courses. One of my mentors in this space is a gentleman by the name of Paul Tobey, who I&#8217;m founder of. Paul. Toby&#8217;s actually the father of Adrian Toby, the founder of Groundhog, who you know. So that&#8217;s.</p>\n\n\n\n<p>Cory Miller (00:04:40) &#8211; Love.</p>\n\n\n\n<p>Rob Cairns (00:04:40) &#8211; Adrian Yeah, love Adrian, Love. His dad saw his dad in January, actually, and we sat in his house and listened to him play some jazz tunes for us where we were visiting and and then transitioned in and at one time was offering all kinds of services and then just realized some of these are just don&#8217;t want to do so I just kind of niche down and got out of what I didn&#8217;t want to do so.</p>\n\n\n\n<p>Cory Miller (00:05:10) &#8211; Got you. So how long ago did you go? Full time with the business?</p>\n\n\n\n<p>Rob Cairns (00:05:16) &#8211; 14 years ago.</p>\n\n\n\n<p>Cory Miller (00:05:18) &#8211; 14 years ago. Okay. That&#8217;s awesome. We were going strong about the same time.</p>\n\n\n\n<p>Rob Cairns (00:05:22) &#8211; Yeah, about same time. And you. And you and I connected, I think the first time about 14 years ago when I was in the headway community. And you were running the items community. And you&#8217;d be proud to know two of the products in my security stack back up by the in 19 security are still there to this day so.</p>\n\n\n\n<p>Cory Miller (00:05:40) &#8211; Oh that&#8217;s fantastic to hear. Well, okay, So I&#8217;m really curious. Was there a point when you were like, doing this on the side? What was that juncture when you&#8217;re like, okay, I&#8217;m going to do this full time? A lot of the stories we hear, I hear in It&#8217;s My Own is some event. Something helped kind of catalyze the process to become a full time entrepreneur. And so I&#8217;m curious. So not happy, of course. And then, hey, I think you might have mentioned this just a second ago, but I want to make sure I&#8217;m clear on it.</p>\n\n\n\n<p>Cory Miller (00:06:13) &#8211; So was there event that kind of like, okay, I&#8217;m doing this full time, this is the only thing I&#8217;m doing.</p>\n\n\n\n<p>Rob Cairns (00:06:18) &#8211; So my as I say, my dad was battling pancreatic cancer at the time. Oh, right. Yeah. I went on three weeks vacation after I was on the corporate project, number one, and amassing overtime like nothing. And I walked back in on a Monday morning. I got a call from the director&#8217;s secretary at 10 a.m. and say, Director won&#8217;t see you in a boardroom at 3:00. And the boardroom was not the normal boardroom for meetings. So I just kind of put my feet up and said, okay, I know how this day&#8217;s going to play out. Welcome back from vacation for me. And believe it or not, I actually shipped everything personal home from work at lunchtime in a cab because I saw the writing on the wall. I&#8217;d seen it on the wall for a while. Yeah. Then I get, um, I get called in and the director says, Do you know why you&#8217;re here? I said, So you&#8217;re going to let me go, so let&#8217;s just get it over with.</p>\n\n\n\n<p>Rob Cairns (00:07:16) &#8211; And the h.r. Manager turned to me and said, how do you how do you feel about all this? And my response at the time was, my lawyer will tell you at 9:00 tomorrow morning. Now you&#8217;re like no other comment.</p>\n\n\n\n<p>Cory Miller (00:07:27) &#8211; Now at this time, you were already doing things on the side, though, right? Yeah, I think that&#8217;s important to note in the story because, you know, some of these events that happen, but you were already kind of testing the waters, building some kind of side hustle side gig on the side. So you didn&#8217;t just, you know, jump out into the ether. You had something kind of built up. Were you doing work for like client? I mean, friends? How did the the side gig kind of start parallel to that side gig?</p>\n\n\n\n<p>Rob Cairns (00:07:59) &#8211; Actually, it&#8217;s really interesting you ask that question. Being in tech, I&#8217;m like a resource in my family and you can appreciate that. So I did go to the let&#8217;s send an email to let&#8217;s ask the question.</p>\n\n\n\n<p>Rob Cairns (00:08:13) &#8211; And I actually got fed up with family, believe it or not, and I wrote a website at that time was HTML and said, by the way, here&#8217;s all the family pictures from the event last week because I was also the manager of all that digital stuff. And by the way, here&#8217;s links to all the questions you guys asked me and nobody&#8217;s allowed to ask me a question until you go to these links and and actually do your own homework. So that was my start into domains and all of that and web stuff. And the other thing that started it was this is going back to the days of dial and dialing Internet providers, if we remember those days. Yep. And trauma, they were a dime a dozen. So I used to switch providers, i.e. email services more than most people because I get fed up with one dial in provider and I cancel. I go to another one, I cancel, I go to another one, I cancel. So I finally said, Forget this, I&#8217;m going to register a domain which I still have to this day.</p>\n\n\n\n<p>Rob Cairns (00:09:15) &#8211; And then that was kind of my foray in. And then after doing static sites, I realized WordPress was the way to go and that&#8217;s what kind of opened the door.</p>\n\n\n\n<p>Cory Miller (00:09:24) &#8211; So what was your introduction to WordPress? What kind of time period did you start using?</p>\n\n\n\n<p>Rob Cairns (00:09:28) &#8211; WordPress would have been about 16, 15 years ago. 16 years ago?</p>\n\n\n\n<p>Cory Miller (00:09:32) &#8211; Yeah, right. Right. In its first early heyday for sure. That&#8217;s about the same time I got started with WordPress, this cool platform that you didn&#8217;t have to manage with all these HTML top software and updated 100 pages you could do with one click. Essentially this concept of content management system was really, really crazy and awesome.</p>\n\n\n\n<p>Rob Cairns (00:09:53) &#8211; We all remember the famous five minute WordPress install where our our hosting providers didn&#8217;t have a one click installer like stop flashes or any of them. We had to do it ourselves, right?</p>\n\n\n\n<p>Cory Miller (00:10:05) &#8211; And yeah, we did it. I mean, I&#8217;m trying to remember when I did that, if it was FTP, you know, putting it on the server.</p>\n\n\n\n<p>Cory Miller (00:10:14) &#8211; Yeah, I&#8217;m trying to think back about that. I use soft tactless quite a bit in the early days, but that was magical back then. If you think about it, it&#8217;s like I want the ability to do build a website and I don&#8217;t have to learn too many technical logistics. I remember googling. What does FTP mean? That was one of our first post that I themes because I was like, if I have this question, I bet you a bunch of other people have this question. But yeah, WordPress made it easy.</p>\n\n\n\n<p>Rob Cairns (00:10:40) &#8211; Yeah. I have to tell you a funny story. You appreciate being over it. I think so. I had a client years ago. It was Australian, one of my first big clients, and he didn&#8217;t see the spending the money on something like backup buddy. So the silly client came back to me and said, So write me the documentation process of tobacco and restore a website menu and document it out. And the story goes that the cost to him paying for that documentation at the time would have cost him more than a yearly license for backup money.</p>\n\n\n\n<p>Rob Cairns (00:11:12) &#8211; Well, even or not. So needless to say, he became a backup buddy. Pretty convert pretty quickly. Corey.</p>\n\n\n\n<p>Cory Miller (00:11:20) &#8211; So. Well, okay, so you go full time with the agency starting to do on work. I know somewhere in there was like, Hey, there&#8217;s more to just the actual website build. There&#8217;s marketing different parts around the website. Um, as you look back, you know, 15 years now, what were some of the catalytic events that help you in your agency, personal professional, WordPress, all these things. If you look back where like 3 or 4 of the things that really made the difference in your agency to where you&#8217;re now, I know you&#8217;ve been doing this a long time. I know you&#8217;ve been able to have freedom of life to do different things in your life as part of the business part of WordPress, which is always the magic, I think, WordPress. But if you look back, what are those couple of things that kind of stand out?</p>\n\n\n\n<p>Rob Cairns (00:12:06) &#8211; Um, a couple of things.</p>\n\n\n\n<p>Rob Cairns (00:12:07) &#8211; One is I come from a family of entrepreneurs, so my mother is 78 years old, still alive and still selling houses, believe it or not. As a real estate agent, my aunt who passed away at 92, was one of the top real estate brokers for Century 21 in the Farmington, Detroit area for many, many years. First successful. I come from a family who&#8217;s done business on their own, so that helps. My father was a CFO for an insurance broker, so that helps. That helped install some money sense into me and some business sense into me. I&#8217;m also a lifelong learner. So you and I have talked over the years about how much reading I do or how much listening to other podcasts. I do believe it or not, my own podcast is not on my podcast player backdrop. I&#8217;m busy listening to everybody else&#8217;s because think you got to get a variety of point. And then kind of just people along the way. People like yourself. People like Paul. Toby Paul was a big catalyst for giving me credit and saying, you know, more than like 75% of the world.</p>\n\n\n\n<p>Rob Cairns (00:13:21) &#8211; Just go after it. So Paul was really good for me around mindset more than just technical stuff, so that was good. And then things like in my life recognizing and you and I have had this conversation about mental health challenges and the whole pearls around that. You&#8217;ve been through it. I&#8217;ve been through it. We&#8217;ve talked about it very candidly together over the years. That has helped. Am probably. 200% more mental health. Healthy today in my 50s and was in my 30s. I would say that, you know.</p>\n\n\n\n<p>Cory Miller (00:13:58) &#8211; I think I want to say ditto. I think I think so.</p>\n\n\n\n<p>Rob Cairns (00:14:02) &#8211; And then surrounding yourself with the right people and people like yourself, people like post others group people like, you know, people outside of the post group, people you can go to and say, Hey, I just need an ear or, Hey, I&#8217;m stuck on something technical. I should know doing that. And then kind of. A big part of all this was deciding a number of years ago that I&#8217;m such a security junkie and I always was, even when I was in health care, and I need to dive into the security space and put my time and money there.</p>\n\n\n\n<p>Rob Cairns (00:14:38) &#8211; And that was a big part of it, too. And that&#8217;s how that came to birth. You mentioned, I imagine, websites as of yesterday&#8217;s count 418, believe it or not, just from an update in security perspective and growing by the day. So.</p>\n\n\n\n<p>Cory Miller (00:14:53) &#8211; It&#8217;s it&#8217;s for sure become a thing in a good part of our industry and community that there&#8217;s agencies like yours and I&#8217;ve talked to a lot that that are recognized WordPress is awesome. There&#8217;s a lot of things that go into it as far as keeping those things updated. So somebody goes, Oh, I built it, you know, I built the baseball field, Field of Dreams. It&#8217;s there. Cool. Everybody&#8217;s going to come to it. There&#8217;s two sides of the coin that&#8217;s really interesting with your story. One is that updates security. Part of it got to keep the field maintained. The other side is the marketing part. I found this fascinating because you&#8217;ve got this to blend of marketing and the really the maintenance said that includes this big topic called security.</p>\n\n\n\n<p>Rob Cairns (00:15:37) &#8211; Yep, it&#8217;s true. And like one of the biggest things I think agency owners don&#8217;t do well is they don&#8217;t manage their own mailing lists, let alone their client mailing lists. And email marketing has become one of my strengths over the years and think that is a big deal because the only thing you really own is your website. In your mailing list. Everything is kind of what we call rented land or other people&#8217;s land in the rules change by the day and it gets to be awful.</p>\n\n\n\n<p>Cory Miller (00:16:07) &#8211; So yeah, yeah, it&#8217;s, it&#8217;s interesting. I&#8217;ve talked to a lot of people. I think a lot of the WordPress community saw one thing from my work at things, but I go, you know, one want to know the key to what we built. There&#8217;s a lot of keys, right? But one of the big keys, especially marketing, was email marketing. And I love how you said website, what you really own, the website and email address. You don&#8217;t even own the rankings. You got to keep working on those things.</p>\n\n\n\n<p>Cory Miller (00:16:32) &#8211; You got to you don&#8217;t even necessarily on the traffic. You got to keep working on those things. But when you have the what click for me with email marketing, was this old school, now old school concept of direct marketing when people used to go door to door and still do of course, to sell something to that person directly. And I think that was when it clicked for me is email is direct marketing where I don&#8217;t control the algorithms and whatever tech billionaire is going to buy another of the social media platforms. But if I consistently build I was actually talking to entrepreneur last week about this, just she&#8217;s just getting started with the physical product. And I said, Hey, you know, all the jazz and the sexiness is out on the social media platforms. However, it&#8217;s a great way to get started, push them, funnel them into an email where you can still to date in 2023, directly market. It still works, but so many are adverse to it or don&#8217;t do the work to keep up their keep up, grow, maintain their email lists and use them properly.</p>\n\n\n\n<p>Rob Cairns (00:17:37) &#8211; And to segment them properly. Mean the big issue is. So I&#8217;ll give you an example. I have an email list that&#8217;s running about 7500 active right now. I&#8217;ve probably got, if you count people have an open stuff in like the last 60 days and probably closer to 1200. So the key is not to send emails to your host, send them to the 7500 that are active and then every six months touch base with the other people once in a while, like because honestly, that&#8217;s waste of time and money. Like don&#8217;t put your emphasis there, but you segment your list and figure out what people want from you and who&#8217;s going to open stuff. And as a result, on that 7500, I run an open rate of about listeners about 62% on a regular basis. Which is incredible.</p>\n\n\n\n<p>Cory Miller (00:18:29) &#8211; Yeah, indeed. And it all takes work. Websites, take work, emails take a work to properly do it well. So. So you know, a couple of the things I&#8217;m interested in. The last 15 years or so you&#8217;ve been doing, this is what you&#8217;ve seen kind of transition the evolution of WordPress you know, from and websites within that.</p>\n\n\n\n<p>Cory Miller (00:18:53) &#8211; So you know how WordPress has gone in the last 15 years. Where do you think it is now? Where do you think it&#8217;s going in the future, what your clients are seeing and value in as part of having a great web presence? And I&#8217;m curious your thoughts on those two things. So the underlying technology has grown 15 years. We just celebrated 20th anniversary of WordPress, which is just fascinating to me. Um, and then, you know, this, this changing perception, I think growing, valuing perception of websites, the value of having a WordPress type website.</p>\n\n\n\n<p>Rob Cairns (00:19:29) &#8211; So there&#8217;s a couple of things. When we all started with WordPress, you and I, it was basically a blogging platform and now we&#8217;re building these whole robust membership sites, e-commerce sites, we&#8217;re building all this stuff and it&#8217;s incredible. And people say, Oh, why don&#8217;t you go to an e-commerce platform? Well, I have to tell you, I picked up the paper today, this morning before we jumped on this call. Corey and Shopify, who we all know is one of the big e-commerce products, is in trouble with the Canadian government because they refuse to hand over shopping records to the tax people so they can go after individuals.</p>\n\n\n\n<p>Rob Cairns (00:20:10) &#8211; And the cool thing about WordPress is that&#8217;s all self contained. So as we get into this privacy era, everything&#8217;s within your dashboard and you can even buy marketing solutions like Groundhog Adrian, Toby or Fluent CRM, another one that resides right inside that dashboard which protects your privacy and puts you in control. And I think that&#8217;s the whole thing about WordPress. The other big thing I&#8217;ve seen is a big change in the hosting space. And you&#8217;ll agree with me, um, what&#8217;s old is good and what hosting companies have reinvented themselves in the last while. And two I like to point out to is one over at New fold and we both of us have a mutual friend there in the name of Dave Ryan at Neufeld. So Dave and his team, I&#8217;ve had many dealings with them. They were the old endurance and they came out of that. And they&#8217;re trying to reinvent themselves by running around and buying plug ins like they bought Yoast and they bought it and doing things like that. And then important for new fold, they&#8217;ve become more community aware than they&#8217;ve ever become before.</p>\n\n\n\n<p>Rob Cairns (00:21:19) &#8211; So this was not the idea of eight years ago or nine years ago. I can guarantee that. And they&#8217;ve changed. And then you take somebody like her friends up at GoDaddy and, you know, I know that team pretty well for work I&#8217;ve done, and they&#8217;ve reinvented themselves. They&#8217;ve come out of the ashes of the Danica Patrick ads, as we call them. Remember those? Could you see a sexist ad like that flying in today&#8217;s society? I don&#8217;t think so.</p>\n\n\n\n<p>Cory Miller (00:21:50) &#8211; No. We&#8217;ve evolved past that for sure for for better.</p>\n\n\n\n<p>Rob Cairns (00:21:55) &#8211; But they&#8217;ve also reinvented themselves. And then even in a hosting space, you got companies like Liquid Web and WP Engine and Cloud, and then you&#8217;ve got companies that were leaders that have kind of dropped off. And a company I throw into a group like that is Siteground think, you know. Ten years. Five years ago, they were great. And then somethings kind of happened. So things go cyclical. Um, in terms of the technology more, it&#8217;s worth mentioning where we&#8217;ve gone.</p>\n\n\n\n<p>Rob Cairns (00:22:25) &#8211; So we&#8217;ve gone from coding and WordPress with plugins to page builders and your team and I think this is one of the first with, with your builder product, right? And themes to, to build sites. And then we got into things like headway, which we all know the story of what happened there and they were part of their problems. They were miles ahead of their time and just not adapted. And then we got into the traditional page builders like the Beaver Builders, the Yeah, Elementor, the bricks, that kind of stuff, which is prominent now. And now we&#8217;re headed to this magical thing called blocks. And you know, there&#8217;s a couple block ecosystems. The one I use is cadence. I&#8217;ve been all in with Cadence for a couple of years now. So there&#8217;s evolution, that spot. And I think we&#8217;re we&#8217;re starting to see more is WordPress is becoming more than just a publishing platform. Automattic owns Tumblr, Automattic owns pocket casts, one of the biggest pocket podcast players out there. They own the day One journal, which is a journaling app, um, would encourage anybody out there who needs a journaling product to go get it.</p>\n\n\n\n<p>Rob Cairns (00:23:45) &#8211; It&#8217;s worth every penny of it, like honestly. So they&#8217;re trying to democratize that whole, the whole solution. So, so a lot that&#8217;s gone on in 20. Um.</p>\n\n\n\n<p>Cory Miller (00:23:59) &#8211; Yeah, there&#8217;s a whole history there and everything you talked about. I think what stands out was the hosting industry. It&#8217;s definitely evolved, grown and a lot of money has come into WordPress hosting space in particular. You talk about new Fold in Endurance, for instance, like it&#8217;s turned over, been sold and bought so many acquisitions in the space and for good reason, because WordPress is a great platform for millions of people to build their website on. So but you know, there&#8217;s a trend there too, which is you talked about the reinvention and kind of coming out of stuff. What I&#8217;ve seen in 15 years plus years or so is. Yeah, it starts out good. Trying to claim her to get new customers. New clients, show them, you know, help them with their stuff. And it seems a lot of cyclical ness of like, okay, they reached this point where now they&#8217;re trying to really all the hosting companies, I would say, should make a profit.</p>\n\n\n\n<p>Cory Miller (00:25:02) &#8211; But then there&#8217;s a swath that like, okay, increasingly trying to make it more profitable to understand part of business. However, then you see customer service and support start to kind of fade with some of that and then you get this whole, okay, they&#8217;re going down and then going up. And I&#8217;ve I&#8217;m not going to name the names, but there&#8217;s a lot there where you see the cyclical up and down of that hosting side, which isn&#8217;t always healthy for WordPress either. I get it as a business part. What they need to do for their shareholders, partners, all that kind of stuff. But it&#8217;s definitely changed from like 2008 when I think this was on a shared hosting plan for like, I don&#8217;t know, $5 a month or $10 a month at like HostGator. And it&#8217;s I&#8217;ve kind of bemoaned it some because what the effect now is the experience for the WordPress user, those people that are your clients that are using their website and there&#8217;s that up and down. They&#8217;ve had to ride some of that and it&#8217;s always not good thing for the health of the ecosystem.</p>\n\n\n\n<p>Rob Cairns (00:26:06) &#8211; It&#8217;s true. And the other thing I should add to to this discussion is I think the team up at Automattic, the parent company of WordPress, has been much more receptive to comments, suggestions than ever before. And I know some people don&#8217;t feel that way, but I think we&#8217;re in really good hands with Josepha being the executive director of the WordPress project, you know, and things like that. And I know on the Gutenberg side I&#8217;ve gotten to know Matthias Venture, The Gutenberg lead a little bit and, and people like our friends Polly Hack or people like Jessica Frick over at Percival, which is an automatic company. People like that have put us in pretty good hands, frankly.</p>\n\n\n\n<p>Cory Miller (00:26:52) &#8211; Yeah, my personal opinion is automatic has long term commitment to the industry and I&#8217;m really proud to have them as sponsors a lot of automatic and post status and for good reason. But you know a long term commitment to like they have had the opportunity for many years to really really monetize what WordPress is and have held back. I think this is only my personal opinion.</p>\n\n\n\n<p>Cory Miller (00:27:18) &#8211; No facts really share other&#8217;s leadership there. But get go have had a long term commitment because they believe in open source, they believe in the open web and the ecosystem is healthy. When you have a diverse set of people offering services and products to that, so you get great performance. Obviously they know WordPress inside and out and then the support and those are the things that have that kind of wane over time. In any hosting company that I&#8217;ve been, that I&#8217;ve been around, I&#8217;ve had I&#8217;ve been a customer at many of the ones you talked about had clients and friends at many of the ones that you talked about. And but the consistency, I think, is what matters overall. So I agree with you. Agree. Um, okay. So we&#8217;ve talked about a whole lot of stuff. Now I want to talk I want to ask this specific question related to your clients. What are you hearing from your clients about WordPress, how they&#8217;re using their websites? Because I love talking to our agency owners because tip of the spear for me is the people out there doing the work.</p>\n\n\n\n<p>Cory Miller (00:28:20) &#8211; For those people using WordPress, they might not even know or care that there&#8217;s this open source platform underneath it all. But what are you hearing from your clients about what WordPress and working with the websites?</p>\n\n\n\n<p>Rob Cairns (00:28:32) &#8211; Yeah, there&#8217;s a couple things. I don&#8217;t think my clients care what&#8217;s under the hood. So by that mean they don&#8217;t care if it&#8217;s a WordPress site, if it&#8217;s a custom site, if it&#8217;s something else, as long as it gives them the results they want. So one of the things I&#8217;ve been pushing in the community for the last ten years is don&#8217;t sell the solution. Sell what it brings you. I&#8217;m a big one. Outcome or something, not how you get there. And if anybody doesn&#8217;t believe that, I suggest you go look up a guy by the name of Simon Sinek. Start with why is his book and find his Ted talk and watch it and watch it again. So sell the the what you get out of it. So that&#8217;s the first one. I also think clients hate to say are dropping the security ball big time right now.</p>\n\n\n\n<p>Rob Cairns (00:29:21) &#8211; I&#8217;m working on a site right now where the client couldn&#8217;t find their backup that they were sending to a cloud drive for six days and they took them six days to find out where they put that backup. So one of the things I find with my clients is you have to help them manage their digital assets or their digital stuff, and even more so in small businesses. What happens if the business owner gets run over by a truck tomorrow? What happens if he dies tomorrow? Do you have a succession plan for your business? Do you know how to handle that? Most people don&#8217;t. So that&#8217;s a problem. And then the other thing is, I think a lot of people flock to WordPress because frankly, what are we powering now? 45% in the Internet, 50% somewhere in there. And I think that alone is a selling thing. That&#8217;s attraction. Thing is WordPress is open source. It can&#8217;t be secure the security holes every month. Well, guess what? Microsoft Windows plugs security holes on the first Tuesday every month called Patch Tuesday.</p>\n\n\n\n<p>Rob Cairns (00:30:27) &#8211; And the whole business world runs on Windows more than that. Right. And they&#8217;re still plugging holes. Security is a trust factor, not a it happened or it didn&#8217;t happen.</p>\n\n\n\n<p>Cory Miller (00:30:37) &#8211; So I like that because security is a non-essential part of the digital our digital world, particularly our Internet, it&#8217;s a part of it. The real question is how are the people or companies behind that making sure it&#8217;s always secure. I remember talking to a security expert. I don&#8217;t know, it&#8217;s been eight years now and they said it&#8217;s not a matter this is one that just all they do is security and they go, it&#8217;s not a matter of if we&#8217;ll get hacked, it&#8217;s when and what we&#8217;re doing continually. And I go, that&#8217;s part of the digital age. That&#8217;s where we&#8217;re at. So I love that emphasis from your point. It&#8217;s just not when it&#8217;s if. And what are you doing in the meantime to help proactively do that?</p>\n\n\n\n<p>Rob Cairns (00:31:19) &#8211; And I&#8217;ll take that one more. Corey I have a saying in my business that&#8217;s not if you&#8217;ll be hacked, it&#8217;s when you&#8217;ll be hacked.</p>\n\n\n\n<p>Rob Cairns (00:31:25) &#8211; And how do you recover where I take it? So I kind of look at this mess I&#8217;ve been dealing with, and a big part of the problem was the client didn&#8217;t have a site updated, the client didn&#8217;t have the PHP version updated, the client couldn&#8217;t find the backup. You see where this is going? Yep. And it&#8217;s we got to take care of those assets and we got to treat them like the they&#8217;re important. So that&#8217;s that.</p>\n\n\n\n<p>Cory Miller (00:31:52) &#8211; Just like you would lock your car or your house at night or your car if you&#8217;re driving into the supermarket or the grocery store, whatever that is, you&#8217;d lock your car because, you know, you do those things. We don&#8217;t even think about those things. They&#8217;re so embedded now and we need to be doing that. I love this message. We need to be doing that with our digital assets.</p>\n\n\n\n<p>Rob Cairns (00:32:11) &#8211; We&#8217;re a mutual friend of ours. You know, Kathy&#8217;s N over at K very well. And I turned to Cathy in January and said, I&#8217;m going to make you a prediction.</p>\n\n\n\n<p>Rob Cairns (00:32:20) &#8211; And she said, Oh, I don&#8217;t like your predictions are usually right. And I said, I&#8217;m going to declare 2023 as a year of the vulnerability, the first week of January. And that was coming out of the whole LastPass debacle that happened. And we all know about that one. And sure enough, and I think it&#8217;s partially awareness, but I think there&#8217;s a multitude of factors and it&#8217;s kind of played out that way. The other thing I&#8217;m hearing from clients is clients don&#8217;t realize that websites have to have a budget attached to them for their business. So marketing budget and they say, Oh, we do it in house. And I say, okay, so what&#8217;s your hourly rate worth? Oh, it&#8217;s worth $40 an hour. How many hours a month do you do? Oh five. So your marketing budget is 40 times five. So that&#8217;s the other thing. Business has got to take this stuff seriously and start to budget for.</p>\n\n\n\n<p>Cory Miller (00:33:17) &#8211; I love that Social Security and then budget, and that&#8217;s the mindset.</p>\n\n\n\n<p>Cory Miller (00:33:21) &#8211; So, you know, a lot of the conversations I&#8217;ve been having is the recognition from clients that their website is not just valuable, it&#8217;s an integral part of how they do business. Covid accelerated a lot of that. I think it&#8217;s like, Hey, we got so many physical location, bricks and mortar type businesses realizing when you can&#8217;t actually see a person face to face. So I have two way of a way to be able to do business. So I love that it&#8217;s integral. So security, part of life budgeting, you need to budget for it just like you would any other part of your businesses in the essential part of your business. And so many of the agency owners have talked to here at Post Status, they the clients are recognizing that it&#8217;s in some of the instances, I would say more like a B2B. They see it&#8217;s at a very, very valuable part of their overall sales strategy and they value it deeply. Some run their whole operations or half operations, you know, and items and post those two, we run our whole operation through online space so it feels foreign.</p>\n\n\n\n<p>Cory Miller (00:34:26) &#8211; But that&#8217;s not the way business is traditionally. It&#8217;s, you know, you go to a store, you travel, you walk, you ride in a horse and buggy or a car to get to. Things have changed. And that seems like what I&#8217;m hearing, too, is that mindset needs a change of like this is all a part of business domains, websites, all the platforms you might be on, all as important as that door that opens up into your business.</p>\n\n\n\n<p>Rob Cairns (00:34:51) &#8211; 100% and then look at the criticality of it. So, for example, if you&#8217;re an e-commerce site that&#8217;s making 30,000 US a day profit, then you need a different level of support than somebody that&#8217;s got a brochure site that is out there just to be the face of their business. So you got to think about things like that, too. Very much so.</p>\n\n\n\n<p>Cory Miller (00:35:12) &#8211; Okay, so security and budget. Anything else on your mind about when you when you&#8217;re working with clients and how they&#8217;re valuing their websites? Any perspectives you have to share there too.</p>\n\n\n\n<p>Rob Cairns (00:35:22) &#8211; I think a lot of clients in this day and age are unrealistic and think that&#8217;s the world we live in. So it&#8217;s a very much an I want it now world. It&#8217;s I want it yesterday. There&#8217;s no patience out there like to tell you I don&#8217;t think clients are any different.</p>\n\n\n\n<p>Cory Miller (00:35:39) &#8211; So. Yeah. So it&#8217;s the physical part of business, which I have a friend that has a restaurant supply business and I understand how like when you&#8217;re, you know, stove or cooktop is down, they can&#8217;t sell. And then now that okay, got to have it now. And that service side is pretty intense for them. I can see that now being applied to the business is where they see it as essential. I want to say that&#8217;s a good part, but when it comes with some mindset change of okay, we need to be able to budget for that and pay for that and, and knowing like in the middle of the night or whatever it is to have that kind of service turnaround is not always possible or realistic.</p>\n\n\n\n<p>Rob Cairns (00:36:27) &#8211; And communication is a big part of it too. I don&#8217;t think some clients communicate well, don&#8217;t think some agencies communicate well. Like, for example, I&#8217;m going on vacation next Wednesday. Yay me, I&#8217;ve already sent out an email to my entire client was saying, By the way, the only thing I&#8217;ll deal with while I&#8217;m away is a website down issue. Everything else sits till I get home and just tell them upfront. Now, they might not like to hear it, but that&#8217;s you&#8217;re allowed to take time off. You&#8217;re allowed to recharge.</p>\n\n\n\n<p>Cory Miller (00:36:58) &#8211; The good communication, getting ahead of it to manage those expectations? Yeah, absolutely vital. All right, Rob. Well, anything else you want to share that you&#8217;re excited about, that you&#8217;re working on or doing?</p>\n\n\n\n<p>Rob Cairns (00:37:10) &#8211; I think the big thing is the security side of it. Think, think. We just got to be aware and and make sure you&#8217;re aware and if and if anybody needs help agencies otherwise reach out, be glad to help them and be involved in the community.</p>\n\n\n\n<p>Rob Cairns (00:37:25) &#8211; That&#8217;s a big part of what you and I do. You do not repost status. As you know, I co-manage a large LinkedIn group with Courtney Robertson. I&#8217;ve got a podcast that&#8217;s, you know, it&#8217;s good for business awareness, but it&#8217;s also good for the community too. So get involved. The community. Somebody if you can go to a word camp, go says the guy who&#8217;s got no time to go to work. Camps right now have not been to a five check by I missed word camp Buffalo Oh boy did I take stuff for not being on that one because that was a that&#8217;s an hour and a half away. I didn&#8217;t go to Montclair this weekend because, again, I&#8217;ve got conflicts. And the other thing is, look after you and your family and look after how you feel. Look after your health. Because if you don&#8217;t do that, you can&#8217;t run your business. So keep that.</p>\n\n\n\n<p>Cory Miller (00:38:14) &#8211; Absolutely. Well, thanks, Rob, for being on post staff. Appreciate your work in the community and what you do with WordPress out in the world to our story.</p>\n\n\n\n<p>Rob Cairns (00:38:22) &#8211; Thanks 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:\"Sat, 19 Aug 2023 03:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Cory Miller\";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:109:\"WPTavern: Equalize Digital Accessibility Checker Plugin Adds New Frontend Highlighting Feature Funded by NASA\";s:7:\"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=147975\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"https://wptavern.com/equalize-digital-accessibility-checker-plugin-adds-new-frontend-highlighting-feature-funded-by-nasa\";s: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:4865:\"<p><a href=\"https://equalizedigital.com/\">Equalize Digital</a>, a WordPress accessibility products and services company, has added a new frontend highlighting feature to its free <a href=\"https://wordpress.org/plugins/accessibility-checker/\">accessibility checker plugin</a>, which is used to perform audits on self-hosted sites. The feature was <a href=\"https://equalizedigital.com/nasa-funds-development-of-front-end-highlighting-feature-for-equalize-digital-accessibility-checker/\">funded</a> by the National Aeronautics and Space Administration (NASA), through Equalize Digital&#8217;s consulting work on the new NASA websites.</p>\n\n\n\n<p>NASA recently launched the <a href=\"https://beta.nasa.gov/\">beta version</a> of its WordPress-powered flagship site, which WordCamp US attendees may hear about next week during the team&#8217;s sessions, including Friday&#8217;s keynote address: <a href=\"https://us.wordcamp.org/2023/session/friday-keynote/\">For All Userkind: NASA Web Modernization and WordPress</a> and another presentation titled <a href=\"https://us.wordcamp.org/2023/session/hands-on-with-nasas-new-digital-platform/\">Hands on with NASA’s new digital platform.</a></p>\n\n\n\n<p>Equalize Digital was contracted to perform accessibility testing, user testing with screen reader users, and provide accessibility governance recommendations.</p>\n\n\n\n<p>&#8220;As part of the contract for those services, they also contracted us to develop this feature for the plugin,&#8221; Equalize Digital CEO Amber Hinds said. &#8220;They have an enterprise license but we decided in collaboration with them that we would make it a feature in the free plugin so everyone could benefit, not a paid-only feature.</p>\n\n\n\n<p>&#8220;They were actually really interested in that because it&#8217;s part of their mission to give back to humanity.&#8221;</p>\n\n\n\n<p>Prior to developing the frontend highlighting feature, the accessibility checker plugin only had reports inside the post edit screen, with output that is nearly indecipherable for less technical users who are not accustomed to reading HTML.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1493\" height=\"709\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/08/screenshot-3.png\" alt=\"\" class=\"wp-image-147988\" />\n\n\n\n<p>The new frontend highlighting feature makes the accessibility report&#8217;s output far more approachable for users who may not be developers. It puts a &#8220;view on page&#8221; link next to each issue found in the report, which brings users to the frontend where the element in question is highlighted with a dashed pink box. It also displays a panel that explains the issue in a way that is easier to understand as well as how to fix it.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1800\" height=\"1053\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/08/Accessibility-Checker-Front-End-Highlighting-on-NASA.png\" alt=\"\" class=\"wp-image-147987\" />\n\n\n\n<p>The report in the admin has been updated as well so that it&#8217;s easier to read. A new image column displays any images related to issues and the Actions column includes a &#8220;View on Page&#8221; link leading to the issue highlighted on the frontend. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"2640\" height=\"1710\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/08/image-2.png\" alt=\"\" class=\"wp-image-147991\" />\n\n\n\n<p>Hind said her team is working on making the tool more friendly to content creators and not just a development tool. The plugin will stay on the NASA website to help their team as they add and edit content over time.</p>\n\n\n\n<p>&#8220;In the future, we&#8217;re planning to add the ability to jump to the element in the block editor as well,&#8221; Hinds said. &#8220;(That&#8217;s slightly tricky because we scan the whole page, not just the content area so we have to exclude elements created by other parts of the editor or theme.)&#8221;</p>\n\n\n\n<p>Thanks to NASA&#8217;s funding, the new frontend highlighting feature is available to users on the <a href=\"https://wordpress.org/plugins/accessibility-checker/\">free version of the plugin on WordPress.org</a>.</p>\n\n\n\n<p>“Our goal is to make accessibility testing easier for every WordPress user, not just developers,” Equalize Digital CEO Amber Hinds said. “Accessibility Checker was developed to include a robust free version with this in mind. We want to make building websites that work for people with disabilities standard practice and were excited to work with NASA to make accessibility testing reports easier for non-developers to understand and take action on. Adding this feature to the free plugin was a no-brainer for us. We’re looking forward to seeing more WordPress website owners finding and fixing accessibility problems on their 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:\"Fri, 18 Aug 2023 21:00:14 +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: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:\"Do The Woo Community: Woo AgencyChat Live with Ash Shaw and Mitch Callahan\";s:7:\"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=76066\";s:7:\"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://dothewoo.io/woo-agencychat-live-ash-shaw-mitch-callahan/\";s: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:410:\"<p>Join Ash Shaw from LightSpeed and Mitch Callahan from Saucal as they share insights from their WooCommerce agencies. </p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/woo-agencychat-live-ash-shaw-mitch-callahan/\">Woo AgencyChat Live with Ash Shaw and Mitch Callahan</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, 18 Aug 2023 10: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: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: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:93:\"WPTavern: WordPress Community Summit Travel Fund Contributes $48K in Assistance for Attendees\";s:7:\"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=147963\";s:7:\"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://wptavern.com/wordpress-community-summit-travel-fund-contributes-48k-in-assistance-for-attendees\";s: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:2052:\"<p>This year&#8217;s WordCamp US includes a Community Summit, an invitation-only contributor-focused event that will take place prior to the main conference on August 22-23, 2023, in National Harbor, Washington, DC. It will be the first summit in six years, since the last one was held in Paris, France in 2017.</p>\n\n\n\n<p>Historically, the summit has offered contributors the rare opportunity to hold in-person discussions on important topics across teams. In order to ensure the gathering is diverse and inclusive, previous community summit organizers have included a travel assistance program to remove the financial barriers of attending.</p>\n\n\n\n<p>The 2023 Community Summit travel fund is <a href=\"https://communitysummit.wordcamp.org/2023/about-the-community-summit-travel-fund/\">providing $48,000 in travel assistance</a>, thanks to a group of sponsors that includes Automattic, A2 Hosting, Elementor, and Weglot. The funding will support 38 attendees with roundtrip transportation ($31K for 24 people) and hotel stays ($16,500 for 66 hotel nights for 22 people).</p>\n\n\n\n<p>Attendees have been reminded about the <a href=\"https://communitysummit.wordcamp.org/2023/non-attribution/\">non-attribution guideline</a> which enables the event to offer a safe and inclusive environment for collaboration where comments are not attributed to specific individuals. Discussions, photographs, recaps, and summaries can be shared as long as they abide by the non-attribution guideline. </p>\n\n\n\n<p>The <a href=\"https://communitysummit.wordcamp.org/2023/schedule/\">schedule</a> has been published, featuring 26 discussion topics. Contributors will have dedicated sessions to discuss the criteria for delaying the upgrade of foundational tech, understanding contributor leadership roles, refining Five for the Future for a robust WordPress community, accessibility in the WordPress project, open source participation in global legislation, backwards compatibility in Gutenberg, among other interesting topics that lend themselves to cross-team collaboration.</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, 18 Aug 2023 04:02: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: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: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:97:\"WPTavern: WP Community Collective Funds First Fellowship for Accessibility Contributor Alex Stine\";s:7:\"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=147922\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"https://wptavern.com/wp-community-collective-funds-first-fellowship-for-accessibility-contributor-alex-stine\";s: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:3400:\"<img width=\"2227\" height=\"1305\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/02/alex-stine.jpeg\" alt=\"\" class=\"wp-image-141764\" />\n\n\n\n<p>The WP Community Collective (WPCC), a non-profit organization created to support individual WordPress contributors and community-led initiatives, has <a href=\"https://www.thewpcommunitycollective.com/2023/08/17/press-release-wppc-funds-first-fellowship/\">funded its first fellowship</a>. Alex Stine, a fully blind individual contributor who has been working with the WordPress Accessibility team since 2016, is the first recipient of the funds designated for the fellowship.</p>\n\n\n\n<p>WPCC reports that the fellowship received donations from 59 individuals and organizations that want to support the cause of improving the open source project&#8217;s accessibility. The organization uses <a href=\"https://opencollective.com/thewpcc\">Open Collective</a> as the fiscal sponsor for its 501(c)3 status, enabling donations to be classified as charitable giving. All donations coming into the organization are transparent and publicly documented. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1906\" height=\"1180\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/08/Screen-Shot-2023-08-17-at-5.43.37-PM.png\" alt=\"\" class=\"wp-image-147952\" />\n\n\n\n<p>The fellowship provides Stine with five paid contribution hours per week for six months, which allows him to continue his work on <a href=\"https://core.trac.wordpress.org/search?q=alexstine\">accessibility reviews and patches in WordPress core</a>. It includes a travel stipend for WordCamp US where Stine is volunteering as a co-organizer and participating in the Community Summit. As the first to embark on a WPCC fellowship, Stine will also help establish a framework for future Accessibility Fellowship cohorts.</p>\n\n\n\n<p>&#8220;I am really excited for the future as this will allow me to commit real time to improving the project,&#8221; Stine said. &#8220;The support I received from the community shows me there are others who recognize the importance of accessibility.</p>\n\n\n\n<p>&#8220;Time itself is the biggest win here. The funding allows me to focus more of my day on WordPress and less on side work. The main projects include the Gutenberg post editor.&#8221;</p>\n\n\n\n<p>Stine recently conducted an <a href=\"https://www.youtube.com/watch?v=6H15BUb6_GU\">accessibility audit of Gutenberg</a>, which shows the current state of the block editor in WordPress 6.3. This video is very enlightening for anyone who hasn&#8217;t yet seen how Gutenberg works with assistive technology like a screen reader.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>Stine has performed many accessibility audits for different products in the WordPress ecosystem. The fellowship funds enable him to continue his contributions on existing WordPress open source accessibility initiatives without having to take on as much consulting work.</p>\n\n\n\n<p>“Alex has demonstrated a deep commitment to creating an inclusive experience for all WordPress users,” WPCC co-founder and president Sé Reed said. “We are delighted by the community’s willingness to invest both in Alex and in the future of WordPress accessibility. In supporting his work, we aim to improve accessibility across the entire project, from the core software to the greater WordPress community.”</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, 17 Aug 2023 22:04: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: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:73:\"Do The Woo Community: The Metamorphosis of a Woo Agency with Jonny Martin\";s:7:\"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=76052\";s:7:\"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://dothewoo.io/the-metamorphosis-of-a-woo-agency-with-jonny-martin/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:409:\"<p>Jonny Martin from Built Mighty joins Robert, Robert and Mary Voelker from WooCommerce in this Woo AgencyChat.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/the-metamorphosis-of-a-woo-agency-with-jonny-martin/\">The Metamorphosis of a Woo Agency with Jonny Martin</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, 17 Aug 2023 15:23:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:47:\"WordPress.org blog: WP20 – A Heartfelt Thanks\";s:7:\"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=15471\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/news/2023/08/wp20-a-heartfelt-thanks/\";s: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:19589:\"<p>Earlier this year, WordPressers around the globe united to celebrate 20 years of community and innovation. There were parties, blogs, videos, and social media posts aplenty. And, of course, the trending hashtag, “#WP20”.</p>\n\n\n\n<p>Throughout April and May, community members reflected on their journeys &#8211; what brought them to WordPress and its personal meaning. The stories, tweets, and videos were inspiring, nostalgic, and even humorous at times. There was swag, and the cakes were epic.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Let’s take a look!</h2>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-3 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">On WordPress turning 20, and the Audrey Scholars program: <a href=\"https://t.co/Etwh8H6xh4\">https://t.co/Etwh8H6xh4</a></p>&mdash; Matt Mullenweg (@photomatt) <a href=\"https://twitter.com/photomatt/status/1662582800451776512?ref_src=twsrc%5Etfw\">May 27, 2023</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">WordPress celebrates 20 years tomorrow. It\'s grown from a comment on a blog post to a web spanning phenomenon. Thanks to an outstanding community and the freedoms of Open Source. Happy Birthday, WordPress! <a href=\"https://twitter.com/hashtag/WP20?src=hash&ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> <a href=\"https://t.co/fght4XMJXb\">pic.twitter.com/fght4XMJXb</a></p>&mdash; Mike Little (@mikelittlezed1) <a href=\"https://twitter.com/mikelittlezed1/status/1662013891856027649?ref_src=twsrc%5Etfw\">May 26, 2023</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Look at this cute <a href=\"https://twitter.com/hashtag/WP20?src=hash&ref_src=twsrc%5Etfw\">#WP20</a> cake from <a href=\"https://twitter.com/RicksBakery?ref_src=twsrc%5Etfw\">@RicksBakery</a>! <a href=\"https://t.co/f88H3usR5R\">pic.twitter.com/f88H3usR5R</a></p>&mdash; Josepha Haden Chomphosy (@JosephaHaden) <a href=\"https://twitter.com/JosephaHaden/status/1662562362979676162?ref_src=twsrc%5Etfw\">May 27, 2023</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"es\" dir=\"ltr\">Tenemos regalitos para los que vengáis esta tarde a la Meetup.<a href=\"https://twitter.com/hashtag/WP20?src=hash&ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://t.co/PSPsbWluv7\">pic.twitter.com/PSPsbWluv7</a></p>&mdash; Meetup WordPress Torrelodones (@WPTorrelodones) <a href=\"https://twitter.com/WPTorrelodones/status/1671918091398258688?ref_src=twsrc%5Etfw\">June 22, 2023</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">So <a href=\"https://twitter.com/WordPress?ref_src=twsrc%5Etfw\">@WordPress</a> is turning 20 years old today! <a href=\"https://twitter.com/hashtag/WP20?src=hash&ref_src=twsrc%5Etfw\">#WP20</a> <br /><br />Happy birthday to WordPress and its entire community! from me and <a href=\"https://twitter.com/MariekeRakt?ref_src=twsrc%5Etfw\">@MariekeRakt</a> <a href=\"https://t.co/9N9T0SnsdL\">pic.twitter.com/9N9T0SnsdL</a></p>&mdash; Joost de Valk (@jdevalk) <a href=\"https://twitter.com/jdevalk/status/1662398779360702465?ref_src=twsrc%5Etfw\">May 27, 2023</a></blockquote>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Happy 20th birthday, <a href=\"https://twitter.com/WordPress?ref_src=twsrc%5Etfw\">@WordPress</a>! Our Cebu meetup was a success! <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2728.png\" alt=\"✨\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f382.png\" alt=\"🎂\" class=\"wp-smiley\" /><br /><br />…and our community is growing. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4af.png\" alt=\"💯\" class=\"wp-smiley\" /> Thanks to <a href=\"https://twitter.com/hashtag/enspaceCebu?src=hash&ref_src=twsrc%5Etfw\">#enspaceCebu</a> for hosting our party! <a href=\"https://twitter.com/hashtag/WP20?src=hash&ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://twitter.com/hashtag/WordPressCebu?src=hash&ref_src=twsrc%5Etfw\">#WordPressCebu</a> <a href=\"https://twitter.com/hashtag/WPCebu?src=hash&ref_src=twsrc%5Etfw\">#WPCebu</a> <a href=\"https://t.co/TUFoKjuoxq\">pic.twitter.com/TUFoKjuoxq</a></p>&mdash; Cebu WordPress Meetup (@WPCebu) <a href=\"https://twitter.com/WPCebu/status/1664957630241189888?ref_src=twsrc%5Etfw\">June 3, 2023</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">I\'m sure you\'ve seen by now, but today is WordPress\' 20th birthday! Thank you to <a href=\"https://twitter.com/photomatt?ref_src=twsrc%5Etfw\">@photomatt</a> and <a href=\"https://twitter.com/mikelittlezed1?ref_src=twsrc%5Etfw\">@mikelittlezed1</a> for following through with a seemingly wild idea. I don\'t think anyone could have predicted we\'d end up where we are today. Happy birthday <a href=\"https://twitter.com/WordPress?ref_src=twsrc%5Etfw\">@WordPress</a>! <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f389.png\" alt=\"🎉\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f973.png\" alt=\"🥳\" class=\"wp-smiley\" /> <a href=\"https://twitter.com/hashtag/WP20?src=hash&ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://t.co/tAZRlYThuS\">pic.twitter.com/tAZRlYThuS</a></p>&mdash; Jon Desrosiers (@desrosj) <a href=\"https://twitter.com/desrosj/status/1662616708064985088?ref_src=twsrc%5Etfw\">May 28, 2023</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"de\" dir=\"ltr\">Hier ist der Recap vom letzten Zürcher <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> <a href=\"https://twitter.com/hashtag/Meetup?src=hash&ref_src=twsrc%5Etfw\">#Meetup</a> im <a href=\"https://twitter.com/westhive?ref_src=twsrc%5Etfw\">@westhive</a> inkl. Audioaufzeichnungen und Slides der Präsentationen, sowie ein paar visuellen Eindrücken des Abends. <a href=\"https://twitter.com/hashtag/BBQ?src=hash&ref_src=twsrc%5Etfw\">#BBQ</a> <a href=\"https://twitter.com/hashtag/WP20?src=hash&ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://t.co/IycEcb4DQL\">https://t.co/IycEcb4DQL</a></p>&mdash; WordPress Zürich (@wpzurich) <a href=\"https://twitter.com/wpzurich/status/1674695261694701568?ref_src=twsrc%5Etfw\">June 30, 2023</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"qme\" dir=\"ltr\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f973.png\" alt=\"🥳\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f973.png\" alt=\"🥳\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f973.png\" alt=\"🥳\" class=\"wp-smiley\" /><a href=\"https://twitter.com/hashtag/WCEU?src=hash&ref_src=twsrc%5Etfw\">#WCEU</a> <a href=\"https://twitter.com/hashtag/WCEU2023?src=hash&ref_src=twsrc%5Etfw\">#WCEU2023</a> <a href=\"https://twitter.com/hashtag/WP20?src=hash&ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://t.co/Uodqd2OotM\">pic.twitter.com/Uodqd2OotM</a></p>&mdash; Osom Studio WordPress &amp; WooCommerce Agency (@OSOM_STUDIO) <a href=\"https://twitter.com/OSOM_STUDIO/status/1667524236406145024?ref_src=twsrc%5Etfw\">June 10, 2023</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Celebrating <a href=\"https://twitter.com/hashtag/WP20?src=hash&ref_src=twsrc%5Etfw\">#WP20</a> at <a href=\"https://twitter.com/hashtag/WCEU?src=hash&ref_src=twsrc%5Etfw\">#WCEU</a> with <a href=\"https://twitter.com/photomatt?ref_src=twsrc%5Etfw\">@photomatt</a> <a href=\"https://twitter.com/JosephaHaden?ref_src=twsrc%5Etfw\">@JosephaHaden</a> <a href=\"https://twitter.com/matias_ventura?ref_src=twsrc%5Etfw\">@matias_ventura</a> <a href=\"https://t.co/9LM9HnEfYn\">pic.twitter.com/9LM9HnEfYn</a></p>&mdash; Felix Arntz (@felixarntz) <a href=\"https://twitter.com/felixarntz/status/1667536517705736193?ref_src=twsrc%5Etfw\">June 10, 2023</a></blockquote>\n</div>\n</div>\n</div>\n\n\n\n<p>Want to see more tweets? <a href=\"https://wp20.wordpress.net/live/\">Check out the tweet wall here.</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Bits &amp; Bytes</h2>\n\n\n\n<ul>\n<li><a href=\"https://wp20.wordpress.net\">Official website for WP20</a></li>\n\n\n\n<li>The #WP20 hashtag was used at least 18,000 times between March 1 and June 8, 2023 on social peaking on May 27 with at least 2,700+ metions</li>\n\n\n\n<li>165+ meetups took place to celebrate WP20</li>\n\n\n\n<li>At least 4,661 people attended a meetup across six continents</li>\n\n\n\n<li>100+ kits of swag were shipped to meetup organizers</li>\n</ul>\n\n\n\n<p>Want more social media for WordPress? Check out the official accounts here:</p>\n\n\n\n<ul>\n<li><a href=\"https://twitter.com/WordPress\">Twitter</a></li>\n\n\n\n<li><a href=\"https://www.instagram.com/wordpress/\">Instagram</a></li>\n\n\n\n<li><a href=\"https://www.facebook.com/WordPress/\">Facebook</a></li>\n\n\n\n<li><a href=\"https://www.linkedin.com/company/wordpress\">LinkedIn</a></li>\n\n\n\n<li><a href=\"https://www.youtube.com/wordpress\">YouTube</a></li>\n\n\n\n<li><a href=\"https://www.pinterest.com/WordPress/\">Pinterest</a></li>\n\n\n\n<li><a href=\"https://www.tumblr.com/wordpress\">Tumblr</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Snapshots from WP20 Celebrations</h2>\n\n\n\n\n<img width=\"1024\" height=\"768\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Fz4aD6_XwAICdz-.jpeg?resize=1024%2C768&ssl=1\" alt=\"\" class=\"wp-image-15527\" />\n\n\n\n<img width=\"769\" height=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxhuvvbacaagn6c.webp?resize=769%2C1024&ssl=1\" alt=\"\" class=\"wp-image-15518\" />\n\n\n\n<img width=\"768\" height=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxhspnlaqainz1f.webp?resize=768%2C1024&ssl=1\" alt=\"\" class=\"wp-image-15523\" />\n\n\n\n<img width=\"1024\" height=\"768\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxjpa3oamaaetri.webp?resize=1024%2C768&ssl=1\" alt=\"\" class=\"wp-image-15516\" />\n\n\n\n<img width=\"828\" height=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxjparaaqaa1iji.webp?resize=828%2C1024&ssl=1\" alt=\"\" class=\"wp-image-15517\" />\n\n\n\n<img width=\"1024\" height=\"768\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxj2btqaaaakewo.webp?resize=1024%2C768&ssl=1\" alt=\"\" class=\"wp-image-15522\" />\n\n\n\n<img width=\"768\" height=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxkqdpmxwaa9zvr.webp?resize=768%2C1024&ssl=1\" alt=\"\" class=\"wp-image-15524\" />\n\n\n\n<img width=\"1024\" height=\"768\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwyami0ja.webp?resize=1024%2C768&ssl=1\" alt=\"\" class=\"wp-image-15519\" />\n\n\n\n<img width=\"1024\" height=\"941\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwcaativc.webp?resize=1024%2C941&ssl=1\" alt=\"\" class=\"wp-image-15525\" />\n\n\n\n<img width=\"1024\" height=\"768\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxoi01sxgamyqi7.webp?resize=1024%2C768&ssl=1\" alt=\"\" class=\"wp-image-15520\" />\n\n\n\n<img width=\"1024\" height=\"851\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxoukosaeaaa-sk.webp?resize=1024%2C851&ssl=1\" alt=\"\" class=\"wp-image-15521\" />\n\n\n\n<img width=\"1024\" height=\"769\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxm7nexxsaa5vec.webp?resize=1024%2C769&ssl=1\" alt=\"\" class=\"wp-image-15526\" />\n\n\n\n\n<h2 class=\"wp-block-heading\">Props</h2>\n\n\n\n<p>WP20 celebrations, swag, websites, social media, graphics, and so much more could not have happened without the wonderful contributions of so many. Beyond the organizers of the 165+ events, there were many people working behind the scenes to ensure WordPress got the recognition it deserved. Thank you to everyone who worked behind the scenes to organize the meetups, create swag, and to spread the word. Some of these hardworking folks include: <a href=\"https://profiles.wordpress.org/nomadskateboarding/\">Mark Andrew</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/tinobarreiro/\">Tino Barreiro</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloe Bringmann</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a>, <a href=\"https://profiles.wordpress.org/mysweetcate/\">Cate DeRosia</a>, <a href=\"https://profiles.wordpress.org/triforcepower/\">Em DeRosia</a>, <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a>, <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a>, <a href=\"https://profiles.wordpress.org/ngreennc/\">Nyasha Green</a>, <a href=\"https://profiles.wordpress.org/nickhamze/\">Nick Hamze</a>, <a href=\"https://profiles.wordpress.org/meaganhanes/\">Meagan Hanes</a>, <a href=\"https://profiles.wordpress.org/kellychoffman/\">Kelly Hoffman</a>, <a href=\"https://profiles.wordpress.org/pablohoneyhoney/\">Pablo Honey</a>, <a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a>, <a href=\"https://profiles.wordpress.org/markoserb/\">Marko Ivanovic</a>, <a href=\"https://profiles.wordpress.org/angelasjin/\">Angela Jin</a>, Winston Koone, Megan Marcel, <a href=\"https://profiles.wordpress.org/ninianepress/\">Jenni McKinnon</a>, <a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a>, <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a>, <a href=\"https://profiles.wordpress.org/sereedmedia/\">Se Reed</a>, <a href=\"https://profiles.wordpress.org/laurlittle/\">Lauren Stein</a>, <a href=\"https://profiles.wordpress.org/fcoveram/\">Francisco Vera</a>, Andrew Wikel, and <a href=\"https://profiles.wordpress.org/adamwood/\">Adam Wood</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Some More Fun</h2>\n\n\n\n<p>A WordPress event is not complete without a Wapuu, and not only was there one, but there was a whole campaign to color it in! Thanks to <a href=\"https://profiles.wordpress.org/triforcepower/\">Em DeRosia</a> for creating the commemorative Wapuu!</p>\n\n\n\n\n<img width=\"737\" height=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Fs33fvqWcAAKRbx.png?resize=737%2C1024&ssl=1\" alt=\"\" class=\"wp-image-15532\" />\n\n\n\n<img width=\"737\" height=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FrU8oOFaQAEZLPY.jpeg?resize=737%2C1024&ssl=1\" alt=\"\" class=\"wp-image-15528\" />\n\n\n\n<img width=\"722\" height=\"956\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Ft8DCn9WcA08xYZ.jpeg?resize=722%2C956&ssl=1\" alt=\"\" class=\"wp-image-15531\" />\n\n\n\n<img width=\"832\" height=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FtyXUDZXgAA1G1K.jpeg?resize=832%2C1024&ssl=1\" alt=\"\" class=\"wp-image-15534\" />\n\n\n\n<img width=\"819\" height=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FuvXFqHWAAY7Yob.jpeg?resize=819%2C1024&ssl=1\" alt=\"\" class=\"wp-image-15533\" />\n\n\n\n<img width=\"1024\" height=\"829\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FxHdOAdXwAE_4w9.jpeg?resize=1024%2C829&ssl=1\" alt=\"\" class=\"wp-image-15530\" />\n\n\n\n<img width=\"1024\" height=\"712\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FtsDGoiaUAA91ug.jpeg?resize=1024%2C712&ssl=1\" alt=\"\" class=\"wp-image-15535\" />\n\n\n\n<img width=\"709\" height=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FtxoedaacAYaIeq.jpeg?resize=709%2C1024&ssl=1\" alt=\"\" class=\"wp-image-15536\" />\n\n\n\n<img width=\"737\" height=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FxIvqkGWIAEPKt8.jpeg?resize=737%2C1024&ssl=1\" alt=\"\" class=\"wp-image-15529\" />\n\n\n\n\n<p>The Marketing team ran an interactive campaign, <a href=\"https://make.wordpress.org/marketing/2023/05/02/20-days-to-celebrate-20-years-of-wordpress-from-blogs-to-blocks/\"><em>From Blogs to Blocks</em></a>, a series of prompts across 20 days for WordPress enthusiasts to celebrate all-things WordPress.</p>\n\n\n\n<p>Additional campaigns took place on social media and included prompting folks to share their favorite WordPress memory and most cherished WordPress swag item, to highlight the 21 contributing teams, and even to share a birthday greeting.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">My fav <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> swag, which I use daily! This was the speaker swag from <a href=\"https://twitter.com/hashtag/WCBos?src=hash&ref_src=twsrc%5Etfw\">#WCBos</a> 2019. <a href=\"https://twitter.com/melchoyce?ref_src=twsrc%5Etfw\">@melchoyce</a>, I think you designed this stunning logo? <a href=\"https://twitter.com/hashtag/WP20?src=hash&ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://t.co/1sEIEMGzM9\">https://t.co/1sEIEMGzM9</a> <a href=\"https://t.co/F0ufF9msqP\">pic.twitter.com/F0ufF9msqP</a></p>&mdash; Angela Jin (@AngelaSJin) <a href=\"https://twitter.com/AngelaSJin/status/1650832707683864578?ref_src=twsrc%5Etfw\">April 25, 2023</a></blockquote>\n</div>\n\n\n\n<p>We had lots of digital goodies too! From 3D desktop wallpaper, to selfie-props for the celebrations, and more. <a href=\"https://wp20.wordpress.net/swag/\">You can download them here</a>.</p>\n\n\n\n<div class=\"wp-block-jetpack-tiled-gallery aligncenter is-style-rectangular\"><div class=\"tiled-gallery__gallery\"><div class=\"tiled-gallery__row\"><div class=\"tiled-gallery__col\"><img alt=\"\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-selfie-glasses-1024x576.png?ssl=1\" /><img alt=\"\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-celebrate-desktop.jpg?ssl=1\" /></div><div class=\"tiled-gallery__col\"><img alt=\"WP20\" src=\"https://i1.wp.com/wordpress.org/news/files/2023/08/wp20-logo-blueberry3x-1024x783.png?ssl=1\" /></div></div></div></div>\n\n\n\n<h2 class=\"wp-block-heading\">Got Swag? Need Swag?</h2>\n\n\n\n<p>It&#8217;s not too late to order your WP20 commemorative items. <a href=\"https://mercantile.wordpress.org/product-category/wp20/\">Find shirts, stickers, and more, while supplies last</a>!</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>See you in five years for the 25th!</strong></h2>\n\n\n\n<p>Sign up here to stay in the &#8220;know&#8221;!</p>\n\n\n	<div class=\"wp-block-jetpack-subscriptions__supports-newline wp-block-jetpack-subscriptions\">\n		<div class=\"jetpack_subscription_widget\">\n			<div class=\"wp-block-jetpack-subscriptions__container\">\n				<form action=\"https://wordpress.org/news/feed/\" method=\"post\" accept-charset=\"utf-8\" id=\"subscribe-blog-1\">\n					<p id=\"subscribe-email\">\n						<label id=\"jetpack-subscribe-label\" class=\"screen-reader-text\" for=\"subscribe-field-1\">\n							Type your email…						</label>\n						<input type=\"email\" name=\"email\" class=\"no-border-radius  required\" value=\"\" id=\"subscribe-field-1\" />\n					</p>\n\n					<p id=\"subscribe-submit\">\n						<input type=\"hidden\" name=\"action\" value=\"subscribe\" />\n						<input type=\"hidden\" name=\"blog_id\" value=\"14607090\" />\n						<input type=\"hidden\" name=\"source\" value=\"https://wordpress.org/news/feed/\" />\n						<input type=\"hidden\" name=\"sub-type\" value=\"subscribe-block\" />\n						<input type=\"hidden\" name=\"redirect_fragment\" value=\"subscribe-blog-1\" />\n												<button type=\"submit\" class=\"wp-block-button__link no-border-radius\" name=\"jetpack_subscriptions_widget\">\n							Subscribe						</button>\n					</p>\n				</form>\n\n							</div>\n		</div>\n	</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Aug 2023 14:54:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";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:83:\"WPTavern: group.one Acquires BackWPup, Adminimize, and Search &amp; Replace 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=147855\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://wptavern.com/group-one-acquires-backwpup-adminimize-and-search-replace-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:2191:\"<p><a href=\"https://www.group.one/en\">group.one</a>, a European cloud hosting and digital marketing services provider, has <a href=\"https://inpsyde.com/en/inpsyde-announces-sale-of-backwpup-adminimize-and-searchreplace/\">acquired</a> the <a href=\"https://backwpup.com/\">BackWPup</a>, <a href=\"https://wordpress.org/plugins/adminimize/\">Adminimize</a>, and <a href=\"https://wordpress.org/plugins/search-and-replace/\">Search &amp; Replace</a> plugins from Inpsyde. Together the products have more than 1.1 million active installs and will join group.one&#8217;s growing portfolio of WordPress products, which include <a href=\"https://wp-rocket.me/\">WP Rocket</a>, <a href=\"https://imagify.io/\">Imagify</a>, and <a href=\"https://rankmath.com/\">Rank Math SEO</a>.</p>\n\n\n\n<p>Inpsyde sold the plugins to focus more on its consulting and product services.</p>\n\n\n\n<p>&#8220;This sale lets us concentrate on our core competencies and work more closely with our clients, like PayPal, Payoneer, and Mollie, providing the know-how to develop and reach their full potential with new avenues for advancement,&#8221; Inpsyde CEO Alex Frison said.</p>\n\n\n\n<p> The acquired plugins will be managed by the development team at WP Media, one of group.one&#8217;s brands, expanding its offerings beyond optimization and SEO to include backup and site management capabilities. </p>\n\n\n\n<p>&#8220;Backup and recovery solutions are crucial to protect websites against data loss and we look forward to further developing BackWPup, along with Adminimize and Search &amp; Replace,&#8221; group.one CEO Daniel Hagemeier said. &#8220;Together with WordPress hosting from WP.one and one.com, and our flagship products WP Rocket, Imagify, and Rank Math SEO, WordPress users can now come to group.one to optimize, secure, maintain and promote their online presence.”</p>\n\n\n\n<p>When asked what specific features are being prioritized on the immediate roadmap, group.one representative Simon Kraft said &#8220;the smooth transition over to WP Media&#8221; is their focus following the sale. He was unable to comment on whether the commercial versions of the acquired plugins would be subject to any pricing changes.</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, 17 Aug 2023 03:08: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: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: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:73:\"WPTavern: Should WordPress.org Support Threads Auto-Close After 6 Months?\";s:7:\"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=147304\";s:7:\"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/should-wordpress-org-support-threads-auto-close-after-a-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5389:\"<p>WordPress.org&#8217;s <a href=\"https://wordpress.org/support/forums/\">support forums</a> are a vital resource and communication tool for users supporting their own sites and developers extending the software. Visiting the forums often means users have gotten stuck somehow and need to have a successful support experience in order to continue on their WordPress journeys. They are looking for help deciphering the meaning of error messages, migrating sites, debugging their sites after an update, and many other common struggles of self-hosting.</p>\n\n\n\n<p>A <a href=\"https://meta.trac.wordpress.org/ticket/7161\">ticket</a> on Meta trac, which was opened three weeks ago, proposes that WordPress.org remove auto-closure from support forum threads and instead add a warning that the thread is old. Threads currently auto-close six months after last reply, unless manually closed sooner than that.</p>\n\n\n\n<p>Amber Hinds, plugin author and CEO of Equalize Digital, made a case for instances where it is necessary to respond to an old thread:</p>\n\n\n\n<ul>\n<li>As a plugin dev, we forgot to subscribe to a plugin&#8217;s forum and only saw support threads many months later. Currently, there is no way to provide assistance on these threads.</li>\n\n\n\n<li>If a user requests a feature that is not currently available and you release it many months later, it would be nice to update their support request and let them know.</li>\n</ul>\n\n\n\n<p>Hinds referenced a conversation on Post Status&#8217; Slack where Matt Mullenweg recommended removing the closure for old threads completely and adding a warning in its place:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Let&#8217;s move away from auto-closing to just having a warning that you&#8217;re replying to an old thread</p>\n</blockquote>\n\n\n\n<p>Not all participants in the discussion are in favor of leaving support tickets open. Several contributors contended that this approach can lead to unproductive replies piling up or multiple people jumping in on threads with similar unrelated issues, making it difficult for developers to solve the original request. </p>\n\n\n\n<p>&#8220;Old topics mostly attract spam, me-too-pile&#8217;ons and random replies,<br />its very rare when an actual reply is needed to something that has no activity for&nbsp;<strong>six months</strong>,&#8221; WordPress support forums moderator Yui said.</p>\n\n\n\n<p>&#8220;Current policy is to leave such topics closed, however, making an&nbsp;<strong>exclusion</strong>&nbsp;and manually reopen it at request can be made possible when the reasons for it are&nbsp;<strong>compelling</strong>&nbsp;(It can be discussed on Support team weekly chat, if needed).&#8221;</p>\n\n\n\n<p>WordPress accessibility contributor Joe Dolson is in favor of giving plugin authors the ability to determine when a thread gets closed, a modification that partially addresses the issues at play.</p>\n\n\n\n<p>&#8220;It would help alleviate it to give plugin authors the ability to close a thread,&#8221; Dolson said. &#8220;Though when you have thousands of open support threads, that would still be a pretty significant potential burden.</p>\n\n\n\n<p>&#8220;I think there should be a better way of handling closed support threads &#8211; it&#8217;s a problem that auto-closed threads literally *cannot* be re-opened because they&#8217;ll just auto-close again. But I&#8217;m dubious about just leaving them open.</p>\n\n\n\n<p>&#8220;At the least, I think that removing the auto-closing *must* come with some ability for plugin authors to close threads; otherwise this would become totally unmanageable.&#8221;</p>\n\n\n\n<p>Changing thread closure policy could also impact the metric displayed on plugins, indicating how many issues have been marked as resolved in the last two months. If more people are allowed to jump in on threads with them open, the resolved threads metric may not be as meaningful.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"806\" height=\"510\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/08/Screen-Shot-2023-08-16-at-4.06.11-PM.png\" alt=\"\" class=\"wp-image-147891\" />\n\n\n\n<p>Hinds recommends a hybrid approach, keeping auto-close in place but allowing plugin contributors to reopen threads, restarting the clock for auto-closure.</p>\n\n\n\n<p>&#8220;I discovered 12 support tickets yesterday on a plugin I had not realized we were not subscribed to, which I want to at least comment on to see if they still need help,&#8221; Hinds said. &#8220;I can&#8217;t do this. It&#8217;s a frustrating experience for me and clearly a poor user experience for the original poster or anyone else who encounters that thread with a similar problem.</p>\n\n\n\n<p>&#8220;Another option might be to auto-close them but add a button that allows them to be reopened by plugin contributors that sets another six-month (or maybe a shorter time period) timeline before auto-close.&#8221;</p>\n\n\n\n<p>It&#8217;s easy to forget that most people do have a vast network of WordPress professionals available to answer questions for them on Twitter or other networks, so the forums remain an important lifeline for users. Contributors have not yet come to a decision about whether leaving threads open for longer will provide a better experience or not. The discussion on <a href=\"https://meta.trac.wordpress.org/ticket/7161\">changing the auto-close policy</a> continues on Meta trac.</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, 16 Aug 2023 21:10:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:64:\"Do The Woo Community: More WordCamp US Speakers Tips and Teasers\";s:7:\"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=76044\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://dothewoo.io/more-wordcamp-us-speakers-tips-and-teasers/\";s: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:387:\"<p>Listen to Courtney Patubo Kranzke, Sean Blakely, Jonathan Desrosiers, Sumner Davenport and Destiny Kanno.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/more-wordcamp-us-speakers-tips-and-teasers/\">More WordCamp US Speakers Tips and Teasers</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, 16 Aug 2023 17:02: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: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:59:\"Do The Woo Community: WordCamp US Speakers Tips and Teasers\";s:7:\"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=76029\";s:7:\"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/wordcamp-us-speakers-tips-and-teasers/\";s: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>Here tips and teasers from George Woodard, Danielle Zacaro, Hari Shanker, Aid Correa-Jackson, Ryan Smith and Shambi Broome</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/wordcamp-us-speakers-tips-and-teasers/\">WordCamp US Speakers Tips and Teasers</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, 16 Aug 2023 14:37: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: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: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:78:\"HeroPress: New life thanks to WordPress – Una nueva vida gracias a 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:56:\"https://heropress.com/?post_type=heropress-essays&p=5738\";s:7:\"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:130:\"https://heropress.com/essays/new-life-thanks-to-wordpress/#utm_source=rss&utm_medium=rss&utm_campaign=new-life-thanks-to-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:7201:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2023/08/081423-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: WordPress empowered me to craft a better life for my family. WordPress me permitió forjar una vida mejor para mi familia.\" />\nHear Jennifer&#8217;s story in her own voice.\n\n\n\n\n\n\n<p><a href=\"https://heropress.com/feed/#espanol\">Este ensayo también está disponible en español.</a></p>\n\n\n\n<p>Hello, my name is Jennifer Farhat, and I reside in Burnaby, a charming city nestled in British Columbia, Canada. My role as a Frontend Engineer at WebDevStudios, an amazing and globally distributed company entirely devoted to WordPress, allows me to collaborate with a diverse team across the world. Today, I&#8217;m excited to share my journey with you.</p>\n\n\n\n<p>I was born In &nbsp;the enchanting land of Venezuela, a South American gem renowned for its warm-hearted people and diverse climate, It has snow-dusted landscapes in Mérida, gentle plains of Los Llanos, and the sun-soaked beaches along the eastern shores.</p>\n\n\n\n<p>Before my journey to British Columbia, I enjoyed a vibrant life on Margarita Island, often dubbed the &#8220;pearl of the Caribbean.&#8221; This paradise on earth nurtured my passion for tennis from a young age. I climbed the ranks and became one of the top players in my country. Transitioning into a Tennis Coach, I imparted my knowledge to players of all ages. This continued even as I pursued my studies in computer science, graduating in 2010. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>My path naturally evolved to web development, and despite the bittersweet decision to step away from coaching, it marked the beginning of my journey as a dedicated web developer. </p>\n</blockquote>\n\n\n\n<p>My path intertwined with WordPress, a platform I quickly grew to adore. The company I worked for began embracing it, using WordPress to cater to our clients&#8217; needs.</p>\n\n\n\n<p>However, the backdrop of my homeland&#8217;s struggles was undeniable. By 2016, the economic and political turmoil had escalated. Basic essentials became hard to find, despite having the means to acquire them. This dire scenario pressed upon my family, particularly my eight-month-old daughter who faced shortages of formula and diapers. The pivotal moment arrived in August 2016 when my family and I embarked on a tough choice – leaving our homeland. Our journey took us through Colombia before finally settling in the picturesque city of Vancouver, where reality felt like a picture-perfect postcard.</p>\n\n\n\n<p>The initial phase was an uphill battle, marked by paperwork hurdles and employment challenges due to our uncertain legal status. Just when we were about to give up and were contemplating leaving Vancouver, an opportunity surfaced – centered around WordPress. This newfound role not only offered the means to secure legal status but also laid the foundation for a brighter future for my daughter and my two-year-old son, who was born in our new home years later.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Grateful for this transformation, I credit WordPress for extending a lifeline at a crucial and difficult moment of my life.</p>\n</blockquote>\n\n\n\n<p>It empowered me to craft a better life for my family. In return, I remain dedicated to contributing to the community that has given me so much, knowing that my efforts will always fall short of the boundless generosity I&#8217;ve received.</p>\n\n\n\n<h1 id=\"espanol\" class=\"kt-adv-heading5738_ccceef-d5 wp-block-kadence-advancedheading\"><strong>Una nueva vida gracias a WordPress</strong></h1>\n\n\n\nEscucha el ensayo de Jennifer con su propia voz\n\n\n\n<p>Hola, mi nombre es Jennifer Farhat, y actualmente resido en Burnaby, una encantadora ciudad ubicada en British Columbia, Canadá. Mi rol como Frontend Engineer en WebDevStudios, una asombrosa empresa 100% remota a nivel global completamente dedicada a WordPress, me permite colaborar con un equipo diverso alrededor del mundo. Hoy, estoy emocionada por compartir mi historia.</p>\n\n\n\n<p>Nací en el maravilloso país &nbsp;de Venezuela, una joya sudamericana reconocida &nbsp;por su gente cálida y su clima variado. Cuenta con paisajes diversos, desde la increíble &nbsp;Mérida, las suaves llanuras en Los Llanos y hasta playas bañadas por el sol en las costas orientales.</p>\n\n\n\n<p>Antes de mi travesía a British Columbia, disfruté de una vida vibrante en la Isla de Margarita, a menudo llamada &#8220;la perla del Caribe&#8221;. Este paraíso en la tierra nutrió mi pasión por el tenis desde joven. Escalé posiciones y me convertí en una de las mejores jugadoras de mi país. Pase luego a ser Entrenadora de Tenis, compartiendo mis conocimientos con jugadores de todas las edades. Esto continuó mientras estudiaba en la Universidad, graduándome en 2010. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Mi camino naturalmente evolucionó hacia el desarrollo web, a pesar de la agridulce decisión de apartarme del deporte, marcando el inicio de mi camino como una desarrolladora Web dedicada al 100%. </p>\n</blockquote>\n\n\n\n<p>Mi camino se entrelazó con WordPress, una plataforma que rápidamente llegué a adorar. La empresa para la que trabajaba comenzó a adoptarla, usando WordPress para atender las necesidades de nuestros clientes.</p>\n\n\n\n<p>Sin embargo, la situación por la que pasaba mi país era innegable. Hacia 2016, los problemas económicos y políticos habían escalado. Productos de básica necesidad &nbsp;se volvieron difíciles de encontrar. Esta difícil situación &nbsp;afectó a mi familia, particularmente a mi hija de ocho meses que enfrentaba escasez de fórmula y pañales. El momento crucial llegó en agosto de 2016, cuando mi familia y yo tomamos la difícil decisión de dejar nuestra patria. Nuestro viaje nos llevó primero a Colombia y finalmente a la pintoresca ciudad de Vancouver, donde parece que uno vive dentro de una un postal perfecta.</p>\n\n\n\n<p>La fase inicial fue una batalla cuesta arriba, marcada por obstáculos &nbsp;y desafíos laborales debido a nuestra incierta situación legal. Justo cuando estábamos a punto de rendirnos y pensábamos en dejar Vancouver, surgió una oportunidad de trabajo centrada en WordPress. Este nuevo rol no solo ofreció los medios para asegurar un estatus legal, sino que también sentó las bases para un mejor futuro para mi hija y mi hijo de dos años, quien nació años después en nuestro nuevo hogar.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Agradecida por esta transformación, le doy crédito a WordPress por brindarme una oportunidad en un momento crucial y difícil en mi vida. </p>\n</blockquote>\n\n\n\n<p>Me permitió forjar una vida mejor para mi familia. A cambio, estoy comprometida a contribuir a la comunidad que tanto me ha dado, sabiendo que mis esfuerzos siempre quedarán cortos frente a la generosidad sin límites que he recibido.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/new-life-thanks-to-wordpress/\">New life thanks to WordPress &#8211; Una nueva vida gracias a WordPress</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, 16 Aug 2023 14:34:25 +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:\"Jennifer Farhat\";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:97:\"WPTavern: #87 – Jonathan Wold on Guildenberg, What It Is and How It Aims to Help Product Owners\";s:7:\"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=147811\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"https://wptavern.com/podcast/87-jonathan-wold-on-guildenberg-what-it-is-and-how-it-aims-to-help-product-owners\";s: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:65646:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley. 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 Guildenberg, what it is and how it aims to help product owners.</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 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 Jonathan Wold.</p>\n\n\n\n<p>Jonathan has been deeply involved in the WordPress community for almost two decades. He began writing tutorials and freelancing, which eventually died him to the agency world, where he worked on large enterprise projects. In the past five to six years, Jonathan has shifted his focus to the broader WordPress ecosystem. He&#8217;s also had the opportunity to work at WooCommerce and collaborate with the team at Automattic. Despite the demands of his busy career, Jonathan&#8217;s passion for WordPress has only grown stronger over the years.</p>\n\n\n\n<p>Jonathan is one of the co-founders of Guildenberg, and in the podcast today we discuss what this project is and how it aims to revolutionize the WordPress product ecosystem.</p>\n\n\n\n<p>We start the conversation by highlighting the importance of behavior in the WordPress community and the core values that drive the platform. Autonomy, meritocracy, utility, and giving credit where credit is due. Jonathan emphasizes the significance of giving credit to the original creators of work, even though it may not be legally required.</p>\n\n\n\n<p>We move on to talk about how Guildenberg aims to solve some of the key problems faced by WordPress product owners, such as monetization, compatibility and distribution. Jonathan envisions a system where product owners pay a fee for distribution of their products. With a portion of that revenue going back to the Guildenberg project. By aligning incentives and providing economic motivations for contributors, Guildenberg seeks to create a sustainable and thriving ecosystem for the open web.</p>\n\n\n\n<p>We get into the inspiration behind the name Guildenberg, which combines the idea of Gutenberg and the guild institutions from medieval Europe.</p>\n\n\n\n<p>We also discussed the team&#8217;s longterm vision of creating an app store for WordPress that spans the majority of installations, offering monetization options, and enforcing compatibility standards.</p>\n\n\n\n<p>If you&#8217;re a WordPress developer, who&#8217;s keen to find a way to create visibility for your product 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 Jonathan Wold.</p>\n\n\n\n<p>I am joined on the podcast today by Jonathan Wold. Hello, Jonathan.</p>\n\n\n\n<p>[00:03:58] <strong>Jonathan Wold:</strong> Hey Nathan, how are you?</p>\n\n\n\n<p>[00:04:00] <strong>Nathan Wrigley:</strong> Very good. Jonathan&#8217;s joining us, I think, for the second time on the Jukebox podcast. We&#8217;re going to have an in depth conversation about something which is close to his heart. It&#8217;s called Guildenberg. I&#8217;m going to make a link in the show notes to an article which I think probably would be a wise idea to read to give you some perspective.</p>\n\n\n\n<p>Before we begin and dive into the subject matter though, Jonathan just tell us who you are. Tell us about your WordPress journey.</p>\n\n\n\n<p>[00:04:27] <strong>Jonathan Wold:</strong> So I&#8217;ve been immersed in the world of WordPress now for about 18 years. I started out writing tutorials and I did a bunch of freelance early on. Spent a couple of years in the agency world doing some big enterprise stuff. And then spent the past five, six years or so focused on the ecosystem more broadly.</p>\n\n\n\n<p>I also got to spend some time at WooCommerce. The lovely folks over at Automattic, and yeah it&#8217;s been quite nonstop for me. I think a good indicator is that I like WordPress even more 18 years later than I did when I started. And I think that the community is a massive part of that. That&#8217;s what got me hooked initially.</p>\n\n\n\n<p>Folks on the .org forums answering my questions and showing me, oh wow, there&#8217;s something about this like open source space. And not just open source, but WordPress specifically that drew me. And yeah never looked back.</p>\n\n\n\n<p>[00:05:23] <strong>Nathan Wrigley:</strong> Great, thank you. So we&#8217;re going to be talking about something called Guildenberg. I&#8217;m going to repeat that word, Guildenberg. It&#8217;s not the word that I&#8217;m used to saying, which is Gutenberg. So we&#8217;ve got the berg bit, that&#8217;s the same. But then we&#8217;ve got this guild bit at the beginning and I guess maybe Europeans, I don&#8217;t know, maybe I&#8217;m mischaracterizing that, but it feels like Europeans who have a thirst for historical knowledge perhaps know what guilds are.</p>\n\n\n\n<p>I don&#8217;t know if it was something that came across the pond to North America, but did it? And if it didn&#8217;t, what are guilds?</p>\n\n\n\n<p>[00:05:57] <strong>Jonathan Wold:</strong> So that&#8217;s a fun way to frame it. So first I&#8217;ll call out that one of the things that I&#8217;ve loved about this community. Because it is by default, like international in nature, I&#8217;ve had the privilege of being exposed to a lot of ideas that might not have been as prevalent to me with my North American base otherwise.</p>\n\n\n\n<p>I can&#8217;t recall where the concept of the guild first came up, but where I went to immediately was reading about the history of guilds in Europe, right? That&#8217;s the foundation for a lot of my initial thinking about this. Here in the States we have the concept of unions, which has some parallels, but it&#8217;s focused more on trade and specific lines of work.</p>\n\n\n\n<p>Yeah my basis for this was reading about the history of guilds in Europe. The positives and the negatives from a few different perspectives and I found that super helpful.</p>\n\n\n\n<p>[00:06:49] <strong>Nathan Wrigley:</strong> I think at least anyway, that the guild traditionally was an organization which would bind together people who did a very similar thing. So, for example, you might have, I don&#8217;t know, a printer&#8217;s guild. Or you might have a blacksmith&#8217;s guild or something like that. And it would be a kind of club, for want of a better word, of people so that they could share their experience. They could share their knowledge. They could keep up to date with what the other people were doing. I think I&#8217;ve got that right.</p>\n\n\n\n<p>[00:07:18] <strong>Jonathan Wold:</strong> Yes, and it&#8217;s curious too that just by the nature of who&#8217;d be involved you&#8217;d often have competitors. Yet they were working together. There&#8217;s benefits and trade offs, right? But overall though the idea is that they&#8217;d work together to improve the quality of their work.</p>\n\n\n\n<p>So you had guilds that took this quite far where they also have seals that, you know, used by the guild to say okay, we have a quality approval here. Others who it was more loose, like an association where we&#8217;re supporting each other, sharing ideas, et cetera. Some got pretty heavy into regulating production and monitoring, and there&#8217;s a lot of different facets of it.</p>\n\n\n\n<p>The heart of it though, and my primary interest is facilitating cooperation in what would otherwise be a decentralized space. And many of these just somewhat by their nature, the folks who&#8217;d be involved in these guilds, they were individual entrepreneurs doing their own things and decided to come together to facilitate cooperation, collaboration around opportunities of mutual interest.</p>\n\n\n\n<p>[00:08:21] <strong>Nathan Wrigley:</strong> So you&#8217;ve put a article together. It was written at the latter part of last year, August, 2022. It&#8217;s called a Guild for WordPress Businesses. And helpfully you start out explaining your knowledge of what a guild is. But the intention of that really is to begin the conversation in which you propose, perhaps there should be a WordPress businesses guild. And you&#8217;ve come up with the name Guildenberg which for obvious reasons, kind of fits the ecosystem just perfectly.</p>\n\n\n\n<p>Now in order to have a solution to something, presumably you have to have a problem for it to be solving. So again, right near the top of the article you outline three problems which you see going on in the WordPress product business space at the moment.</p>\n\n\n\n<p>Now I could introduce them but I feel it&#8217;s probably better to just hand it over to you and you tell us what your thoughts are.</p>\n\n\n\n<p>[00:09:11] <strong>Jonathan Wold:</strong> So quick shout out to my co founder Anna Maria Radu. She came up with the name, and it was a fun process. Like what are we going to call this thing? And she&#8217;s the one who picked it up and combined the idea of Gutenberg and the guild together. So she gets that credit, among many other credits.</p>\n\n\n\n<p>The key starting point here was like what problems are we setting to work on, right? And it was that problem set that we&#8217;ll touch on in a moment that became the basis for saying, okay, what construct could we use to solve these? And that&#8217;s where the concept of the guild began to fit in.</p>\n\n\n\n<p>So within WordPress specific product businesses, and I think that&#8217;s important to call out too. I care about the agency space, I have a lot of context and background for that. But what I think, let me take a step back. For about five, six years now I&#8217;ve been thinking more and more about WordPress as an ecosystem, and thinking about, okay, what are some of the leverage points?</p>\n\n\n\n<p>What are ways that we can grow and improve this ecosystem? And for me that matters because of the position that WordPress takes within the context of the open web. I believe that the healthier our ecosystem is, the better it is for the web.</p>\n\n\n\n<p>I like the proprietary platforms that they hold. They can foster innovation. They can bring clear value. I don&#8217;t want to see a web though dominated by proprietary platforms. And so I look at WordPress&#8217; place today, it&#8217;s great in terms of its market share. We want to see it become even healthier and stronger, and be in a place where the proprietary and open source are meeting together. But there&#8217;s a balance of power there.</p>\n\n\n\n<p>So that&#8217;s a starting point. What can we do to grow the ecosystem and make it stronger? At first, and for several years, I was quite convinced that helping hosting companies work together was going to be how we move the ecosystem forward. I still think that&#8217;s a piece of the puzzle.</p>\n\n\n\n<p>But what I focused on, what I realised, in that process is that you have to figure out a way to align incentives. And there were some inherent problems with facilitating cooperation amongst the hosts. And that could be a whole topic in and of itself. What I ended up settling on though is that of the three primary business groups in the ecosystem, you have the service providers, that&#8217;s your agencies and freelancers, you have the hosting providers, and you have the product companies.</p>\n\n\n\n<p>I believe that the product companies have the greatest opportunity for leverage, to grow and improve the ecosystem. Because they&#8217;re the ones that are directly touching, okay so there&#8217;s that idea that they have the greatest leverage. And I think that the reason why is when you look at WordPress through this framing of being an operating system for creating on the open web, which is something that Matt Mullenweg has been talking about for years now. He first introduced that idea.</p>\n\n\n\n<p>If you think about WordPress as an operating system, and then you think about the products as being on the app store, that&#8217;s where I think it starts to come into perspective.</p>\n\n\n\n<p>You need a whole ecosystem of hosting providers and service providers, but the products are like the apps that bring the core value. And if you think about it there&#8217;s very few people these days who would use WordPress without any plugins, without any apps, if you will.</p>\n\n\n\n<p>And so I ended up settling on, okay, product companies are the key leverage point for being able to grow and strengthen the ecosystem. So what problems do they have? And there are three problems that stand out to me that are faced by product companies in the space. And I&#8217;m going to focus first on those that are just WordPress specific. SaaS is another category but they have some of their own, they have a different set of problems.</p>\n\n\n\n<p>For WordPress founders the first one is what I just call like monetisation. This category of monetisation. A lot of folks who grew up in the WordPress space, created products, often had developer backgrounds. Monetisation has been something that we&#8217;ve struggled with. Whether it&#8217;s pricing, whether it&#8217;s business model, whether it&#8217;s just that we&#8217;re copying someone else who didn&#8217;t get that figured out. We tend to be poorly monetised in the space.</p>\n\n\n\n<p>And the key here is it&#8217;s misaligned with value. There are end users, for instance, that look at the price of a WordPress product and don&#8217;t trust it. You&#8217;re telling me that I&#8217;m going to build my business on this product that only costs a couple hundred dollars. I&#8217;m supposed to have confidence in that when the SaaS counterparts are thousands of dollars.</p>\n\n\n\n<p>So there&#8217;s more to it than that. It&#8217;s great to be able to pass on value to the end users but it needs to be a conscious decision. And a lot of times folks making decisions on monetisation don&#8217;t have a strong basis for it. And they&#8217;re not focused on aligning with value to the end user. They&#8217;re just picking an arbitrary price. So that&#8217;s problem one.</p>\n\n\n\n<p>Problem two is compatibility. And it&#8217;s this idea that a lot of these products just don&#8217;t work well together. Not because they don&#8217;t intend to but because there&#8217;s so many different ways of doing things. There aren&#8217;t any shared, well there are intentions towards shared standards, but there&#8217;s missing alignment of interest to actually enforce those standards and improve them.</p>\n\n\n\n<p>It&#8217;s like product developers will do so because they care about it, but those tend to be the minority. And oftentimes some of the most popular plugins don&#8217;t do that. It&#8217;s a lot of work and there&#8217;s not a lot of incentive to make things all work well together.</p>\n\n\n\n<p>The last one, and I think the one that shows the most, that sticks out the most, that&#8217;s the most pressing, the most problematic for folks, is distribution.</p>\n\n\n\n<p>You have these products that solve a clear problem for their audience. There&#8217;s a clear value proposition. They have that, what we&#8217;d call product market fit. And yet the majority of their addressable market within the WordPress ecosystem has no idea that they even exist. According to WebPro&#8217;s data we have 92 million active WordPress sites.</p>\n\n\n\n<p>And on the one hand, if you&#8217;re building a product in the WordPress space that&#8217;s fantastic, right? You have a massive addressable market that you can get to. But on the other, there&#8217;s no clear cut way today to actually get to that addressable market. For the simple fact that all of those 92 million are spread out over thousands of different hosting companies, who are somewhat effectively their own ecosystems in and of themselves.</p>\n\n\n\n<p>[00:15:15] <strong>Nathan Wrigley:</strong> Makes perfect sense. So let&#8217;s deal with those in turn. The monetisation piece where you talk about the fact that businesses are often either undervaluing their offering, or there&#8217;s a perceived, prejudice is the wrong word, but just the idea that things in the WordPress ecosystem ought to be cheap, everybody else is cheap so I should probably be cheap because I need to undercut my main competitor.</p>\n\n\n\n<p>I don&#8217;t really have any insight into the world outside of WordPress, so I don&#8217;t really know how far that argument carries. Perhaps you do? What I&#8217;m really asking for there is a bit of clarification. Are we orders of magnitude behind in terms of the value that we put on our products? Are we, for example, charging a fifth, a quarter, a third of what you might typically find elsewhere?</p>\n\n\n\n<p>[00:16:02] <strong>Jonathan Wold:</strong> So it depends. I would say at least from what I&#8217;ve observed and my sense of things on just the small business front, we&#8217;re behind but not terribly behind. Where it really starts to show up is with mid market and enterprise pricing. If we even go that far, right?</p>\n\n\n\n<p>Like enterprise certainly makes use of WordPress and there&#8217;s a pretty big disconnect overall between value and price and business model even. And just for instance, offering enterprise level support.</p>\n\n\n\n<p>It&#8217;s hard to pin down because sometimes it will be based on verticals, like you&#8217;ll have a WordPress creator or WordPress product that will focus on a particular vertical. But they&#8217;re not really matching the expectations in that vertical. It&#8217;s all over the board. On the one hand, it&#8217;s delightfully autonomous, people have the freedom to do whatever they want.</p>\n\n\n\n<p>The real problem that I see with this is that they&#8217;re not explicitly aligning it with value to that end user, which can vary. An enterprise, for instance, they have a whole different, they&#8217;re doing millions of dollars a month in revenue and the plugin that they&#8217;re using as a basis for that is only a couple hundred dollars, that kind of scares them, right? Like how do we know that we&#8217;re gonna get the support that we need? And the author hasn&#8217;t even necessarily considered that.</p>\n\n\n\n<p>[00:17:17] <strong>Nathan Wrigley:</strong> It is interesting as well, you were talking about products that were in the region of sort of $200 and presumably that was the sort of southern estimate. But it&#8217;s not difficult to find plugins that are considerably cheaper than that as well. You know the number 49 and 47 dollars for a license, for a single site license, for something might be something that you see all over the place. And it does beg the question, how many of those licenses does a product developer need to move in order for their business to become worthwhile to them?</p>\n\n\n\n<p>You know if you&#8217;re going to be putting in the time to have that as your single focus, which in many cases I&#8217;m sure the developers would love to have. You really do have to be shifting tens of thousands of those, for support and all of the things that go along with that. So yeah, I think undervalued is an interesting term there.</p>\n\n\n\n<p>[00:18:08] <strong>Jonathan Wold:</strong> And it&#8217;s interesting. Some folks might infer from this that, oh we just want to like price fix the ecosystem. Like no that&#8217;s not interesting to me at all. I love folks having the autonomy to price whatever they want to. What I&#8217;m concerned about, because it&#8217;s also a good way to drive innovation too, right?</p>\n\n\n\n<p>If you&#8217;re going to charge more it should be tied to value. It&#8217;s not just about extracting. It&#8217;s how do you align with additional value to the end user? And just the general challenge I see, and I think this is one that we solve through education and through modeling, is developers and product owners, entrepreneurs who just aren&#8217;t asking the right questions, and aren&#8217;t focused on that value piece.</p>\n\n\n\n<p>That&#8217;s like oh okay, well my competitors are generally doing this so I&#8217;ll just do less. Or they&#8217;ll think oh if I just do less I&#8217;ll get more volume. But they&#8217;re not considering the longterm consequences of charging less, and whether they&#8217;ll be able to support it longterm.</p>\n\n\n\n<p>So it&#8217;s a problem that we solve I think through education and through better examples in the space, and we&#8217;re starting to get more of those. But I just wanted to point out it&#8217;s not like I just want everyone to increase their prices. I want people to align with value for the end users. And a lot of cases that does include increasing your prices so that you can provide more value to them. But that&#8217;s not always the case. Sometimes it&#8217;s keep the price low.</p>\n\n\n\n<p>[00:19:22] <strong>Nathan Wrigley:</strong> Yeah. And then compatibility was the second point that you mentioned. This is really curious, isn&#8217;t it? Because I guess if you&#8217;re developing your own SaaS platform, really you don&#8217;t have any compatibility problems. You simply need to develop your own stack and you can ship whatever you like, whenever you like. So that doesn&#8217;t exist.</p>\n\n\n\n<p>But also if you are building on top of, let&#8217;s say WordPress&#8217; rivals, for example Wix or Squarespace or Shopify. Again, you&#8217;ve really only got one target to worry about. And that&#8217;s what Wix are doing and what Shopify are doing. So long as you&#8217;re keeping abreast of all of that, you&#8217;re good to go.</p>\n\n\n\n<p>Whereas, as you say, in the WordPress space, 60,000 plus I think it is at the moment, WordPress plugins, the combinations there are almost infinite. And that really can upset your business. I would imagine that a typical WordPress company support channel is constantly filled up with emails saying, well I&#8217;ve got these plugins and they don&#8217;t seem to work together, what do I do? And yeah, what do you do? So yeah, this is interesting endeavor.</p>\n\n\n\n<p>[00:20:21] <strong>Jonathan Wold:</strong> This especially shows up with the hosting providers, right? They&#8217;re the ones who often hear this first from the end users. And it&#8217;s a bit classic, right? If something&#8217;s not working, a lot of times folks will, one of the standard advice is well try to disable all the plugins and then kind work backwards from there. Which is a bit of a nightmare scenario really. To uninstall all your apps, I&#8217;m like what I don&#8217;t to do that. Like I picked these, there&#8217;s a reason for all this.</p>\n\n\n\n<p>So this often comes up with hosts and compatibility is overall in all my conversations with hosts, like one of, if not the number one cost centre for WordPress is stuff that just doesn&#8217;t work together.</p>\n\n\n\n<p>And again, I think that the core problem here is aligning incentives. It&#8217;s open source. One of the things we love about WordPress is the flexibility to do whatever we want. What often happens, and there&#8217;s benefits to this, but you&#8217;ll have developers who will do their own custom interfaces. They&#8217;ll try some new things. They&#8217;ll bring this thing, this development practice in or that one. They&#8217;ll try to use this SDK or something else. Like it&#8217;s just all over the board.</p>\n\n\n\n<p>The flexibility is great, but the trade off really shows up on the compatibility front where these things just don&#8217;t work together. And there&#8217;s a lot of cost to the end user or to the developer, when they&#8217;re trying to make things work with someone else. Including just a lot that&#8217;s outside of their control entirely. You could care about compatibility, put in all the effort, maybe you even create a patch for some other plugin author, and there&#8217;s no guarantee they&#8217;ll ever do anything with it.</p>\n\n\n\n<p>[00:21:47] <strong>Nathan Wrigley:</strong> That&#8217;s true. I speak to developers fairly frequently, some of whom do literally patch other people&#8217;s plugins so that they can get their support ticket queue down to zero. Yeah that&#8217;s really interesting. I guess the model that we would love to have, on the one hand, would be something akin to you know the Apple ecosystem where if an app is literally crashing the iPhone, Apple will just remove it from the ecosystem until it&#8217;s mended.</p>\n\n\n\n<p>Now that&#8217;s brilliant in the one sense that you can just get rid of all problems with the flick of one switch. But the downside of that is that system is about as closed as it possibly gets, and 30% of the revenue goes to Apple in that case. So swings and roundabouts really. Seemingly this is going to be a really difficult one to tackle.</p>\n\n\n\n<p>So is your endeavor around compatibility really just promoting what compatibility is? And just letting people know what the guidelines are for developing things and just making people good citizens of the WordPress development landscape.</p>\n\n\n\n<p>[00:22:45] <strong>Jonathan Wold:</strong> That&#8217;s a part of it, but I really think we have to align incentives. Let&#8217;s talk about the app store piece. My longterm vision, so on the one hand, I&#8217;m okay with this looking like any number of things so I&#8217;m not caught up on the details of it. But like my longterm vision and what we&#8217;re laying the groundwork now with Gildenberg is for there to be a quote unquote app store that spans 80% of all the WordPress installs out there. That solves a lot of these problems built into it, right?</p>\n\n\n\n<p>You&#8217;d have the monetisation piece taken care of by just accounting for standard models and having examples, etc. You&#8217;d have compatibility built in by having standards that are enforced at that submission level. If you&#8217;re going to be in this app store you have to follow these standards and guidelines and best practices. There&#8217;s a review process, etc.</p>\n\n\n\n<p>The incentive is there because you&#8217;re offering distribution. They&#8217;re like yeah this is worth doing. A developer is like yeah we&#8217;ll align around this shared standard which is ideally community created because we want the distribution on the other side of this.</p>\n\n\n\n<p>Now no one has to do it. This is I think where the difference shows up between what Apple has done. And there&#8217;s some comparisons to like, what do you have in the Android ecosystem? Our goal is not a hundred percent. Our goal is just the majority of WordPress installs. There&#8217;ll always be people who don&#8217;t want it.</p>\n\n\n\n<p>But it&#8217;s more than enough to be significant and to create those aligned incentives for folks to say oh yeah I&#8217;m going to follow these standards. And we get the, I don&#8217;t want to just have guidelines and playbooks and things that kind of on their own. There needs to be real incentives for people to do it. And distribution to me is the big incentive.</p>\n\n\n\n<p>[00:24:23] <strong>Nathan Wrigley:</strong> So distribution then, which is the third part, you mentioned it in terms of the 40 plus percent of the web which is using WordPress. And I think I&#8217;m right in saying that, is this really around discoverability as much as anything else? It&#8217;s trying to get traction for your product in a marketplace where you&#8217;re up against thousands of people. So if a guild were to be created there would at least be some structure, some formal network that you could rely upon to help spread the word if you like.</p>\n\n\n\n<p>[00:24:50] <strong>Jonathan Wold:</strong> Yeah it&#8217;s a combination of things. Discoverability is one of them and there&#8217;s different ways that you solve that. But .org for all the things that it does well is not built around, nor incentivized to solve, commercial interest problems. Not today at least, not that it couldn&#8217;t be in the future.</p>\n\n\n\n<p>The plugin review team is volunteer led. We have specific guidelines for specific reasons. And while we want to see growth and improvement there&#8217;s only so much that you can expect given the incentives, right? Like it&#8217;s volunteers and they work really hard to be as agnostic and neutral as possible. And at the end of the day, just from a end users and a product perspective, from a product perspective being listed on .org is no guarantee that you&#8217;ll be discovered by anyone, right? It&#8217;s par for the course, but .org is not trying to solve the discoverability problem. And ultimately plenty of folks get stuff like outside of .org.</p>\n\n\n\n<p>[00:25:49] <strong>Nathan Wrigley:</strong> So the idea then behind all of those three problems is that you&#8217;ve got a potential solution, this idea of a guild.</p>\n\n\n\n<p>So let&#8217;s move on to that then and describe what that guild looks like. Again, I guess it&#8217;s probably apropos right now to say you have not really fixed upon these ideas. This is the beginning of this conversation.</p>\n\n\n\n<p>You presumably would love for people having heard this podcast get back in touch with you and say I like this idea. I want to put my idea to you, see if we can take it in this direction. But yeah just outline what is the guild that you would hope to build? What are the designs that you&#8217;ve got behind it?</p>\n\n\n\n<p>[00:26:22] <strong>Jonathan Wold:</strong> The core idea right is to say okay what vehicle, what construct, is best suited to solving these three problems? It&#8217;s all rooted in this idea of finding and aligning incentives. So the App Store vision is the North Star. And the idea behind Guildenberg is okay, how do we lay a foundation for these things?</p>\n\n\n\n<p>So what I&#8217;ve been focused on over the past year or so with my co founders is, what&#8217;s the right economic engine for this? Like there&#8217;s a ton of stuff that we want to do. We want to create playbooks, open source things, facilitate just a bunch of stuff in the space. I&#8217;m super interested in how this connects to Five for the Future.</p>\n\n\n\n<p>And for all of that it&#8217;s like we need a strong economic engine that enables us, that aligns with value, that builds momentum in the right direction and enables us to do these things. And in my piece I originally outlined some different ideas on revenue models et cetera.</p>\n\n\n\n<p>What&#8217;s become clearer since, and what I&#8217;m focused on now is this the distribution problem itself. Like monetisation and compatibility, those are things that are going to become clearer with time. What I&#8217;m focused on now is okay, how do we start helping products today grow through distribution? And distribution itself then becomes our core economic engine. That&#8217;s the business of Gildenberg Inc, Gildenberg .com if you will.</p>\n\n\n\n<p>And so basically what we do today is we take products, we onboard them, we evaluate, review things, give them guidance, give them a roadmap. And then we help those products get distribution deals with hosting providers. And we&#8217;re basically the ones facilitating that.</p>\n\n\n\n<p>And so the idea, and I&#8217;m curious to see where it evolves, is to say okay let&#8217;s solve those three problems now and do so in a way that lets us build momentum and scale over time. And I think there&#8217;s a lot of things yet to be worked out and much of that&#8217;s going to come through who we work with, right?</p>\n\n\n\n<p>So right now it&#8217;s a small group of products, but I&#8217;m rapidly expanding that. And with each new product that comes in, where they&#8217;re bringing new ideas, new questions. The heart of this has been how do we create something that naturally builds on itself as we have success with what&#8217;s in front of us?</p>\n\n\n\n<p>[00:28:34] <strong>Nathan Wrigley:</strong> The model that you&#8217;ve just described is you&#8217;re building this, as a company comes in you&#8217;ll onboard them and give them the benefits that you can provide at the moment. Presumably the idea is that over time more and more of these will come on.</p>\n\n\n\n<p>And then you will have some kind of quorum of companies, enough to make this guild have enough clout out there so that you&#8217;re widely recognized. The name is out there. Everybody knows there&#8217;s benefits in this. But you&#8217;re in that kind of onboarding phase.</p>\n\n\n\n<p>Now it strikes me that if I were to join a guild, maybe there&#8217;s a piece of me coming to you that would have some sort of exclusionary principle in the back of my mind. In other words, okay I am, I don&#8217;t know, let&#8217;s say I&#8217;m an SEO plugin or something like that. And I&#8217;m thinking to myself, I&#8217;m seeing Guildenberg all over the place. This looks like something I could be a part of. But I want to be the SEO person. How do we work around that?</p>\n\n\n\n<p>Because I think in the traditional guild structure that was part of the deal, right? You got to be part of the guild and then you were the person in and we closed the door a little bit behind you because you&#8217;re living in that geographical area or whatever it may be.</p>\n\n\n\n<p>So the way to describe that here would be, okay you&#8217;re the SEO plugin. You&#8217;re the form plugin. You&#8217;re the speed optimization plugin. From the article that I&#8217;ve read you don&#8217;t want to do that. You want to welcome as many people in as you can, but from a product point of view, I guess I&#8217;d be thinking well I don&#8217;t really want to be in a guild with all my competitors.</p>\n\n\n\n<p>[00:30:03] <strong>Jonathan Wold:</strong> That&#8217;s a great question. And I think this is a good example where like the guild framing is, I think, the right framing for how we facilitate cooperation and collaboration amongst peers and that includes competitors.</p>\n\n\n\n<p>The piece of it though that puts it all in perspective is the app store direction, right? Like an app store that only has one SEO plugin for instance, I would argue and I think most people would agree, is not the best for the end users, right? And this is certainly the case for the hosting providers as well. They&#8217;re looking for options.</p>\n\n\n\n<p>So for us to do our jobs effectively, it&#8217;s not for us to like decide who&#8217;s the best one in this space. It&#8217;s to level the playing field to the benefit of the end users and for the host. Like okay let&#8217;s have security standards now, performance standards. Let&#8217;s have standardized design kits that can be used, right? Let&#8217;s abstract out the baseline stuff and let the product creators innovate on top of that and let the market determine. Let the end users determine which ones are the best through that feedback loop.</p>\n\n\n\n<p>So I think there&#8217;s people who certainly won&#8217;t like it. Oh there&#8217;s a competitor in here as well. But if you just take it through the app store framing, I certainly don&#8217;t want to be part of an app store or have one that only has one app for a particular category. It&#8217;s like I want choices.</p>\n\n\n\n<p>[00:31:23] <strong>Nathan Wrigley:</strong> Yeah it&#8217;s interesting because it&#8217;s just the language of guild I think is what promoted that question because it kind of feels like that maybe was the value of a guild back in the day.</p>\n\n\n\n<p>[00:31:31] <strong>Jonathan Wold:</strong> And certain types of guilds, right? One of the common examples was of a trade craft. Everyone in the guild was a certain type of trades person and they&#8217;re all competitors. So to your point yes, sometimes there was geographic differences but there&#8217;s also plenty of these be in the same city. But they were aligning their interests against sometimes other guilds. As long as you&#8217;re clear on what you&#8217;re after there&#8217;s not a problem with people competing.</p>\n\n\n\n<p>It&#8217;s going to be a challenge I&#8217;m certain of that. And part of why it&#8217;s so important to get the incentives right is much of that can sort itself out when you&#8217;re clear on what you&#8217;re here to do. And for me I&#8217;d always bring it back to hey we&#8217;re here to create a better ecosystem for end users. We all benefit from that.</p>\n\n\n\n<p>And so for instance one of the dilemmas ends up being, someone creates a great WordPress plugin. How do they handle it becoming part of Core? Or if some piece of it&#8217;s sort of taken out. And those are examples of things that we have to come to terms with.</p>\n\n\n\n<p>I&#8217;m sure that there are people who are upset when Apple baked a flashlight into iOS. The flashlight apps kind of died overnight, right? But from an overall good of the ecosystem perspective, I think the majority of folks would agree that that was useful and that was best to have just built directly in.</p>\n\n\n\n<p>So there are things like that that you have to deal with. And my hope is that the construct of a guild on the people side of things gives us a place to do those things fairly and openly, rather than just like arbitrary and behind the scenes. There will be challenges. I think if we stay fixed on where the incentives are and aligning them, it&#8217;s going to be at least easier to navigate the challenges.</p>\n\n\n\n<p>[00:33:04] <strong>Nathan Wrigley:</strong> Yeah. You mentioned earlier that the kind of app store, for want of a better word, was the North Star. Now you&#8217;re not there yet. Presumably the distribution piece, which is what you said you&#8217;re concentrating on at the moment, that&#8217;s the low hanging fruit, because if people come to you you&#8217;re very well connected, you have that within your grasp. You can connect people. You know people in the ecosystem.</p>\n\n\n\n<p>The other bits and pieces will come over time. But now this raises the always difficult question of finance. Because something like this will not be easy. And if it&#8217;s going to stretch just beyond the bounds of you and your co founder then presumably real work needs to be done, real time needs to be spent. And although that could be done with volunteers, really what would be the difference with what we&#8217;ve got now?</p>\n\n\n\n<p>So let&#8217;s talk about that. Let&#8217;s talk about how you&#8217;re thinking of structuring this financially. I&#8217;m guessing at the moment people that come to you are paying you a fee. Maybe not. But in the future do you want to move this to more of a, I don&#8217;t know, subscription model, a percentage of revenue model? Something like that.</p>\n\n\n\n<p>[00:34:10] <strong>Jonathan Wold:</strong> So great question. That&#8217;s a lot of what we focus on figuring out. So I have two co founders, Anna Maria Radu and Matt Fields. And so the three of us together, sort of the core base. We started this a year and a half ago but we&#8217;re slowly but surely also expanding the team.</p>\n\n\n\n<p>So the way that we make money, we have the Gildenberg Partnership Program, that&#8217;s the one that focuses on distribution. For a product that wants to get distribution they come in and they pay an onboarding fee. That will vary. It generally starts at like 10,000 up to 30,000, but it&#8217;s dependent on sort of what&#8217;s involved.</p>\n\n\n\n<p>And that covers our work on especially the first two things. So we look at the monetisation, we look at compatibility, we create a roadmap for that product. Like, all right, these are the things that you need to do to get ready for distribution. We look at the foundation for partnerships.</p>\n\n\n\n<p>So there&#8217;s just time upfront there that&#8217;s involved. My hope is to see that reduce as time goes on, right? Become more standardized, more just open source as we create playbooks. That&#8217;s a starting point but the real heart of the business is a rev share model. So what we do is when we bring in a product and we do distribution deals with them, our standard approach is 25% of the deals in the first year. And then it goes down to 15% on average thereafter.</p>\n\n\n\n<p>So if we take in a new product and we help them sign a million dollar deal then $250,000 of that revenue goes to Guildenberg. And so we&#8217;re not taking from their existing. We&#8217;re not tapping into that business. It&#8217;s all on what we add which is the heart of what brings folks to us to begin with.</p>\n\n\n\n<p>What&#8217;s great about that is that we&#8217;re able to be really upfront with the hosts. When we go to a host and bring them in as distribution partners we&#8217;re not taking anything from them. We&#8217;re aligned on the interests of the products. And when the product is winning that&#8217;s when we get paid.</p>\n\n\n\n<p>[00:35:59] <strong>Nathan Wrigley:</strong> So just to be clear on that, in the scenario of a million dollars, so you connect company A with hosting company B. And the deal there was a million dollars. I think you mentioned $250,000 would go where?</p>\n\n\n\n<p>[00:36:13] <strong>Jonathan Wold:</strong> So that&#8217;s actually a good question. That somewhat depends. And this is a good example of what we&#8217;re working out. So in some situations we might be splitting that with the host who did the deal. And others the host would be on top of that. That somewhat depends on the product type and the category.</p>\n\n\n\n<p>That&#8217;s a lot of what work we&#8217;re doing now is figuring out what&#8217;s fair, what makes sense. The guidance is we want to win for all involved, right? But the heart of it is, it&#8217;s like two things. One we&#8217;re incentivising ourselves. We make our money on the successful distribution side, right? So the revenue share is the heart of Guildenberg&#8217;s economic engine.</p>\n\n\n\n<p>And two, we&#8217;re directionally going towards that app store. You can imagine the future state where it&#8217;s a straight 15%, right? And that covers the app store costs. And there&#8217;s a split there with the hosting providers who also offer it. So it&#8217;s like I&#8217;ll be flexible along the way to get there and do what makes sense, but I&#8217;m very clear on where we&#8217;re going. Which is going to be this sort of standardized target of 15% across products.</p>\n\n\n\n<p>[00:37:18] <strong>Nathan Wrigley:</strong> Okay so in the Apple ecosystem which we had a moment ago, we were talking about that, there was some parallels there. The entire model of the Apple ecosystem really is profit, and dividends to shareholders. That&#8217;s the mantra. So I guess that question has to come next. Is there some alignment there? Is this the model that you&#8217;re going to be promoting?</p>\n\n\n\n<p>In other words, if you grow do the coffers of Gildenberg grow? Or is there some reasonable, I don&#8217;t know, churn of those finances giving back to the community, giving back to the WordPress project? How does all of that work? In other words is Guildenberg a for profit? Is it a for profit with benefits to the WordPress community? Is it just a not for profit? What&#8217;s going on?</p>\n\n\n\n<p>[00:38:02] <strong>Jonathan Wold:</strong> That&#8217;s a great question. This is another good example of something that I&#8217;m still working out. So let me start with my intentions. One of my motivating pieces behind this, if I could just wave a wand based on how I see things today, acknowledging that they could change and there&#8217;s pieces that I&#8217;m sure I&#8217;m missing. My ideal would be to get to where a product is paying 15% for distribution. And 5%, so 33 of that 15, of that revenue is going directly to the project.</p>\n\n\n\n<p>In my current thinking we have two organizations if you will. Guildenberg Inc. which is for profit and does the distribution work, and returns dividends to its shareholders. Which can include members, it includes investors, etc. I want to be moving increasingly towards being community owned.</p>\n\n\n\n<p>And then you have the .org, if you will, which is basically the member pool. So in my ideal an increasing amount of revenue goes into that pool to then be managed and directed by the members, right?</p>\n\n\n\n<p>As one example, let&#8217;s say someone joins the app store in the future. They&#8217;re paying the 15%, they don&#8217;t really care about the project at all. So 5% or 33 of that 15 goes into the member pool on their behalf. And they really have no say over what it. So it&#8217;s directed by the members into projects, into initiatives and .org that matter to them.</p>\n\n\n\n<p>Now, if that member, that product, decides that they do care they can then join the guild and now they have a say over where their funds go. They might say oh I care more about this initiative over here. So that&#8217;s the high level idea. Part of what set me out, what I set out to do here is like, how do we solve an incentives problem across the space?</p>\n\n\n\n<p>I don&#8217;t want people to do Five For The Future just because they love WordPress. I want there to be an economic incentive behind it. And to me, what I&#8217;m intrigued by, what I&#8217;m working towards is, how do you just build that into this App Store model?</p>\n\n\n\n<p>So that&#8217;s the direction. I don&#8217;t know how we get there. I suspect that you have the for profit piece and then a separate organization for the member pool. I don&#8217;t know and people have ideas, I want to hear them. I&#8217;ve had a number of inputs already. We don&#8217;t have to solve that problem today. We&#8217;re working on just getting the economic engine up and running, but that&#8217;s the stuff that I find especially motivating.</p>\n\n\n\n<p>And that&#8217;s been a big piece of this. How do we create incentives that provide funding that the project needs to work on the things that might not get the attention otherwise?</p>\n\n\n\n<p>[00:40:29] <strong>Nathan Wrigley:</strong> You said something a moment ago which, I&#8217;ve got to say, I&#8217;m not entirely sure I understood it. Because you implied that you could opt out say of the Five For The Future piece if you weren&#8217;t a part of the guild, or if you hadn&#8217;t joined the guild. But the implication would have been that you were still part of the App Store, let&#8217;s call it that. So have I misunderstood? Can you be somebody who can have a plugin on the Guildenberg marketplace but not be a part of the guild?</p>\n\n\n\n<p>[00:40:56] <strong>Jonathan Wold:</strong> Yes. The idea is, so at least in my current thinking, what would happen is that if you just join the app store, it&#8217;s like a level one, there&#8217;s requirements and standards to do that. But you don&#8217;t have to be active in the community and be participating and kind of doing all this stuff.</p>\n\n\n\n<p>You can join for just the pure business incentives. As long as you play by the rules you&#8217;re in, right? Because it&#8217;s merit based, it&#8217;s based on your behavior. As long as you&#8217;re playing by the rules, you&#8217;re in. And my thinking, so at that level, you don&#8217;t care where your 15% goes to.</p>\n\n\n\n<p>We&#8217;re going to spend it on your behalf on the project, we&#8217;ll direct the funds. And the idea is that a year later you&#8217;re like hey this WordPress community is quite cool. You discover that the guild is something that you can join and you apply to do so, the members accept you. Then at that point, that 5% of the 15, the funds that have been allocated on your behalf automatically, you could now have a say over where they go. That&#8217;s the idea. Does that make sense?</p>\n\n\n\n<p>[00:41:56] <strong>Nathan Wrigley:</strong> That&#8217;s cleared that up. Yeah thank you. That makes sense. Now you said the word behavior there, which is kind of interesting. Let&#8217;s extrapolate that because if we run that forwards, you can imagine a nightmare scenario where there is just this cabal of people who have control over the behavior.</p>\n\n\n\n<p>What the behavior is that&#8217;s appropriate to be in and out of this community. And you can imagine a scenario in, let&#8217;s say that in 10 years from now Guildenberg is monstrously successful. Almost everybody&#8217;s going there to inquire about premium plugins and what have you. And yet we have gatekeepers of behavior and all of that.</p>\n\n\n\n<p>So I want to address that. Almost every part of human history shows that given power things start to go a little bit pear shaped. And maybe the incentives that were there at the beginning of the project are not the incentives that approach when money is involved, or you&#8217;re becoming successful, or you sense that somebody else has an idea which conflicts with you.</p>\n\n\n\n<p>So let&#8217;s just get into that. Who moderates the behavior? Who creates that charter? And how do we ensure that this cabal doesn&#8217;t occur?</p>\n\n\n\n<p>[00:43:07] <strong>Jonathan Wold:</strong> Okay so there are two threads here that we have to look at. First, why behavior, and then second, how do you do the governance piece? It&#8217;s basically what we&#8217;re touching on, right?</p>\n\n\n\n<p>Oh I love this stuff. So first one of the challenges when I was looking at the history of guilds is that because of human nature I&#8217;d argue, we tend towards exclusivity. We want to work with people like us, that look like us, talk like us, whatever the reasons are, right?</p>\n\n\n\n<p>And so this is just like how we tend. So while there were a lot of good things that guilds did, they were also highly exclusionary at times, right? Where it just sort of propagated and just made even more prevalent some of the challenges that we recognize today of inclusivity and diversity, right?</p>\n\n\n\n<p>So I feel like we can&#8217;t trust ourselves because we&#8217;re going to tend by default to just attract people that are like us. Which I&#8217;d argue is not good for the ecosystem as a whole. So in sorting through that for a while, it&#8217;s like well okay then what can you use? What becomes the basis?</p>\n\n\n\n<p>And the only thing that stands out to me as fair is behavior. So it doesn&#8217;t matter where you&#8217;re from, what you look like etc. If you abide by the same rules. And so let&#8217;s start with this. It feels to me like the right idea in principle. The question becomes, how do you practice it?</p>\n\n\n\n<p>[00:44:24] <strong>Nathan Wrigley:</strong> The devil is in the detail here, isn&#8217;t it.</p>\n\n\n\n<p>[00:44:26] <strong>Jonathan Wold:</strong> But you got to get that right first, right? So it&#8217;s like okay we can say behavior. Now there&#8217;s a couple of things we have to work with. We have our core values in WordPress. Andrea Middleton did a fantastic talk on this a couple of years ago. And there are a few things that stand out. Someone didn&#8217;t make a list somewhere these are just what we practice. And she did the work sorting through them.</p>\n\n\n\n<p>We have this concept of autonomy. We value in WordPress doing what we want and we respect the freedom of others to do the same right?</p>\n\n\n\n<p>We also have this concept of like a duocracy, like you get credit for doing. We care about utility, making stuff that works, that solves problems. We&#8217;re generally skeptical as a community. This conversation is a great example of it, right? We ask why, and we keep asking. And then quite importantly, we do a good job at our core of giving credit where credit&#8217;s due, right?</p>\n\n\n\n<p>And so there&#8217;s a lot here Nathan to be figured out but I&#8217;ll just kind of give you one example. One of the behaviors that I would expect members to adhere to is, let&#8217;s take that last one, giving credit where credit is due. This is GPL, right? So on the one hand, you&#8217;re free to take someone else&#8217;s work, change the name on it and resell it as your own. You&#8217;re legally free to do that. And I respect your choice and freedom to do that anytime that you want to.</p>\n\n\n\n<p>But in terms of who I want to work with, I wouldn&#8217;t want to work with someone who doesn&#8217;t give the credit to the person who originally did that. They&#8217;re legally not obligated to do so, right?</p>\n\n\n\n<p>You can just kind of do whatever you want, it&#8217;s GPL. But when I think about the behavior that I would want to build around it&#8217;s like hey yeah I copied someone else&#8217;s work and I gave them credit for doing so and built on that.</p>\n\n\n\n<p>That&#8217;s one example of a behavior where I would want people in who are happy to give the credit where it&#8217;s due to those that they worked with. And if you made a mistake, oh wow yeah I forgot to give attribution there. No problem. Let&#8217;s fix that. And they prioritize that because that&#8217;s one of the things that we value.</p>\n\n\n\n<p>[00:46:29] <strong>Nathan Wrigley:</strong> I guess the other piece there would be the cabal piece as I mentioned, you know, just idea that you would have people who had been there from the very beginning. You can see how this works. It all boils down really to the word governance I think.</p>\n\n\n\n<p>Who&#8217;s governing and what gives them the right to stay in that position? And who ultimately would be the person to say well you&#8217;re right at the top of this pyramid here? But your behavior isn&#8217;t living up to the code therefore you&#8217;re going to have to think about either modifying your behavior or going elsewhere. That&#8217;s a difficult thing to do because they&#8217;re the people that are governing, if you like, and yet you&#8217;re wanting them to adapt their behavior.</p>\n\n\n\n<p>[00:47:06] <strong>Jonathan Wold:</strong> Okay so let&#8217;s talk about that. So again, that&#8217;s another one, lots to figure out there. But my guiding point, my starting point here, Leslie Sims pointed me to Elinor Ostrom&#8217;s book, Governing The Commons: The Evolution of Institutions for Collective Action. It&#8217;s a fascinating book. I highly recommend it.</p>\n\n\n\n<p>And it goes back and looks at the history of commons. And contrary to what people think there are groups who&#8217;ve successfully self governed for as long as a thousand years over scarce fixed resources. And what Ostrom does in her work here is she looks at all the data and breaks it down. Figures out what&#8217;s working, what doesn&#8217;t. And she came up with eight design principles for what she calls a common pool resource.</p>\n\n\n\n<p>So I&#8217;ve still yet to figure this out. But in my mind part of the key here is you have the commercial interest like the Guildenberg .com, right, if you will? And then you have this member pool which is like that Five For The Future type resource.</p>\n\n\n\n<p>And the key there is that over time we want that to become the biggest thing, right? If the .com interests are successful we&#8217;re slowly but surely making the guild more and more powerful, if you will, by it having more and more resources. Every new product that comes in, that is growing.</p>\n\n\n\n<p>So then it comes down to okay how do we then govern that growing pool of resources? And this is where Ostrom&#8217;s work comes in. She has eight principles for self governance in a commons scenario. And there are a couple of different pieces to it.</p>\n\n\n\n<p>The first one is this idea of having clear boundaries. So there&#8217;s a very clear definition of what it means to be a member. This is where the behavior standards come in. You need to make sure that those make sense for the ecosystem that you&#8217;re in. They need to hold up to scrutiny. You need to make sure that the members themselves can modify the rules. That&#8217;s the key piece here, right?</p>\n\n\n\n<p>And there&#8217;s a number of things that you have to think through. It&#8217;s not, it&#8217;s tricky, and a lot of it is this idea of you&#8217;ve creating an environment where there&#8217;s intended to be a healthy tension. And that&#8217;s part of how you prevent capture, right? So it&#8217;s not trivial.</p>\n\n\n\n<p>But we have plenty of examples of how people have done this in the past. And the heart of my interest and what I&#8217;m moving towards is like okay let&#8217;s take what&#8217;s already been established here, let&#8217;s combine some of these ideas. The construct of a guild but then adding in the concept of a member, a resource pool, that is governed by the members. Which is something that guilds often didn&#8217;t do. It tended to be kind of arbitrary but they had some of these pieces.</p>\n\n\n\n<p>So yeah there&#8217;s a lot of work to be done there. I feel directionally clear and the focus right now is on the economic engine. But as time goes on what I&#8217;m excited about is drawing in people who have a lot more experience than I do to take some of these ideas and break them down.</p>\n\n\n\n<p>I know that we&#8217;ll make mistakes and my intention is that by staying focused on aligning incentives we&#8217;re giving ourselves a reason to learn from those mistakes and make it better. Yeah I at least feel confident in the direction where it&#8217;s all going.</p>\n\n\n\n<p>[00:50:12] <strong>Nathan Wrigley:</strong> Yeah. So you&#8217;re working on the distribution piece at the moment. It in a sense is the underpinnings of the monetisation and the compatibility pieces. They&#8217;re going to grow hopefully out of all of the distribution model that you&#8217;re working on.</p>\n\n\n\n<p>Okay so you&#8217;re a year and a half in. This is the final question I&#8217;ve got for you. Do you have cause to be optimistic? Having had 18 months of playing around with this and obviously bringing some people on board. Do you have optimism? Does this still seem like it&#8217;s a long way off? Or do you feel that there&#8217;s legs to this? And two years from now we might be having a more in depth conversation about something that&#8217;s moved forward.</p>\n\n\n\n<p>[00:50:47] <strong>Jonathan Wold:</strong> So I&#8217;m optimistic by nature. What&#8217;s been interesting to me about this is that I&#8217;ve tried somewhat hard over the years to kind of convince myself out of doing this. And Nathan after a year and a half of effectively full time on this, if I knew how hard it was going to be I probably would have tried harder to convince myself to not do it.</p>\n\n\n\n<p>So hey I&#8217;m optimistic as a visionary. And I&#8217;ve been cautious about this. But the main reason that we are where we are and we have had significant traction is that at every turn I&#8217;ve either had yeses or affirmation of direction, or we&#8217;ve identified an obstacle that has offered an opportunity to clarify which has then led to a yes.</p>\n\n\n\n<p>So my core focus has been talking with product companies and with hosting companies. And in those conversations I&#8217;ve just continued to get clearer and clearer on the problem sets and where the incentives are and what&#8217;s motivating. And I&#8217;ve either had explicit like, yes we want to be a part of this or, yes if you solve that of course we want to, like, let&#8217;s talk again.</p>\n\n\n\n<p>And so it&#8217;s been a curious tension for me where it&#8217;s really hard because you&#8217;re tackling a lot of pieces at once. There&#8217;s a lot of moving parts. But it&#8217;s also easy in the sense that what we&#8217;re really just trying to do is create incentives to solve these problems that people recognize exist.</p>\n\n\n\n<p>I&#8217;m happy with the progress. A lot of it&#8217;s been around like for me, one of my marks or my indicators is what am I hearing when I go to a WordCamp, right? I was starting some of these conversations about a year ago at WordCamp Europe. And if I look at what was happening then which was encouraging and optimistic, encouraged my optimism then versus now, it&#8217;s all just dialed up.</p>\n\n\n\n<p>And now I&#8217;m having conversations with investors about giving us more capital to grow more quickly. And those are also going well. So we&#8217;ll see. We&#8217;ll see what happens but I&#8217;m encouraged. And this is one where as much as I believe in it, I&#8217;ve tried pretty hard to convince myself to like go do something easier.</p>\n\n\n\n<p>And it just kept coming back. And my co founders are also encouraged that they don&#8217;t share my optimism. And so when I talked to Anna or Matt about this and they&#8217;re really like okay this is good. We&#8217;re seeing pieces of the puzzle sort of come together and they&#8217;re encouraged. I&#8217;m like okay well, then that&#8217;s another indicator that we&#8217;re going the right direction.</p>\n\n\n\n<p>And what&#8217;s going to really matter though, what it all boils down to, is are we able to successfully help these products get distribution? And can we do that at scale? I&#8217;ve done it for individual products. We&#8217;re seeing good early signs, it does take time. And that&#8217;s going to be the proof, right? Can we have a meaningful impact on these products?</p>\n\n\n\n<p>And that&#8217;s what all of our focus is on right now. I&#8217;m encouraged with what I&#8217;m seeing. And I think what you&#8217;ll see over the next year or two is that becoming a lot more public. And what I want to see happen out of this is to take the things that work and open source them. Make it available for folks. There&#8217;s no benefit because we have this clear overall guidance to grow and improve the ecosystem. We&#8217;re not trying to keep it to ourselves.</p>\n\n\n\n<p>[00:53:55] <strong>Nathan Wrigley:</strong> It certainly will be worth listening back to this in a year&#8217;s time and see where you are. Obviously from my point of view, I hope it goes well. Fingers crossed that it&#8217;s going to all pan out for you. If somebody has listened to this and I would imagine probably they are a product maker will be most interested to get in touch with you because they&#8217;ve got things that they want to discuss with you. What are the best places for us to find you?</p>\n\n\n\n<p>[00:54:16] <strong>Jonathan Wold:</strong> Just reach out to me through the Guildenberg website, guildenberg.com, jonathan@guildenberg.com. Or find me at a WordCamp. I&#8217;ll be at WordCamp US. Looking forward to WordCamp Asia next year, WordCamp Europe, and I&#8217;m going to start going out to some of the regional ones as well.</p>\n\n\n\n<p>[00:54:31] <strong>Nathan Wrigley:</strong> Jonathan Wold, thank you for chatting to me today on the podcast.</p>\n\n\n\n<p>[00:54:34] <strong>Jonathan Wold:</strong> Thanks for having me, Nathan.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://jonathanwold.com/\">Jonathan Wold</a>.</p>\n\n\n\n<p>Jonathan has been deeply involved in the WordPress community for almost two decades. He began writing tutorials and freelancing, which eventually led him to the agency world where he worked on large enterprise projects. In the past five to six years, Jonathan has shifted his focus to the broader WordPress ecosystem. He’s also had the opportunity to work at WooCommerce and collaborate with the team at Automattic. Despite the demands of his busy career, Jonathan&#8217;s passion for WordPress has only grown stronger over the years.</p>\n\n\n\n<p>Jonathan is one of the co-founders of <a href=\"https://guildenberg.com/\">Guildenberg</a>, and in the podcast today we discuss what this project is, and how it aims to revolutionise the WordPress product ecosystem.</p>\n\n\n\n<p>We start the conversation by highlighting the importance of behaviour in the WordPress community and the core values that drive the platform; autonomy, meritocracy, utility, and giving credit where credit is due. Jonathan emphasises the significance of giving credit to the original creators of work, even though it may not be legally required.</p>\n\n\n\n<p>We move on to talk about how Guildenberg aims to solve some of the key problems faced by WordPress product owners, such as monetisation, compatibility, and distribution. Jonathan envisions a system where product owners pay a fee for distribution of their products, with a portion of that revenue going back to the Gildenberg project. By aligning incentives and providing economic motivations for contributors, Guildenberg seeks to create a sustainable and thriving ecosystem for the open web.</p>\n\n\n\n<p>We get into the inspiration behind the name Guildenberg, which combines the ideas of Gutenberg and the guild institutions from mediaeval Europe. We also discuss the team&#8217;s long-term vision of creating an app store for WordPress that spans the majority of installations, offering monetisation options and enforcing compatibility standards.</p>\n\n\n\n<p>If you’re a WordPress developer who is keen to find a way to create visibility for your product, 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://guildenberg.com/\">Guildenberg website</a></p>\n\n\n\n<p><a href=\"https://jonathanwold.com/a-guild-for-wordpress-product-businesses/\">Jonathan&#8217;s article &#8211; A Guild for WordPress Product Businesses</a></p>\n\n\n\n<p><a href=\"https://archive.org/details/ElinorOstromGoverningTheCommons\">Elinor Ostrom&#8217;s book, Governing The Commons: The Evolution of Institutions for Collective Action</a></p>\n\n\n\n<p><a href=\"https://wordpress.tv/2019/10/31/andrea-middleton-will-what-got-us-here-get-us-there-wordpress-community-at-scale/\">Andrea Middleton: Will What Got Us Here, Get Us There? WordPress Community at Scale</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, 16 Aug 2023 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:164:\"Post Status: Translations Across the Project • Admin Design • New Blocks Page • Working Group on Organizations Supporting WordPress • Contributor Mentorship\";s:7:\"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=150145\";s:7:\"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:159:\"https://poststatus.com/translations-across-the-project-admin-design-new-blocks-page-working-group-on-organizations-supporting-wordpress-contributor-mentorship/\";s: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:19788:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (August 7, 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\">With just a few days before Community Summit, Contributor Day, and WordCamp US, many initiatives across the project are gearing up for time well-spent together. Docs, Training, and several other teams are joining together to work on translations and localizations in a way that supports Gutenberg Phase 4 Multilingual.The Design team is working on the&hellip; </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box150145_a5ac79-bb\"><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=\"kb-svg-icon-wrap kb-svg-icon-fas_globe-asia kt-info-svg-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Translations, Dashboard Redesign, Blocks page, Supporting Orgs, Mentorship</h2><p class=\"kt-blocks-info-box-text\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4ac.png\" alt=\"💬\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/polyglots/2023/08/15/discussion-for-a-proposal-for-wp-org-content-translation-and-localization/\">Discussion for a proposal for WP.org content translation and localization</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f3a8.png\" alt=\"🎨\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/\">Admin Design Kickoff</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f195.png\" alt=\"🆕\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/meta/2023/08/11/introducing-wordpress-org-blocks/\">Introducing WordPress.org/blocks</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f44d-1f3ff.png\" alt=\"👍🏿\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/meta/2023/08/09/organizations-supporting-wordpress-org/\">Organizations Supporting WordPress.org</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f9d1-1f3fc-200d-1f3eb.png\" alt=\"🧑🏼‍🏫\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/project/2023/08/11/the-inaugural-cohort-of-the-wordpress-contributor-mentorship-program-has-concluded/\">The Inaugural Cohort of the WordPress Contributor Mentorship Program has Concluded</a></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-150145_9cb3a4-58\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-150145_050cc2-2e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-2 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://jeanbaptisteaudras.com/2023/08/contribution-stats-for-wordpress-6-3-lionel/\">Contribution Stats for WordPress 6.3 « Lionel »</a></blockquote>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</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<div class=\"wp-block-columns is-layout-flex wp-container-7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-5 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/08/16/contributor-working-group-mentorship-chat-agenda-august-17th-0700-utc-apac-emea-and-1600-utc-amer/\">Contributor Working Group: Mentorship Chat Agenda | August 17th 07:00 UTC (APAC/EMEA) and 16:00 UTC (AMER)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/14/wcus-2023-community-team-event-at-contributor-day/\">WCUS 2023: Community Team event at Contributor Day</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/09/recap-of-the-diverse-speaker-training-group-wpdiversity-amer-emea-on-august-9-2023/\">Recap of the Diverse Speaker Training group (#WPDiversity) AMER/EMEA on August 9, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/2023/08/16/a-week-in-core-august-14-2023/\">Two Weeks in Core – August 14, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/15/status-update-on-the-interactivity-api/\">Status update on the Interactivity API</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Phase 3 Ideations</h3>\n\n\n\n<ul>\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\" rel=\"noreferrer noopener\">Real-Time Collaboration</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/04/workflows/\" rel=\"noreferrer noopener\">Workflows</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/05/revisions/\" rel=\"noreferrer noopener\">Revisions</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/07/media-library/\" rel=\"noreferrer noopener\">Media Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/10/block-library/\" rel=\"noreferrer noopener\">Block Library</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/12/admin-design/\" target=\"_blank\" rel=\"noreferrer noopener\">Admin Design</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/\">Admin Design Kickoff</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/08/whats-new-for-developers-august-2023/\">What’s new for developers? (August 2023)</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/15/dev-chat-agenda-august-16-2023/\">Dev Chat agenda, August 16, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/14/editor-chat-agenda-16-august-2023/\">Editor Chat Agenda: 16 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><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/08/14/design-share-jul-31-aug-11/\">Design Share: Jul 31-Aug 11</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/\">Admin Design Kickoff</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/08/15/agenda-for-docs-team-bi-weekly-meeting-august-15-2023/\">Agenda for Docs Team bi-weekly meeting August 15, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/14/documentation-team-update-august-14-2023/\">Documentation Team Update – August 14, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/2023/08/16/hosting-team-meeting-agenda-8-16-2023/\">Hosting Team Meeting Agenda 8-16-2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/hosting/2023/07/26/wordpress-hosting-survey/\">WordPress Hosting Survey</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/marketing\">Marketing</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/marketing/2023/07/10/notes-global-marketing-team-meeting-4-july-2023/\">Notes: Global Marketing Team meeting, 4 July 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/14/marketing-team-update-the-first-half-of-2023/\">Marketing Team Update: The first half of 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/08/11/introducing-wordpress-org-blocks/\">Introducing WordPress.org/blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/08/09/organizations-supporting-wordpress-org/\">Organizations Supporting WordPress.org</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/08/03/matrix-chat-summary-august/\">Matrix chat Summary – August 3, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/updates/2023/08/08/mobile-team-update-august-8th/\">Mobile Team Update – August 8th</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/08/07/last-week-openverse-2023-07-31-2023-08-07/\">A week in Openverse: 2023-07-31 – 2023-08-07</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/28/openverse-monthly-priorities-meeting-2023-08-02/\">Openverse Monthly Priorities Meeting 2023-08-02</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/08/15/performance-chat-summary-15-august-2023/\">Performance Chat Summary: 15 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/08/14/plugin-review-team-14-august-2023/\">Plugin Review Team: 14 August 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/16/agenda-weekly-polyglots-chat-august-16-2023-1300-utc/\">Agenda: Weekly Polyglots Chat – August 16, 2023 (13:00 UTC)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/15/discussion-for-a-proposal-for-wp-org-content-translation-and-localization/\">Discussion for a proposal for WP.org content translation and localization</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/08/11/the-inaugural-cohort-of-the-wordpress-contributor-mentorship-program-has-concluded/\">The Inaugural Cohort of the WordPress Contributor Mentorship Program has Concluded</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/07/28/sustainability-chat-summary-july-28-2023/\">Sustainability Chat Summary, July 28, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/2023/08/15/test-team-reps-call-for-nominations-3/\">Test Team Reps: Call for Nominations</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/08/15/test-team-at-wcus-2023/\">Test Team at WCUS 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/14/test-team-update-14-august-2023/\">Test Team Update: 14 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/08/11/blue-note-the-second-community-theme-is-released/\">Blue Note: The second community theme is released</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/15/themes-team-update-august-15-2023/\">Themes team update August 15, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/08/04/wcus-contributor-day-tutorials-workshop-in-person-remote/\">WCUS Contributor Day: Tutorials Workshop (In-Person &amp; Remote)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/03/introducing-the-training-team-guide-program/\">Introducing the Training Team Guide Program!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/02/announcing-the-first-learn-wordpress-course-cohort/\">Announcing the first Learn WordPress Course Cohort.</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/14/training-team-meeting-recap-8th-august-2023/\">Training Team Meeting Recap – 8th August 2023</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" 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/embedding-media-and-third-party-content-on-your-website/\">Embedding media and third-party content on your website</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/testing-your-plugins-for-php-version-compatibility/\">Testing your plugins for PHP version compatibility</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=https-www-meetup-com-learn-wordpress-online-workshops-events-295453051\">The Wide World of WordPress Events</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=contributing-to-the-learn-wordpress-platform-part-1\">Contributing to the Learn WordPress platform – part 1</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=whats-new-for-developers-august-2023\">What’s new for developers? (August 2023)</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-12\">WP dev livestream: Sendig block theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=training-team-contributor-hour\">Training Team Contributor Hour</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=website-auditing-and-conversion-optimization\">Website auditing and conversion optimization</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wordpress-database-optimization-and-maintenance\">WordPress database optimization and maintenance</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=creating-a-contact-page\">Creating a contact page</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" 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/developing-with-the-wordpress-rest-api/\">Introduction to developing with the WordPress REST API</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/tv\">WordPress TV</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/tv/2023/06/15/enhancing-slide-management-for-video-publications/\">Enhancing Slide Management for Video Publications</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/\">jQuery 3.7.0</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-1\">PHP 8.3.0 Alpha 3 available for testing</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\"></a><a href=\"https://www.php.net/archive/2023.php#2023-07-06-2\">PHP 8.2.8 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-3\">PHP 8.1.21 Released!</a></li>\n\n\n\n<li><a href=\"https://github.com/PHPMailer/PHPMailer/releases/tag/v6.8.0\">PHPMailer 6.8.0</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/\">TC39</a></li>\n\n\n\n<li><a href=\"http://github.com/composer/composer/releases/tag/2.5.8\">Composer 2.5.8</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&#8217; <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It&#8217;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://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, 16 Aug 2023 13:25: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: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: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:55:\"WPTavern: WordPress.org Adds New Page to Explain Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147861\";s:7:\"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://wptavern.com/wordpress-org-adds-new-page-to-explain-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4226:\"<p>What are blocks? WordPress has added a new resource to its website at <a href=\"https://wordpress.org/blocks/\">wordpress.org/blocks</a> that attempts to explain blocks visually with simple language. The landing page is aimed at those who are new to the block paradigm or those who may not yet fully understand blocks&#8217; ease of use and powerful features.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"2224\" height=\"1200\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/08/Screen-Shot-2023-08-15-at-9.25.01-PM.png\" alt=\"\" class=\"wp-image-147867\" />\n\n\n\n<p>Automattic-sponsored core contributor Anne McCarthy <a href=\"https://make.wordpress.org/meta/2023/08/11/introducing-wordpress-org-blocks/\">announced</a> the new page on WordPress.org with a request for feedback, as this is the first iteration. The project was born out of <a href=\"https://github.com/WordPress/wporg-main-2022/issues/245\">ticket</a> on GitHub which outlines the need for more effective block marketing:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Currently, there isn&#8217;t a page on wordpress.org that explains in a compelling way what &#8216;Blocks&#8217; are or markets it very effectively on the website. We have a <a href=\"https://wordpress.org/plugins/browse/blocks/\">filter</a> in the plugin directory, which is useful, but that page is lacking the context of what blocks are, what the block editor is, and why it is so exciting. There are other pages, such as the <a href=\"https://wordpress.org/documentation/article/wordpress-block-editor/\">documentation</a>, that explains what the block editor is, but IMO it&#8217;s a bit wordy and explains how to use the editor, but not necessarily <em>why</em> you should use the editor and why it is unique and exciting.</p>\n<cite>WordPress.org GitHub Repository issue: <a href=\"https://github.com/WordPress/wporg-main-2022/issues/245\">Create &#8216;Blocks&#8217; Landing Page #245</a> &#8211; created by Ben Greeley</cite></blockquote>\n\n\n\n<p>One important consideration for contributors working on this project is the overlap with <a href=\"http://wordpress.org/gutenberg\">wordpress.org/gutenberg</a>. The Blocks page is more of a static brochure style introduction, whereas the Gutenberg page is a fully interactive demo that offers an overview of how the editor works. Although they are similar resources, they both have distinct purposes. </p>\n\n\n\n<p>McCarthy created a <a href=\"https://github.com/WordPress/wporg-main-2022/issues/318\">tracking issue</a> for the first iteration of this page, which functions as a mini roadmap for future improvements based on feedback she has already received. More accessibility improvements are coming in future versions, along with some sort of visual that will concisely demonstrate the connection between blocks, patterns, and themes. Contributors are also considering integrating WP Sandbox to make it possible to see blocks in action.</p>\n\n\n\n<p>&#8220;This is intended to be a starting point and not a final destination,&#8221; McCarthy said. &#8220;Your feedback is welcomed and needed to get to the next iteration.&#8221; </p>\n\n\n\n<p>The blocks page is one area of contribution where even people who are brand new to blocks could help to make the content more compelling and less confusing by leaving feedback on the <a href=\"https://make.wordpress.org/meta/2023/08/11/introducing-wordpress-org-blocks/\">post</a>.</p>\n\n\n\n<p>Blocks are something many casual WordPress users may still be trying to wrap their heads around, not to mention how they impact the ecosystem of plugins and themes. The <a href=\"https://wordpress.org/plugins/classic-editor/\">Classic Editor</a> plugin, which insulates users from the world of blocks, remains one of the most popular plugins with more than 5 million users. Its continued support is not guaranteed forever, especially as WordPress looks to <a href=\"https://wptavern.com/wordpress-kicks-off-admin-design-overhaul-with-discussion-on-initial-mockups\">revamp the admin design</a> to be more similar to the block editor. This landing page&#8217;s marketing for blocks offers a safe entry point for those who are curious about the block editor and want to explore more resources.</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, 16 Aug 2023 03:40:25 +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: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:75:\"Do The Woo Community: Diving Into the WordPress Community with Jorge Casals\";s:7:\"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=75981\";s:7:\"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://dothewoo.io/diving-into-the-wordpress-community-with-jorge-casals/\";s: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:437:\"<p>From his earlier experiences to an active WordPress community member, Jorge shares his journey and building products for WooCommerce.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/diving-into-the-wordpress-community-with-jorge-casals/\">Diving Into the WordPress Community with Jorge Casals</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, 15 Aug 2023 09: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:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s: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:82:\"WPTavern: Crocoblock to Host WordPress Web Agency AI Summit, September 28-30, 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=147593\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://wptavern.com/crocoblock-to-host-wordpress-web-agency-ai-summit-september-28-30-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:1510:\"<p><a href=\"https://crocoblock.com/\">Crocoblock</a>, a Ukraine-based company with <a href=\"https://profiles.wordpress.org/crocoblock/\">plugins on WordPress.org</a> as well as commercial products, is hosting a <a href=\"https://crocoblock.com/wordpress-web-agency-ai-summit/\">WordPress Web Agency AI Summit</a> event on September 28-30, 2023. The company has a community of more than <a href=\"https://www.facebook.com/groups/CrocoblockCommunity\">24K+ freelancers and web agencies on Facebook</a> and is moving to organize its first large virtual event that will be free for all attendees.</p>\n\n\n\n<p>The summit will cover practical use cases for AI in development, marketing, design, web agency management, and freelance services. It will include mixed formats, including case studies, workshops, and live panel discussions with Q&amp;A.</p>\n\n\n\n<p>Over the course of three days, speakers will give presentations in English from 10am &#8211; 2pm EST. The schedule features 10 speakers with commercial experience and proven success at applying AI to build WordPress sites. They will cover topics like how to build a search engine for a website using AI, AI tools for daily tasks, AI and accessibility, AI translations, and more.</p>\n\n\n\n<p>If you are interested to learn more about AI&#8217;s impact on the WordPress ecosystem and how to apply it to agency work, add the event to your calendar and <a href=\"https://crocoblock.com/wordpress-web-agency-ai-summit/\">sign up for free</a> on the Crocoblock website.</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, 15 Aug 2023 02:14:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:92:\"WPTavern: WordPress Themes Team Releases Blue Note, A Community-Supported Theme for Bloggers\";s:7:\"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=147784\";s:7:\"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:102:\"https://wptavern.com/wordpress-themes-team-releases-blue-note-a-community-supported-theme-for-bloggers\";s: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:2617:\"<p>WordPress&#8217; Themes team launched its <a href=\"https://wptavern.com/wordpress-themes-team-proposes-community-themes-initiative\">Community Themes initiative</a> earlier this year with the goal of bringing together contributors to build block themes year round, the same way that default themes are built and officially supported. Their first theme release was <a href=\"https://wptavern.com/wordpress-themes-team-releases-stacks-a-community-theme-for-building-slide-decks\">Stacks</a>, a single-purpose theme for creating slide decks that can be used for a presentation.</p>\n\n\n\n<p>The team has now <a href=\"https://make.wordpress.org/themes/2023/08/11/blue-note-the-second-community-theme-is-released/\">released</a> its second community theme called Blue Note, inspired by American jazz record label “<a href=\"https://www.bluenote.com/\">Blue Note Records</a>.&#8221; It&#8217;s more versatile than Stacks, as it can be used for writing/blogging, a personal website, portfolio, nonprofit, memorial, event, or other types of landing pages.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1144\" height=\"858\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/08/blue-note-screenshot.webp\" alt=\"\" class=\"wp-image-147821\" />\n\n\n\n<p>Although Blue Note does not package any style variations, it comes with 14 beautifully designed patterns inspired by jazz record covers. The patterns enable users to quickly add images with text or quotes with multiple designs for each. There are also patterns with striped images, an artful way to break up a single image, paired with text. Users can select from multiple headers and footers, among seven page templates and four template parts.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"2852\" height=\"1290\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/08/Screen-Shot-2023-08-14-at-1.25.50-PM.png\" alt=\"\" class=\"wp-image-147826\" />\n\n\n\n<p>Blue Note was designed by Automattic-sponsored contributor Beatriz Fialho, inspired by her work on the State of the Word slides in 2020. It was developed during the WCEU contributor day with the help of more than a dozen <a href=\"https://github.com/WordPress/community-themes/blob/trunk/blue-note/CREDITS.md\">contributors</a>.  The <a href=\"https://github.com/WordPress/community-themes/\">Community Themes GitHub repository</a> has other themes they are working on which are in various stages of development. </p>\n\n\n\n<p>Check out <a href=\"https://wordpress.org/themes/blue-note/\">Blue Note</a> on WordPress.org and download it for free via the Themes browser inside the admin. </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, 14 Aug 2023 21:09: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: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:72:\"Do The Woo Community: A DevChat on WooCommerce Support with Andrew Wikel\";s:7:\"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=70794\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://dothewoo.io/a-devchat-on-woocommerce-support/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:408:\"<p>Andrew Wikel shares thoughts and insights working on WooCommerce support specifically for builders and developers of Woo shops. </p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/a-devchat-on-woocommerce-support/\">A DevChat on WooCommerce Support with Andrew Wikel</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:\"Sun, 13 Aug 2023 14:45: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: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: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:57:\"Do The Woo Community: WooCommerce Developer Life Snippets\";s:7:\"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=71199\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://dothewoo.io/woocommerce-developer-life-snippets/\";s: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:389:\"<p>With every developer we have a conversation with, there is a story. Woo DevLife brings those short stories to the reader.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/woocommerce-developer-life-snippets/\">WooCommerce Developer Life Snippets</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:\"Sun, 13 Aug 2023 14:30: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:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s: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:100:\"Do The Woo Community: Site Ownership, WooCommerce and Insights into the Open Web with Aaron Campbell\";s:7:\"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=71078\";s:7:\"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:78:\"https://dothewoo.io/site-ownership-woocommerce-and-insights-into-the-open-web/\";s: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:478:\"<p>Aaron Campbell has a passion for the Open Web, open source and WordPress with the goal that everyone should have access to all things on the web.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/site-ownership-woocommerce-and-insights-into-the-open-web/\">Site Ownership, WooCommerce and Insights into the Open Web with Aaron Campbell</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:\"Sun, 13 Aug 2023 14:30: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: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:63:\"Do The Woo Community: A Conversation: WooCommerce Custom Tables\";s:7:\"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=70941\";s:7:\"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-conversation-woocommerce-custom-tables/\";s: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:420:\"<p>We have an in-depth conversation on custom tables including a recent experience with them migrating from Joomla to WordPress and WooCommerce.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/a-conversation-woocommerce-custom-tables/\">A Conversation: WooCommerce Custom Tables</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:\"Sun, 13 Aug 2023 14:30: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: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: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:106:\"Do The Woo Community: Accessibility, the Payoff for Your Clients WooCommerce Shop with Anne-Mieke Bovelett\";s:7:\"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=71265\";s:7:\"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://dothewoo.io/accessibility-the-payoff-for-your-clients-woocommerce-shop/\";s: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:471:\"<p>Atarim Web Agency Summit speaker Anne-Mieke Bovelett shares a valuable tip on accessibility and WooCommerce design and development.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/accessibility-the-payoff-for-your-clients-woocommerce-shop/\">Accessibility, the Payoff for Your Clients WooCommerce Shop with Anne-Mieke Bovelett</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:\"Sun, 13 Aug 2023 14:00:29 +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: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:71:\"Do The Woo Community: A WordPress and WooCommerce Presence at CloudFest\";s:7:\"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=71256\";s:7:\"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://dothewoo.io/a-wordpress-and-woocommerce-presence-at-cloudfest/\";s: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:410:\"<p>Co-hosts Robert and Jonathan both attended CloudFest 2022 and share some interesting perspectives and comparisons.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/a-wordpress-and-woocommerce-presence-at-cloudfest/\">A WordPress and WooCommerce Presence at CloudFest</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:\"Sun, 13 Aug 2023 14:00:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s: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:\"Do The Woo Community: Grow Your Developer Network, Career and Business with Marcus and Courtney\";s:7:\"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=71280\";s:7:\"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://dothewoo.io/build-your-developer-network-career-and-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:455:\"<p>Whether you are looking to grow or change your WordPress or WooCommerce development career, here are some tips from Marcus and Courtney.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/build-your-developer-network-career-and-business/\">Grow Your Developer Network, Career and Business with Marcus and Courtney</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:\"Sun, 13 Aug 2023 13:45: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: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: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:72:\"Do The Woo Community: Three WooCommerce Tips for Simplifying the Complex\";s:7:\"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=71270\";s:7:\"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://dothewoo.io/three-woocommerce-tips-for-simplifying-the-complex/\";s: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:432:\"<p>Atarim Web Agency Summit speakers Maciek Palmowski, David Mainayar and Nev Harris share tips for WooCommerce agencies and freelancers.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/three-woocommerce-tips-for-simplifying-the-complex/\">Three WooCommerce Tips for Simplifying the Complex</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:\"Sun, 13 Aug 2023 13:45: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:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s: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:65:\"Do The Woo Community: Where Are All the WooCommerce Alternatives?\";s:7:\"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=71292\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://dothewoo.io/where-are-all-the-woocommerce-alternatives/\";s: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:404:\"<p>A single tweet inspired this commentary from me about why we are not seeing many, if any real competitors to WooCommerce.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/where-are-all-the-woocommerce-alternatives/\">Where Are All the WooCommerce Alternatives?</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:\"Sun, 13 Aug 2023 09: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: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: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:86:\"WPTavern: WordPress Kicks Off Admin Design Overhaul with Discussion on Initial Mockups\";s:7:\"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=147726\";s:7:\"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:97:\"https://wptavern.com/wordpress-kicks-off-admin-design-overhaul-with-discussion-on-initial-mockups\";s: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:7793:\"<p> The monumental task of <a href=\"https://wptavern.com/wordpress-plans-ambitious-admin-ui-revamp-with-design-system-galvanizing-broad-support-from-the-developer-community\">overhauling WordPress&#8217; aging admin design</a> is coming into focus, as contributors <a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/\">kicked off explorations of some initial mockups</a> this week. Gutenberg&#8217;s Phase 3 is focused on Collaboration and this admin revamp is part of that road map.</p>\n\n\n\n<p>As a starting point, Automattic-sponsored product designer Saxon Fletcher published some images and videos with a design that appears to have grown out of the editor&#8217;s interface to make it a more natural part of the admin. As part of the impetus for this project, he called out plugin developers that have <a href=\"https://wptavern.com/yoast-seo-20-0-introduces-new-admin-interface\">introduced their own admin interfaces</a> in the interim while waiting for WordPress to prioritize this project:</p>\n\n\n\n<p>&#8220;The added risk here is that plugin authors are side stepping outdated UI by introducing their own which can further fragment the WordPress experience,&#8221; he said.</p>\n\n\n\n<p>Fletcher emphasized that these mockups are &#8220;broad strokes and the first of many iterations.&#8221; The structural concepts Fletcher introduced include three main areas:</p>\n\n\n\n<ul>\n<li>A Sidebar for navigation </li>\n\n\n\n<li>A Page area for the main content, management, and settings</li>\n\n\n\n<li>A Frame representing the front-end of the site, which can be in an edit or read-only state</li>\n</ul>\n\n\n\nFrame mockup &#8211; video source: <a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/\">Admin Design Kickoff</a>\n\n\n\n<p>&#8220;The frame can be used for previewing any type of content, including your entire site, templates, patterns etc,&#8221; Fletcher said. &#8220;Plugins can decide as to whether they benefit from having the frame in view while a task is being worked on, or hidden away. If a plugin doesn’t make use of the main content area, the frame will be in its expanded state.&#8221;</p>\n\n\n\n<p>The admin bar may also be getting a makeover as part of this project, although Fletcher did not elaborate on how it might change. The admin bar doesn&#8217;t appear in any of the mockups.</p>\n\n\n\n<p>&#8220;With the introduction of the frame, which represents the front-end of your site, we have an opportunity to re-think what transitioning between the front and back of your site looks like,&#8221; he said.</p>\n\n\n\n<p>The initial mockups explore the idea of implementing a drill down navigation UI that can also be used to house basic content, but Fletcher acknowledged the challenges of navigating up/down the submenus more challenging. Design contributors are exploring workarounds for this, including introducing breadcrumbs or highlighting recently visited sections.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\nDrill down menus mockup &#8211; video source: <a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/\">Admin Design Kickoff</a>\n\n\n\n<p>This concept for drill down navigation has received the most critical feedback in the comments of the post, as developers are concerned it will make navigation too complicated.</p>\n\n\n\n<p>&#8220;Not a fan of hiding all the Admin Menus behind a maze of Breadcrumbs, also there are many complex UIs that will not convert well this idea for the menu system, the current benefit with our current menu system is that is very fast to change from one&nbsp;plugin&nbsp;to another or another area of WordPress with very few clicks,&#8221; designer Adam Pickering <a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/#comment-26834\">commented</a>. &#8220;This proposal for the new admin menu makes that whole&nbsp;UX&nbsp;a lot more time consuming and frustrating for the user. Even if a proposal comes along where you put the previous menu item above the current position of where you are it won’t fix the issue as noted.&#8221;</p>\n\n\n\n<p>Others are also concerned that the drill-down menu requires too many clicks and maybe even a popup menu on hover/long touch on mobile that pops out more options. Developer Anthony Hortin <a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/#comment-26840\">commented</a> on how similar it is to the Customizer&#8217;s navigation: </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>As others have mentioned, this “drill down navigation pattern” would be incredibly frustrating to use, not only for new users, but experienced users as well. Not being able to see what options are under each menu forces the user to constantly click on each menu item, exit, click on the next menu item, exit, and so forth, until they find the screen they’re looking for. Even as someone who’s been using WordPress for 17+ years, I quite often have to hover over menus to remind myself where to find things.</p>\n\n\n\n<p>This is also seen in the&nbsp;Customizer, which has had this style of navigation for years. When working on a new client’s site, it’s frustrating as hell trying to find options within the Customizer if they have a theme that you’re not familiar with. I would hate to see the whole Dashboard go in the same direction.</p>\n</blockquote>\n\n\n\n<p>Participants in the discussion were also critical of the Frame concept for the admin, as most admin tasks don&#8217;t lend themselves to frontend previews.</p>\n\n\n\n<p>&#8220;I’m most skeptical of the &#8216;surfaces&#8217; approach and moving to a &#8216;front end first&#8217; approach to things,&#8221; developer Jon Brown said. &#8220;Aside from theme edits, almost nothing I do in wp-admin requires or would benefit from a front-end view. If I’m managing orders on a WC site, I certainly don’t need/want to see the front end. If I’m editing&nbsp;plugin&nbsp;settings, again no front end. I get it makes sense for authoring new content, but that’s about it.&#8221;</p>\n\n\n\n<p>As part of the Collaboration phase, Fletcher also proposed that the admin become more customizable for different use cases, so its navigation and system variables would make performing certain tasks more efficient for blogs, e-commerce, portfolios, and multisite, for example. He also hinted at the ability for the community to share their configurations.</p>\n\n\n\n<p>&#8220;We’d like to see WordPress become a fun platform to build multiuser products on top of, more so than it already is,&#8221; he said.</p>\n\n\n\n<p>WordPress developers will have a major transition ahead to make their extensions compatible with the new admin. Some individuals and teams are better positioned than others to make that step forward. Fletcher&#8217;s proposal recognizes that backwards compatibility will be an important consideration for not breaking settings pages for plugins that don&#8217;t get updated.</p>\n\n\n\n<p>&#8220;Perhaps the trickiest part of this whole initiative is rolling admin changes out in a way that is iterative, doesn’t break existing workflows and encourages gradual adoption,&#8221; Fletcher said. &#8220;The site editor has given us a space to experiment, including being able to browse your site’s pages in the latest 6.3 release, and that may extend to other core admin pages like site settings, but at some point we’ll need to &#8216;break out&#8217; of the editor to prevent too much duplication. We also need to support plugin pages that may never update, and do it in a way that feels seamless.&#8221;</p>\n\n\n\n<p>The <a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/\">discussion</a> continues and the developer community is invited to weigh in on the initial concepts and structural elements proposed in the post.</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, 12 Aug 2023 01:41:57 +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: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:69:\"WPTavern: WordPress Publishes 6.3 Release Video and Landing Page Demo\";s:7:\"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=147720\";s:7:\"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:80:\"https://wptavern.com/wordpress-publishes-6-3-release-video-and-landing-page-demo\";s: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:2733:\"<p><a href=\"https://wptavern.com/wordpress-6-3-lionel-introduces-command-palette-expands-pattern-management-and-design-tools\">WordPress 6.3</a> &#8220;Lionel&#8221; was released earlier this week with an overview video that offers a beautiful, dizzying demo of the many new features packed into this update. It&#8217;s a two-minute guided tour of WordPress&#8217; greatly expanded customization features, streamlined Site Editor interface, pattern creation and management, and the new Command Palette in action. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>For the first time, the release marketing also includes a new <a href=\"https://wordpress.org/download/releases/6-3/\">web experience</a> that showcases the features in 6.3 through a visual tour. It is essentially a release landing page with a beautiful dark mode style design and includes video demos for each major new feature. This visual resource is especially helpful for users who may have a difficult time getting a handle on a release that is so packed with updates. It&#8217;s also a resource that lasts long after all the Twitter buzz and other marketing has died down.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1936\" height=\"1146\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/08/Screen-Shot-2023-08-11-at-11.54.43-AM.png\" alt=\"\" class=\"wp-image-147730\" />\n\n\n\n<p>During the past few release cycles, WordPress contributors have stepped up the product demos to help make the world aware of all the new capabilities landing in these updates. WordPress 6.3 Editor Triage co-lead Anne McCarthy, who co-hosted the <a href=\"https://wptavern.com/wordpress-6-3-rc2-released-watch-the-live-product-demo\">6.3 live product demo</a> with fellow contributor Rich Tabor, gave <a href=\"https://nomad.blog/2023/08/08/how-to-run-the-official-product-demos-in-wordpress-release-cycles/\">a glimpse behind the scenes</a> at the immense amount of effort and attention to detail and design that goes into these official project demos. </p>\n\n\n\n<p>As WordPress is expanding these resources and improving its marketing, McCarthy extended an invitation to any contributors who are able to follow a release in depth, understand the overarching vision, connect the dots on all the details, and artfully present them to the public. This is a somewhat rare combination of skills but a contribution opportunity with a high level of impact. Anyone interested can <a href=\"https://nomad.blog/2023/08/08/how-to-run-the-official-product-demos-in-wordpress-release-cycles/\">get in touch with McCarthy</a>, who said she wants to enable others to take this on in the future &#8220;to ensure a diverse set of folks can step into the spotlight.&#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, 11 Aug 2023 16:46:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:72:\"Do The Woo Community: All Things WordCamp US with Julia, Aaron and Kevin\";s:7:\"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=75842\";s:7:\"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:47:\"https://dothewoo.io/wordcampus-2023-organizers/\";s: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:415:\"<p>Join us as we chat with three of the lead organizers from the team of volunteers to learn about WordCamp US 2023 in National Harbor, Maryland</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/wordcampus-2023-organizers/\">All Things WordCamp US with Julia, Aaron and Kevin</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, 11 Aug 2023 11:11: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: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:87:\"Do The Woo Community: New Event: Woo Agency Chat Live! with Ash Shaw and Mitch Callahan\";s:7:\"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=75867\";s:7:\"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/event-woo-agency-chat-live-august-16-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:410:\"<p>Join Mitch Callahan from Saucal and Ash Shaw from LightSpeed on Woo Agency Chat Live, August 16, 10:00 UTC</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/event-woo-agency-chat-live-august-16-2023/\">New Event: Woo Agency Chat Live! with Ash Shaw and Mitch Callahan</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, 11 Aug 2023 10:41:54 +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: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:70:\"WPTavern: Gutenberg 16.4 Introduces Experimental Auto-Inserting Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147688\";s:7:\"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/gutenberg-16-4-introduces-experimental-auto-inserting-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4028:\"<p><a href=\"https://make.wordpress.org/core/2023/08/10/whats-new-in-gutenberg-16-4-9-august/\">Gutenberg 16.4</a> has been released with a new auto-inserting blocks experimental feature. It allows developers to specify a location in which the block will be automatically inserted, such as before or after a template. The block can then be repositioned after insertion using the editor tools.</p>\n\n\n\n<p>&#8220;This applies both to the frontend and to the Site Editor (via the REST API), allowing for further user customization,&#8221; Automattic-sponsored engineer Sarah Norris said in the 16.4 release post. She posted a video demonstrating how it works with an example &#8220;like&#8221; block:</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\nvideo source: <a href=\"https://make.wordpress.org/core/2023/08/10/whats-new-in-gutenberg-16-4-9-august/\">Gutenberg 16.4 release post</a>\n\n\n\n<p>Although the auto-inserting blocks is still behind the experimental flag, developers can try it by adding an <code>__experimentalAutoInsert</code> field to the block.json file of a dynamic block. Example code is available in the release post.</p>\n\n\n\n<p>&#8220;This feature aims to improve the extensibility of block themes through plugins and continues to be actively developed,&#8221; Norris said.</p>\n\n\n\n<p>The <a href=\"https://github.com/WordPress/gutenberg/issues/39439\">GitHub ticket for auto-inserting blocks</a> describes a common scenario from the days of classic themes where a plugin would use a filter to auto-append a login/logout link to a navigation menu. This is no longer possible with block themes, so contributors have devised auto-inserting blocks as a creative solution that retains ease of use offered by simply activating a plugin and preserves the ability of the user to modify the blocks once inserted.</p>\n\n\n\n<p>Gutenberg 16.4 also introduces a new, <a href=\"https://github.com/WordPress/gutenberg/pull/53030\">horizontal <code>ProgressBar</code> component</a> that can be used throughout the interface. It may soon replace the <code>Spinner</code> component that is currently used in the Site Editor loading experience. An indeterminate version (indicates that a process is occurring but with no specific progress measurement) and a determinant version (a progress bar that indicates the progress made, moving towards 100%) are included in this component.</p>\n\n\n\nindeterminate progress bar &#8211; video source: <a href=\"https://github.com/WordPress/gutenberg/pull/53030\">Gutenberg PR #53030</a>\n\n\n\ndeterminate progress bar &#8211; video source: <a href=\"https://github.com/WordPress/gutenberg/pull/53030\">Gutenberg PR #53030</a>\n\n\n\n<p>The Command Palette, which landed in <a href=\"https://wptavern.com/wordpress-6-3-lionel-introduces-command-palette-expands-pattern-management-and-design-tools\">WordPress 6.3</a> earlier this week, is getting three new commands in this release:</p>\n\n\n\n<ul>\n<li>Show/hide block breadcrumbs</li>\n\n\n\n<li>Enable/disable pre-publish checklist</li>\n\n\n\n<li>Preview in a new tab</li>\n</ul>\n\n\n\n<p>WordPress&#8217; block library has expanded design control support for the following blocks: </p>\n\n\n\n<ul>\n<li>Footnotes: Add link, background, and text color support. (<a href=\"https://github.com/WordPress/gutenberg/pull/52897\">52897</a>)</li>\n\n\n\n<li>Footnotes: Add typography, dimensions, and border block supports (<a href=\"https://github.com/WordPress/gutenberg/pull/53044\">53044</a>)</li>\n\n\n\n<li>Preformatted: Add spacing support. (<a href=\"https://github.com/WordPress/gutenberg/pull/45196\">45196</a>)</li>\n\n\n\n<li>Social Links: Add Threads Icon. (<a href=\"https://github.com/WordPress/gutenberg/pull/52685\">52685</a>)</li>\n\n\n\n<li>Verse: Enable the line breaks. (<a href=\"https://github.com/WordPress/gutenberg/pull/52928\">52928</a>)</li>\n</ul>\n\n\n\n<p>Check out the <a href=\"https://make.wordpress.org/core/2023/08/10/whats-new-in-gutenberg-16-4-9-august/\">16.4 release post</a> for more details on all the enhancements, bug fixes, and accessibility and performance improvements.</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, 10 Aug 2023 22:05:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:19:\"Matt: WordPress 6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=94453\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://ma.tt/2023/08/wordpress-6-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:537:\"<p>Version 6.3 is out! Time to fire up your updating engines. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f604.png\" alt=\"😄\" class=\"wp-smiley\" /> This is actually a really big one. (As a reminder, we do three major release of WP per year and each one is a +0.1, 7.0 will just be the next release after 6.9, so big things can happen in random version numbers.) <a href=\"https://wordpress.org/download/releases/6-3/\">We&#8217;ve made a release landing page to cover some of the new things in this one, check it out</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, 10 Aug 2023 16:31: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: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:127:\"Do The Woo Community: Разговор са Вордпрес заједницом Србије / The Serbia 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75823\";s:7:\"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:51:\"https://dothewoo.io/the-serbia-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:430:\"<p>Today we have an episode by the Serbian WordPress Community, for the Serbian WordPress community.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/the-serbia-wordpress-community/\">Разговор са Вордпрес заједницом Србије / The Serbia WordPress Community</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, 10 Aug 2023 07:44: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: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:123:\"WPTavern: WordPress Plugin Review Team Addresses Backlog of 900+ Plugins, Implements Strategies to Improve Approval Process\";s:7:\"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=147639\";s:7:\"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:132:\"https://wptavern.com/wordpress-plugin-review-team-addresses-backlog-of-900-plugins-implements-strategies-to-improve-approval-process\";s: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:4146:\"<p>WordPress&#8217; Plugin Review team is wading through a backlog that was over 900 plugins awaiting approval earlier this week. The current count has 870 plugins sitting in the <a href=\"https://wordpress.org/plugins/developers/add/\">review queue</a>, with an average wait time of 61 days before initial review.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1856\" height=\"388\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/08/Screen-Shot-2023-08-09-at-5.24.43-PM.png\" alt=\"\" class=\"wp-image-147652\" />\n\n\n\n<p>WordPress developer Marcus Burnette <a href=\"https://twitter.com/marcusdburnette/status/1688961018943221778\">drew attention to the matter on Twitter</a> after submitting a plugin he created to display a gallery of your own WordPress Photo Directory photos on your website. Other developers commented on his post, reporting that their recently-approved plugins took two months.</p>\n\n\n\n<p>WordPress Executive Director Josepha Haden Chomphosy responded with an invitation to contributors who want to learn how to review plugins and <a href=\"https://make.wordpress.org/plugins/handbook/apply/\">apply to join the team</a>.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">There\'s an open application for anyone who wants to learn how to review these plugins and help us chip away at the backlog! <a href=\"https://t.co/nDF3tiOuvH\">https://t.co/nDF3tiOuvH</a> <a href=\"https://t.co/28lrCFtx4U\">https://t.co/28lrCFtx4U</a></p>&mdash; Josepha Haden Chomphosy (@JosephaHaden) <a href=\"https://twitter.com/JosephaHaden/status/1688983991792078848?ref_src=twsrc%5Etfw\">August 8, 2023</a></blockquote>\n</div>\n\n\n\n<p>The volunteer team responsible for reviewing plugins has undergone significant restructuring after the departure of long-time contributor Mika Epstein. In June, the team <a href=\"https://wptavern.com/wordpress-plugin-review-team-adds-6-new-sponsored-volunteers-opens-applications\">added six new sponsored volunteers</a> and opened applications for more team members. They have selected new team reps and have more than 20  applicants who have expressed interest in volunteering.</p>\n\n\n\n<p>&#8220;The first challenge we found during our onboarding was the fact that a lot of processes were not clearly documented,&#8221; newly selected team rep Francisco Torres said in a recent <a href=\"https://make.wordpress.org/plugins/2023/07/24/tackling-team-challenges-together/\">update</a>. &#8220;We asked A LOT of questions during this process and ensured that all the answers Mika shared with us were added to the team’s internal docs. This effort should make it a lot easier for new contributors to join the team down the road.</p>\n\n\n\n<p>&#8220;We have also improved our internal tools to catch the most common coding mistakes and have built our predefined responses into the output provided by this tool. We still review this content manually before sending out replies, but by merging the two tasks into one (reviewing the code and drafting the message) we have been able to cut down review time considerably.&#8221;</p>\n\n\n\n<p>In strategizing ways to cut through the formidable plugin backlog, the team has begun speeding up the process by performing a cursory initial review, followed by a more thorough one once the plugin author has fixed the most obvious issues.</p>\n\n\n\n<p>&#8220;In order to tackle the backlog faster, we’re now spending less time on initial reviews,&#8221; Torres said. &#8220;We begin checking issues that take us less time, and then as soon as we spot one or two issues with the plugin that would prevent it from being approved, we email the plugin author to ask them to fix the initial issues. If the author gets back to us with those first fixes, then we proceed with an in-depth review.&#8221;</p>\n\n\n\n<p>A two-month wait can be demoralizing for developers who are excited to share their open source plugins with the world. Now that the whole process is getting documented and refined to be more efficient, the Plugin Review Team will be better able to onboard new reviewers and put them in place to tackle the backlog. </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, 10 Aug 2023 01:39:54 +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:62:\"WPTavern: Kadence Blocks 3.1.11 Patches Critical Vulnerability\";s:7:\"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=147644\";s:7:\"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:73:\"https://wptavern.com/kadence-blocks-3-1-11-patches-critical-vulnerability\";s: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:1925:\"<p>The <a href=\"https://wordpress.org/plugins/kadence-blocks/\">Kadence Blocks</a> plugin, which is used on more than 300,000 WordPress sites, has patched a critical vulnerability in its Advanced Form Block file upload capability. Version 3.1.11, released on August 8, 2023, patches the security issue with the form uploads.</p>\n\n\n\n<p>The plugin&#8217;s development team is getting out ahead of the situation by posting an <a href=\"https://www.kadencewp.com/blog/kadence-blocks-3-1-11-includes-patch-for-critical-vulnerability/\">advisory</a> on their blog, with a short description of the vulnerability and its potential for exploit.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>The Kadence Advanced Form Block, introduced in Kadence Blocks 3.1, offers site owners the ability to add a file upload capability to their site. The code within the Advanced Form Block had insufficient tests to limit what types of files can be uploaded. This could allow attackers to upload a file claiming to be a valid image type that actually contained malicious PHP code. That PHP code could be malicious, and in so doing, take over a vulnerable WordPress website. Exploiting this vulnerability would require a settings at the server level that would be considered insecure. Most premium hosting providers secure upload folders from PHP execution at the server level, though many budget hosting providers do not.</p>\n</blockquote>\n\n\n\n<p>Kadence Blocks developer Ben Ritner said sites that are not using the Advanced Form Block file upload capability are not subject to this vulnerability. At this time the vulnerability is not known to have been exploited.</p>\n\n\n\n<p>Kadence Blocks users are encouraged to update immediately and check for unexpected users, admin accounts, and content changes. The advisory also includes ways to make file uploads more secure, including limiting file type, adding authentication, and scanning for viruses.</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, 09 Aug 2023 20:36: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: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:116:\"Post Status: WordPress 6.3 • Release Workflows • European Union Cyber Resiliency Act • Gutenberg Accessibility\";s:7:\"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=150107\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"https://poststatus.com/wordpress-6-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:18770:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (August 7, 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.3, Lionel, has been released. It&#8217;s time to test out the details and footnotes blocks, give the WP_DEVELOPMENT_MODE a try, and check out the new Get Involved tab on the Welcome screen. The WordPress Training team announces its first course cohort for Learn.WordPress.org. The course will cover Developing Your First WordPress Block, and offer&hellip; </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box_94d1bd-77\"><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=\"kb-svg-icon-wrap kb-svg-icon-fas_rocket kt-info-svg-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\"> WP 6.3, 1st LearnWP Cohort, EU CRA</h2><p class=\"kt-blocks-info-box-text\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f195.png\" alt=\"🆕\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2023/08/lionel/\">WordPress 6.3 “Lionel”</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f9d1-1f3fd-200d-1f3eb.png\" alt=\"🧑🏽‍🏫\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/training/2023/08/02/announcing-the-first-learn-wordpress-course-cohort/\">Announcing the first Learn WordPress Course Cohort</a><br /><br /> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2934.png\" alt=\"⤴\" class=\"wp-smiley\" /><a href=\"https://make.wordpress.org/core/2023/08/01/proposal-improve-the-editor-tech-workflow-for-major-releases/\">Proposal: improve the editor tech workflow for major releases</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f510.png\" alt=\"🔐\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\">Concerns over the European Union’s Cyber Resilience Act (CRA)</a></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_b57166-6e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/08/lionel/\">WordPress 6.3 “Lionel”</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\">Concerns over the European Union’s Cyber Resilience Act (CRA)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/contribute\">Contribute</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-9 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</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<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-14 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-12 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2023/08/07/matrix-test-results/\">Matrix Test Results</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/new-github-feature-request-separating-access-to-the-meetup-and-wordcamp-trackers/\">New GitHub Feature Request: Separating access to the Meetup and WordCamp trackers</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/community-team-meeting-agenda-for-3-august-2023/\">Community Team Meeting Agenda for 3 August, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/recap-inaugural-nextgen-pilot-events/\">Recap: Inaugural NextGen Pilot Events</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/2023/08/01/whose-ticket-is-it-anyway/\">Whose ticket is it, anyway?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/proposal-improve-the-editor-tech-workflow-for-major-releases/\">Proposal: improve the editor tech workflow for major releases</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/07/wordpress-6-3-performance-improvements/\">WordPress 6.3 performance improvements</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Phase 3 Ideations</h3>\n\n\n\n<ul>\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\" rel=\"noreferrer noopener\">Real-Time Collaboration</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/04/workflows/\" rel=\"noreferrer noopener\">Workflows</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/05/revisions/\" rel=\"noreferrer noopener\">Revisions</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/07/media-library/\" rel=\"noreferrer noopener\">Media Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/10/block-library/\" rel=\"noreferrer noopener\">Block Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/12/admin-design/\" rel=\"noreferrer noopener\">Admin Design</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/08/styling-blocks-empowering-users-with-css-custom-properties/\">Styling blocks: empowering users with CSS custom properties</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/09/dev-chat-agenda-august-9-2023/\">Dev Chat agenda, August 9, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/07/editor-chat-agenda-9-august-2023/\">Editor Chat Agenda: 9 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/08/04/summary-for-docs-team-meeting-august-1-2023/\">Summary for Docs Team meeting, August 1, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/07/documentation-team-update-august-7-2023/\">Documentation Team Update – August 7, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/2023/07/26/wordpress-hosting-survey/\">WordPress Hosting Survey</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/08/09/organizations-supporting-wordpress-org/\">Organizations Supporting WordPress.org</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/20/make-team-dashboards/\">Make Team Dashboards</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/15/triaging-open-issues-on-trac-for-make-teams/\">Triaging open issues on Trac for Make Teams</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/updates/2023/08/08/mobile-team-update-august-8th/\">Mobile Team Update – August 8th</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/08/07/last-week-openverse-2023-07-31-2023-08-07/\">A week in Openverse: 2023-07-31 – 2023-08-07</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/28/openverse-monthly-priorities-meeting-2023-08-02/\">Openverse Monthly Priorities Meeting 2023-08-02</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/08/08/performance-chat-summary-8-august-2023/\">Performance Chat Summary: 8 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/08/07/plugin-review-team-7-august-2023/\">Plugin Review Team: 7 August 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/09/adding-some-meta-buttons-always-visible/\">Adding some meta buttons always visible</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/09/new-wordpress-org-theme-for-your-rosetta-site/\">New WordPress.org Theme for your Rosetta Site</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/07/13/proposal-for-establishing-a-make-diversity-equity-inclusion-and-belonging-deib-team-within-the-wordpress-community/\">Proposal for Establishing a Make Diversity, Equity, Inclusion, and Belonging (“DEIB”) Team within the WordPress Community</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/07/28/sustainability-chat-summary-july-28-2023/\">Sustainability Chat Summary, July 28, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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/updates/2023/08/07/test-team-update-7-august-2023/\">Test Team Update: 7 August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/08/07/themes-team-meeting-agenda-for-august-08-2023/\">Themes team meeting agenda for August 08, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/08/themes-team-update-august-08-2023/\">Themes team update August 08, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/08/04/wcus-contributor-day-tutorials-workshop-in-person-remote/\">WCUS Contributor Day: Tutorials Workshop (In-Person &amp; Remote)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/03/introducing-the-training-team-guide-program/\">Introducing the Training Team Guide Program!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/02/announcing-the-first-learn-wordpress-course-cohort/\">Announcing the first Learn WordPress Course Cohort.</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" 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/exploring-wordpress-6-3/\">Exploring WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/how-to-use-the-spacer-block/\">How to use the spacer block</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=what-is-the-domain-name-system-6\">What is the Domain Name System?</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=what-is-the-domain-name-system-5\">What is the Domain Name System?</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=training-team-contributor-day-online-session-2\">Training Team Contributor Day Online Session</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=common-wordpress-apis-global-variables\">Common WordPress APIs: Global Variables</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-11\">WP dev livestream: Sendig block theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=%E3%83%95%E3%83%AB%E3%82%B5%E3%82%A4%E3%83%88%E7%B7%A8%E9%9B%86%E3%81%A7%E5%AE%9F%E9%9A%9B%E3%81%AB%E3%82%B5%E3%82%A4%E3%83%88%E3%82%92%E4%BD%9C%E3%81%A3%E3%81%A6%E3%81%BF%E3%82%88%E3%81%86%EF%BC%81\">フルサイト編集で実際にサイトを作ってみよう！</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=contributing-to-the-wordpress-community-team-events-and-roles\">Contributing to the WordPress Community Team: Events and Roles</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=hallway-hangout-extending-blocks-with-custom-design-tools\">Hallway Hangout: Extending blocks with custom design tools</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-start-contributing-to-the-wordpress-core\">How to start contributing to the WordPress Core</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" 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/developing-with-the-wordpress-rest-api/\">Introduction to developing with the WordPress REST API</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/tv\">WordPress TV</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/tv/2023/06/15/enhancing-slide-management-for-video-publications/\">Enhancing Slide Management for Video Publications</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" 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</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/\">jQuery 3.7.0</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-1\">PHP 8.3.0 Alpha 3 available for testing</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\"></a><a href=\"https://www.php.net/archive/2023.php#2023-07-06-2\">PHP 8.2.8 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-3\">PHP 8.1.21 Released!</a></li>\n\n\n\n<li><a href=\"https://github.com/PHPMailer/PHPMailer/releases/tag/v6.8.0\">PHPMailer 6.8.0</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/\">TC39</a></li>\n\n\n\n<li><a href=\"http://github.com/composer/composer/releases/tag/2.5.8\">Composer 2.5.8</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&#8217; <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It&#8217;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://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, 09 Aug 2023 20:02:54 +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:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 23 Aug 2023 04:20:24 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Wed, 23 Aug 2023 04:15:30 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'),(2593,'_site_transient_timeout_community-events-dee53a8d60c6ebd601969aa73f3e0dc6','1692807623','no'),(2594,'_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:58:\"WordPress Lab: Take Your WordPress Site to the Next Level!\";s:3:\"url\";s:66:\"https://www.meetup.com/southcentralcoastwordpress/events/294599613\";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-09-13 19:00:00\";s:8:\"end_date\";s:19:\"2023-09-13 21:00:00\";s:20:\"start_unix_timestamp\";i:1694656800;s:18:\"end_unix_timestamp\";i:1694664000;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: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/294599617\";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-09-27 19:00:00\";s:8:\"end_date\";s:19:\"2023-09-27 21:00:00\";s:20:\"start_unix_timestamp\";i:1695866400;s:18:\"end_unix_timestamp\";i:1695873600;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:19:\"OC WordPress Meetup\";s:3:\"url\";s:58:\"https://www.meetup.com/oc-wordpress-group/events/295315044\";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-10-02 19:00:00\";s:8:\"end_date\";s:19:\"2023-10-02 21:00:00\";s:20:\"start_unix_timestamp\";i:1696298400;s:18:\"end_unix_timestamp\";i:1696305600;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:3;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/295599718\";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-10-11 19:00:00\";s:8:\"end_date\";s:19:\"2023-10-11 21:00:00\";s:20:\"start_unix_timestamp\";i:1697076000;s:18:\"end_unix_timestamp\";i:1697083200;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: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/295599722\";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-10-25 19:00:00\";s:8:\"end_date\";s:19:\"2023-10-25 21:00:00\";s:20:\"start_unix_timestamp\";i:1698285600;s:18:\"end_unix_timestamp\";i:1698292800;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'),(3430,'wp_smush_background_scan_process_status','a:7:{s:13:\"in_processing\";b:0;s:12:\"is_cancelled\";b:0;s:12:\"is_completed\";b:1;s:11:\"total_items\";i:1;s:15:\"processed_items\";i:1;s:12:\"failed_items\";i:0;s:7:\"is_dead\";b:0;}','no'),(3441,'wp-smush-ignored-items-list','','no'),(3442,'wp-smush-animated-items-list','','no'),(3436,'wp-smush-resize_sizes','a:2:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;}','yes'),(3439,'wp-smush-reoptimize-list','','no'),(3440,'wp-smush-error-items-list','','no'),(3435,'wp-smush-optimize-list','','no'),(3391,'_transient_timeout_wp_smush_skip_image_sizes_recheck','1692809947','no'),(421,'fusion_applied_patches','a:1:{i:0;i:421430;}','no'),(447,'_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'),(616,'wp_smush_image_sizes_state','a:2:{s:5:\"sizes\";a:20:{s:9:\"thumbnail\";a:3:{s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:4:\"crop\";b:1;}s:6:\"medium\";a:3:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"300\";s:4:\"crop\";b:0;}s:5:\"large\";a:3:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:4:\"1024\";s:4:\"crop\";b:0;}s:9:\"1536x1536\";a:3:{s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:4:\"crop\";b:0;}s:9:\"2048x2048\";a:3:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:4:\"crop\";b:0;}s:10:\"blog-large\";a:3:{s:5:\"width\";i:669;s:6:\"height\";i:272;s:4:\"crop\";b:1;}s:11:\"blog-medium\";a:3:{s:5:\"width\";i:320;s:6:\"height\";i:202;s:4:\"crop\";b:1;}s:12:\"recent-posts\";a:3:{s:5:\"width\";i:700;s:6:\"height\";i:441;s:4:\"crop\";b:1;}s:22:\"recent-works-thumbnail\";a:3:{s:5:\"width\";i:66;s:6:\"height\";i:66;s:4:\"crop\";b:1;}s:10:\"fusion-200\";a:3:{s:5:\"width\";i:200;s:6:\"height\";i:0;s:4:\"crop\";b:0;}s:10:\"fusion-400\";a:3:{s:5:\"width\";i:400;s:6:\"height\";i:0;s:4:\"crop\";b:0;}s:10:\"fusion-600\";a:3:{s:5:\"width\";i:600;s:6:\"height\";i:0;s:4:\"crop\";b:0;}s:10:\"fusion-800\";a:3:{s:5:\"width\";i:800;s:6:\"height\";i:0;s:4:\"crop\";b:0;}s:11:\"fusion-1200\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:0;s:4:\"crop\";b:0;}s:14:\"portfolio-full\";a:3:{s:5:\"width\";i:940;s:6:\"height\";i:400;s:4:\"crop\";b:1;}s:13:\"portfolio-one\";a:3:{s:5:\"width\";i:540;s:6:\"height\";i:272;s:4:\"crop\";b:1;}s:13:\"portfolio-two\";a:3:{s:5:\"width\";i:460;s:6:\"height\";i:295;s:4:\"crop\";b:1;}s:15:\"portfolio-three\";a:3:{s:5:\"width\";i:300;s:6:\"height\";i:214;s:4:\"crop\";b:1;}s:14:\"portfolio-five\";a:3:{s:5:\"width\";i:177;s:6:\"height\";i:142;s:4:\"crop\";b:1;}s:12:\"medium_large\";a:2:{s:5:\"width\";i:768;s:6:\"height\";i:0;}}s:4:\"hash\";i:142692217714;}','yes'),(448,'jetpack_waf_needs_update','1','yes'),(3422,'skip-smush-setup','1','yes'),(2551,'_transient_timeout_avada_premium_plugins_info','1692849232','no'),(212,'revslider-valid-notice','false','yes'),(488,'_transient_timeout_avada_demos','1692725355','no'),(2590,'_transient_timeout_feed_mod_bc9fd7f8eaf5e82b6773ce761d04a9c6','1692807614','no'),(2591,'_transient_feed_mod_bc9fd7f8eaf5e82b6773ce761d04a9c6','1692764414','no'),(198,'shop_catalog_image_size','a:3:{s:5:\"width\";i:500;s:6:\"height\";s:0:\"\";i:0;i:0;}','yes'),(199,'shop_single_image_size','a:3:{s:5:\"width\";i:700;s:6:\"height\";s:0:\"\";i:0;i:0;}','yes'),(200,'shop_thumbnail_image_size','a:3:{s:5:\"width\";i:120;s:6:\"height\";s:0:\"\";i:0;i:0;}','yes'),(201,'woocommerce_single_image_width','700','yes'),(202,'woocommerce_thumbnail_image_width','500','yes'),(203,'woocommerce_thumbnail_cropping','uncropped','yes'),(204,'fusion_dynamic_css_posts','a:3:{i:1647;b:1;s:10:\"34-archive\";b:1;i:1127;b:1;}','yes'),(205,'fusion_dynamic_css_ids','a:3:{i:1647;s:32:\"cd559fc0addbd93b3f6a089dc44d34f3\";s:10:\"34-archive\";s:32:\"de1e1fc813ecd4e676802cf537b61f72\";i:1127;s:32:\"9d608d232d31bd1b68fe55f009d898c4\";}','yes'),(452,'fusion_core_version','5.11.2','yes'),(453,'widget_ad_125_125-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(454,'widget_fusion_author-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(455,'widget_contact_info-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(456,'widget_pyre_tabs-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(457,'widget_recent_works-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(458,'widget_tweets-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(459,'widget_flickr-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(460,'widget_social_links-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(461,'widget_facebook-like-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(462,'widget_menu-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(463,'widget_avada-vertical-menu-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(464,'widget_form-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(465,'fusion_core_flush_permalinks','1','yes'),(3419,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1692807936;s:8:\"response\";a:1:{s:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/jetpack\";s:4:\"slug\";s:7:\"jetpack\";s:6:\"plugin\";s:19:\"jetpack/jetpack.php\";s:11:\"new_version\";s:4:\"12.5\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/jetpack.12.5.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=2819237\";s:3:\"svg\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=2819237\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/jetpack/assets/banner-1544x500.png?rev=2653649\";s:2:\"1x\";s:62:\"https://ps.w.org/jetpack/assets/banner-772x250.png?rev=2653649\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.1\";s:6:\"tested\";s:3:\"6.3\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:10:{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:3:\"5.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.5.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:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}s: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:41:\"password-protected/password-protected.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:32:\"w.org/plugins/password-protected\";s:4:\"slug\";s:18:\"password-protected\";s:6:\"plugin\";s:41:\"password-protected/password-protected.php\";s:11:\"new_version\";s:5:\"2.6.4\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/password-protected/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/password-protected.2.6.4.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:71:\"https://ps.w.org/password-protected/assets/icon-128x128.gif?rev=2824217\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/password-protected/assets/banner-1544x500.jpg?rev=2824126\";s:2:\"1x\";s:73:\"https://ps.w.org/password-protected/assets/banner-772x250.jpg?rev=2824126\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}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.14.2\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/wp-smushit/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/wp-smushit.3.14.2.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:35:\"boldgrid-backup/boldgrid-backup.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/boldgrid-backup\";s:4:\"slug\";s:15:\"boldgrid-backup\";s:6:\"plugin\";s:35:\"boldgrid-backup/boldgrid-backup.php\";s:11:\"new_version\";s:6:\"1.15.7\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/boldgrid-backup/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/boldgrid-backup.1.15.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/boldgrid-backup/assets/icon-256x256.png?rev=1880952\";s:2:\"1x\";s:68:\"https://ps.w.org/boldgrid-backup/assets/icon-128x128.png?rev=1880952\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/boldgrid-backup/assets/banner-1544x500.png?rev=1880952\";s:2:\"1x\";s:70:\"https://ps.w.org/boldgrid-backup/assets/banner-772x250.png?rev=1880952\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";}s:19:\"weforms/weforms.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/weforms\";s:4:\"slug\";s:7:\"weforms\";s:6:\"plugin\";s:19:\"weforms/weforms.php\";s:11:\"new_version\";s:6:\"1.6.17\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/weforms/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/weforms.1.6.17.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/weforms/assets/icon-256x256.png?rev=1978687\";s:2:\"1x\";s:60:\"https://ps.w.org/weforms/assets/icon-128x128.png?rev=1978687\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/weforms/assets/banner-1544x500.png?rev=2243402\";s:2:\"1x\";s:62:\"https://ps.w.org/weforms/assets/banner-772x250.png?rev=2243402\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}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:\"6.1\";}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:4:\"21.0\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.21.0.zip\";s:5:\"icons\";a:2:{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.1\";}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:6:\"3.11.2\";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:6:\"5.11.2\";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\";}}}}','no'),(3420,'_site_transient_boldgrid_plugins_filtered','a:2:{s:35:\"boldgrid-backup/boldgrid-backup.php\";a:14:{s:4:\"Name\";s:12:\"Total Upkeep\";s:9:\"PluginURI\";s:41:\"https://www.boldgrid.com/boldgrid-backup/\";s:7:\"Version\";s:6:\"1.15.7\";s:11:\"Description\";s:159:\"Automated backups, remote backup to Amazon S3 and Google Drive, stop website crashes before they happen and more. Total Upkeep is the backup solution you need.\";s:6:\"Author\";s:8:\"BoldGrid\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:15:\"boldgrid-backup\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:12:\"Total Upkeep\";s:10:\"AuthorName\";s:8:\"BoldGrid\";}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";a:14:{s:4:\"Name\";s:20:\"Total Upkeep Premium\";s:9:\"PluginURI\";s:41:\"https://www.boldgrid.com/boldgrid-backup/\";s:7:\"Version\";s:5:\"1.5.9\";s:11:\"Description\";s:46:\"Premium extension for the Total Upkeep plugin.\";s:6:\"Author\";s:8:\"BoldGrid\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:15:\"boldgrid-backup\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:20:\"Total Upkeep Premium\";s:10:\"AuthorName\";s:8:\"BoldGrid\";}}','no'),(606,'wp-smush-settings','a:25:{s:4:\"auto\";b:1;s:5:\"lossy\";s:1:\"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'),(607,'wp-smush-install-type','existing','no'),(608,'wp-smush-version','3.14.2','no'),(613,'wpmudev_recommended_plugins_registered','a:1:{s:23:\"wp-smushit/wp-smush.php\";a:1:{s:13:\"registered_at\";i:1692649023;}}','no'),(614,'wp_smush_pre_3_12_6_site','0','no'),(620,'duplicate_post_show_notice','0','no'),(621,'duplicate_post_copytitle','1','yes'),(622,'duplicate_post_copydate','0','yes'),(623,'duplicate_post_copystatus','0','yes'),(624,'duplicate_post_copyslug','0','yes'),(625,'duplicate_post_copyexcerpt','1','yes'),(626,'duplicate_post_copycontent','1','yes'),(627,'duplicate_post_copythumbnail','1','yes'),(628,'duplicate_post_copytemplate','1','yes'),(629,'duplicate_post_copyformat','1','yes'),(630,'duplicate_post_copyauthor','0','yes'),(631,'duplicate_post_copypassword','0','yes'),(632,'duplicate_post_copyattachments','0','yes'),(633,'duplicate_post_copychildren','0','yes'),(634,'duplicate_post_copycomments','0','yes'),(635,'duplicate_post_copymenuorder','1','yes'),(636,'duplicate_post_taxonomies_blacklist','a:0:{}','yes'),(637,'duplicate_post_blacklist','','yes'),(638,'duplicate_post_types_enabled','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(639,'duplicate_post_show_original_column','0','yes'),(640,'duplicate_post_show_original_in_post_states','0','yes'),(641,'duplicate_post_show_original_meta_box','0','yes'),(642,'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'),(643,'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'),(644,'duplicate_post_version','4.5','yes'),(3406,'_transient_timeout_avada_dashboard_data','1692811212','no'),(551,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(549,'_transient_timeout_avada-builder-demo-theme-options','1693252818','no'),(1663,'fusion_builder_settings','a:1:{s:16:\"awb_layout_order\";s:34:\"global,532,902,1132,1329,1365,1496\";}','yes'),(3455,'_transient_timeout_fusion_tos_flat','1693413465','no');
INSERT INTO `wp_gc2023options` VALUES (3456,'_transient_fusion_tos_flat','a:687:{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: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>1100</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:462:\"<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.goodcausepartners.com/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">this page</a>, or <a href=\"https://test-site.goodcausepartners.com/wp-admin/post.php?post=12&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:337:\"<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.goodcausepartners.com/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:98:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/header1.jpg\";s:2:\"v2\";s:98:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/header2.jpg\";s:2:\"v3\";s:98:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/header3.jpg\";s:2:\"v4\";s:98:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/header4.jpg\";s:2:\"v5\";s:98:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/header5.jpg\";s:2:\"v6\";s:98:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/header6.jpg\";s:2:\"v7\";s:98:\"https://test-site.goodcausepartners.com/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:337:\"<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.goodcausepartners.com/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:337:\"<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.goodcausepartners.com/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:337:\"<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.goodcausepartners.com/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:334:\"<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.goodcausepartners.com/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:337:\"<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.goodcausepartners.com/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>215</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:82:\"https://test-site.goodcausepartners.com/wp-admin/nav-menus.php?action=edit&menu=20\";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:495:\"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://avada.com/documentation/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:348:\"<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.goodcausepartners.com/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:86:\"https://test-site.goodcausepartners.com/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:89:\"https://test-site.goodcausepartners.com/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:342:\"<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.goodcausepartners.com/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:353:\"<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.goodcausepartners.com/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:301:\"Controls what displays in the breadcrumbs area.   <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:300:\"Turn on to display the page title bar headings.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:377:\"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://avada.com/documentation/the-avada-options-network/\" 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:306:\"Controls the height of the page title bar on desktop.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:305:\"Controls the height of the page title bar on mobile.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:305:\"Controls the background color of the page title bar.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:302:\"Controls the border colors of the page title bar.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:312:\"Controls the font size for the page title bar main heading.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:314:\"Controls the line height for the page title bar main heading.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:312:\"Controls the text color of the page title bar main heading.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:309:\"Controls the font size for the page titlebar subheading.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:310:\"Controls the text color of the page title bar subheading.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:418:\"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://avada.com/documentation/the-avada-options-network/\" 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:368:\"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://avada.com/documentation/the-avada-options-network/\" 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:392:\"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://avada.com/documentation/the-avada-options-network/\" 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:370:\"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://avada.com/documentation/the-avada-options-network/\" 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:320:\"Turn on to use a parallax scrolling effect on the background image.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:304:\"Turn on to have the page title text fade on scroll.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:302:\"Turn on to display breadcrumbs on mobile devices.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:298:\"Controls the text before the breadcrumb menu.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:308:\"Controls the type of separator between each breadcrumb.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:8:\"css_vars\";a:1:{i:0;a:4:{s:4:\"name\";s:23:\"--breadcrumbs_separator\";s:7:\"element\";s:63:\".fusion-page-title-bar, .fusion-breadcrumbs .awb-breadcrumb-sep\";s:13:\"value_pattern\";s:3:\"\"$\"\";s:8:\"callback\";a:2:{i:0;s:13:\"replace_chars\";i:1;a:1:{s:12:\"replacements\";a:1:{s:1:\"\\\";s:2:\"\\\\\";}}}}}}s:21:\"breadcrumbs_font_size\";a:8:{s:5:\"label\";s:21:\"Breadcrumbs Font Size\";s:11:\"description\";s:301:\"Controls the font size for the breadcrumbs text.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:301:\"Controls the text color of the breadcrumbs font.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:307:\"Controls the text hover color of the breadcrumbs font.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:322:\"Turn on to display the post categories/terms in the breadcrumbs path.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:315:\"Turn on to display post type archives in the breadcrumbs path.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:310:\"Turn on to display the post name in the breadcrumbs path.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:353:\"<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.goodcausepartners.com/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:60:\"https://test-site.goodcausepartners.com/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:334:\"<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.goodcausepartners.com/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:337:\"<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.goodcausepartners.com/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:60:\"https://test-site.goodcausepartners.com/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:298:\"Controls the number of columns in the footer.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:297:\"Turn on to center the footer widget content.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:297:\"Turn on to center the copyright bar content.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:328:\"Enter the text that displays in the copyright bar. HTML markup can be used.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:205:\"Copyright 2012 - 2023 | <a href=\"https://bit.ly/2YJkGCr\">Avada Website Builder</a> by <a href=\"https://avada.com/\">Avada</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:337:\"<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.goodcausepartners.com/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:359:\"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://avada.com/documentation/the-avada-options-network/\" 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:362:\"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://avada.com/documentation/the-avada-options-network/\" 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:295:\"Controls how the background image repeats.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:301:\"Controls how the background image is positioned.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:337:\"<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.goodcausepartners.com/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:367:\"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://avada.com/documentation/the-avada-options-network/\" 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:311:\"Controls the top/right/bottom/left padding for the footer.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:297:\"Controls the background color of the footer.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:296:\"Controls the size of the top footer border.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:294:\"Controls the border colors of the footer.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:338:\"Turn on to have the footer widget area display vertical divider line between columns.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:335:\"Controls the size of the vertical divider line between footer widget area columns.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:336:\"Controls the style of the vertical divider line between footer widget area columns.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:359:\"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://avada.com/documentation/the-avada-options-network/\" 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:313:\"Controls the right/left padding for the footer widget areas.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:308:\"Controls the top/bottom padding for the copyright area.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:312:\"Controls the background color of the footer copyright area.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:299:\"Controls the size of the top copyright border.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:310:\"Controls the border colors for the footer copyright area.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:315:\"These settings control the typography for the footer headings.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:296:\"Controls the text color of the footer font.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:301:\"Controls the text color of the footer link font.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:307:\"Controls the text hover color of the footer link font.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:299:\"Controls the font size for the copyright text.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:\"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:99:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern1.png\";s:8:\"pattern2\";s:99:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern2.png\";s:8:\"pattern3\";s:99:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern3.png\";s:8:\"pattern4\";s:99:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern4.png\";s:8:\"pattern5\";s:99:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern5.png\";s:8:\"pattern6\";s:99:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern6.png\";s:8:\"pattern7\";s:99:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern7.png\";s:8:\"pattern8\";s:99:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern8.png\";s:8:\"pattern9\";s:99:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern9.png\";s:9:\"pattern10\";s:100:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern10.png\";s:9:\"pattern11\";s:100:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern11.png\";s:9:\"pattern12\";s:100:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern12.png\";s:9:\"pattern13\";s:100:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern13.png\";s:9:\"pattern14\";s:100:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern14.png\";s:9:\"pattern15\";s:100:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern15.png\";s:9:\"pattern16\";s:100:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern16.png\";s:9:\"pattern17\";s:100:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern17.png\";s:9:\"pattern18\";s:100:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern18.png\";s:9:\"pattern19\";s:100:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern19.png\";s:9:\"pattern20\";s:100:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern20.png\";s:9:\"pattern21\";s:100:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern21.png\";s:9:\"pattern22\";s:100:\"https://test-site.goodcausepartners.com/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:99:\"url(\"https://test-site.goodcausepartners.com/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:32:\"link_decoration_underline_offset\";a:8:{s:5:\"label\";s:37:\"Link Text Decoration Underline Offset\";s:11:\"description\";s:67:\"Controls the text decoration underline offset of all general links.\";s:2:\"id\";s:32:\"link_decoration_underline_offset\";s:7:\"default\";s:4:\"auto\";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:4:{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\";}i:2;a:3:{s:7:\"setting\";s:20:\"link_decoration_line\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:8:\"overline\";}i:3;a:3:{s:7:\"setting\";s:20:\"link_decoration_line\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:12:\"line-through\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:38:\"--awb-link_decoration_underline_offset\";}}}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:\"link_decoration_underline_offset_hover\";a:8:{s:5:\"label\";s:43:\"Link Hover Text Decoration Underline Offset\";s:11:\"description\";s:73:\"Controls the text hover decoration underline offset of all general links.\";s:2:\"id\";s:38:\"link_decoration_underline_offset_hover\";s:7:\"default\";s:4:\"auto\";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:4:{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\";}i:2;a:3:{s:7:\"setting\";s:26:\"link_decoration_line_hover\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:8:\"overline\";}i:3;a:3:{s:7:\"setting\";s:26:\"link_decoration_line_hover\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:12:\"line-through\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:44:\"--awb-link_decoration_underline_offset_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:335:\"<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.goodcausepartners.com/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:336:\"<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.goodcausepartners.com/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:356:\"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.goodcausepartners.com/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:326:\"Controls the number of words in the excerpts for portfolio archive pages.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:353:\"Controls the padding for the portfolio text layout when using boxed mode in portfolio archive pages.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:335:\"<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.goodcausepartners.com/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:336:\"<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.goodcausepartners.com/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:334:\"<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.goodcausepartners.com/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:337:\"<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.goodcausepartners.com/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:334:\"<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.goodcausepartners.com/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:337:\"<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.goodcausepartners.com/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:298:\"Controls the border color of the form fields.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:319:\"Controls the border color of the form fields when they have focus.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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: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:1885:\"<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://avada.com/documentation/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.goodcausepartners.com%2Fwp-admin%2Fadmin.php%3Fpage%3Davada%26_wpnonce%3D9e32549519\">Try again.</a></div><div data-id=\"no_token\"  style=\"display:flex\"><span><strong>Currently not connected. </strong><a target=\"_blank\" href=\"https://avada.com/documentation/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.goodcausepartners.com%2Fwp-admin%2Fadmin.php%3Fpage%3Davada%26_wpnonce%3D9e32549519\">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.goodcausepartners.com/wp-admin/admin.php?page=avada&#038;revoke_hubspot=1&#038;_wpnonce=9e32549519\">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:1523:\"<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://avada.com/documentation/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.goodcausepartners.com%2Fwp-admin%2Fadmin.php%3Fpage%3Davada%26_wpnonce%3D582003fb0c\">Try again.</a></div><div data-id=\"no_token\"  style=\"display:flex\"><span><strong>Currently not connected. </strong><a target=\"_blank\" href=\"https://avada.com/documentation/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.goodcausepartners.com%2Fwp-admin%2Fadmin.php%3Fpage%3Davada%26_wpnonce%3D582003fb0c\">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.goodcausepartners.com/wp-admin/admin.php?page=avada&#038;revoke_mailchimp=1&#038;_wpnonce=582003fb0c\">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: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:169:\"Follow the steps in <a href=\"https://avada.com/documentation/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:171:\"Follow the steps in <a href=\"https://avada.com/documentation/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:22:\"recaptcha_comment_form\";a:5:{s:5:\"label\";s:22:\"reCAPTCHA For Comments\";s:11:\"description\";s:42:\"Turn on to add reCAPTCHA to comment forms.\";s:2:\"id\";s:22:\"recaptcha_comment_form\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";}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:4:\"data\";s:10:\"post_types\";s:5:\"multi\";b:1;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:312:\"Set the minimal character count to trigger the live search.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:336:\"Controls the number of posts that should be displayed as search result suggestions.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:333:\"Controls the height of the container in which the search results will be listed.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:2:{s:4:\"name\";s:28:\"--live_search_results_height\";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:318:\"Turn on to display the featured image of each live search result.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:313:\"Turn on to display the post type of each live search result.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:335:\"<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.goodcausepartners.com/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:336:\"<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.goodcausepartners.com/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: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:6:\" [...]\";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: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:13:\"cloning_posts\";a:6:{s:5:\"label\";s:26:\"Enable Cloning Pages/Posts\";s:11:\"description\";s:151:\"Adds a button in posts/pages view under each item to allow an easy and fast way to clone the item. The button is also added to avada custom post types.\";s:2:\"id\";s:13:\"cloning_posts\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}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:301:\"Controls the direction the rollover starts from.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:309:\"Turn on to display the post title in the image rollover.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:314:\"Turn on to display the post categories in the image rollover.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:321:\"Turn on to display the icon background circle in the image rollover.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:309:\"Controls the top color of the image rollover background.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:312:\"Controls the bottom color of the image rollover background.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:325:\"Controls the color of image rollover text and icon circular backgrounds.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:307:\"Controls the color of the icons in the image rollover.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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: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:14:\"totop_position\";a:8:{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:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:12:\"status_totop\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"off\";}}}s:19:\"totop_border_radius\";a:8:{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:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:12:\"status_totop\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"off\";}}}s:16:\"totop_background\";a:7:{s:5:\"label\";s:16:\"ToTop Background\";s:11:\"description\";s:50:\"Controls the background color of the ToTop button.\";s:2:\"id\";s:16:\"totop_background\";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:18:\"--totop_background\";s:7:\"element\";s:6:\"#toTop\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:12:\"status_totop\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"off\";}}}s:22:\"totop_background_hover\";a:7:{s:5:\"label\";s:28:\"ToTop Background Hover Color\";s:11:\"description\";s:56:\"Controls the background hover color of the ToTop button.\";s:2:\"id\";s:22:\"totop_background_hover\";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:24:\"--totop_background_hover\";s:7:\"element\";s:6:\"#toTop\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:12:\"status_totop\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"off\";}}}s:16:\"totop_icon_color\";a:7:{s:5:\"label\";s:16:\"ToTop Icon Color\";s:11:\"description\";s:50:\"Controls the icon color color of the ToTop button.\";s:2:\"id\";s:16:\"totop_icon_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:18:\"--totop_icon_color\";s:7:\"element\";s:6:\"#toTop\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:12:\"status_totop\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"off\";}}}s:16:\"totop_icon_hover\";a:7:{s:5:\"label\";s:22:\"ToTop Icon Hover Color\";s:11:\"description\";s:50:\"Controls the icon hover color of the ToTop button.\";s:2:\"id\";s:16:\"totop_icon_hover\";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:18:\"--totop_icon_hover\";s:7:\"element\";s:6:\"#toTop\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:12:\"status_totop\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"off\";}}}s:22:\"totop_scroll_down_only\";a:7:{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:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:12:\"status_totop\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"off\";}}}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:99:\"url(\"https://test-site.goodcausepartners.com/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:102:\"url(\"https://test-site.goodcausepartners.com/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: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:4:{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: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:124:\"Exclude parts of your site like feed, pages, or archives from Maintenance or Coming Soon mode. Add one slug or URL 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:467:\"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.goodcausepartners.com/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:18:{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:\"800-italic\";s:21:\"Extra-Bold 800 Italic\";i:900;s:14:\"Ultra-Bold 900\";s:10:\"900-italic\";s:21:\"Ultra-Bold 900 Italic\";}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:16:\"js_compiler_note\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:151:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> JS Compiler is disabled. File does not exist or access is restricted.</div>\";s:2:\"id\";s:16:\"js_compiler_note\";s:4:\"type\";s:6:\"custom\";}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:397:\"<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.goodcausepartners.com/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'),(3392,'_transient_wp_smush_skip_image_sizes_recheck','1','no'),(2521,'_site_transient_timeout_available_translations','1692772411','no'),(2522,'_site_transient_available_translations','a:131:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-05-13 15:59:22\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"am\";a:8:{s:8:\"language\";s:2:\"am\";s:7:\"version\";s:5:\"6.0.5\";s:7:\"updated\";s:19:\"2022-09-29 20:43:49\";s:12:\"english_name\";s:7:\"Amharic\";s:11:\"native_name\";s:12:\"አማርኛ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.0.5/am.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"am\";i:2;s:3:\"amh\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"ቀጥል\";}}s:3:\"arg\";a:8:{s:8:\"language\";s:3:\"arg\";s:7:\"version\";s:8:\"6.2-beta\";s:7:\"updated\";s:19:\"2022-09-22 16:46:56\";s:12:\"english_name\";s:9:\"Aragonese\";s:11:\"native_name\";s:9:\"Aragonés\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.2-beta/arg.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"an\";i:2;s:3:\"arg\";i:3;s:3:\"arg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continar\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-06-18 08:25:23\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"متابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:6:\"4.8.22\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.22/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-05 08:49:59\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-12 20:34:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2019-10-29 07:54:22\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.9.23/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-06-23 11:21:55\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-19 13:23:37\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:28:\"চালিয়ে যান\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-10-30 03:24:38\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:33:\"མུ་མཐུད་དུ།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-02-22 20:45:53\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-15 13:01:35\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-21 11:59:07\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-05 14:06:30\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-19 15:27:26\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsæt\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-08 09:52:35\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.3/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-08 09:49:50\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-20 15:13:11\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/6.3/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-20 15:19:10\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-18 08:19:14\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/de_AT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dsb\";a:8:{s:8:\"language\";s:3:\"dsb\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2022-07-16 12:13:09\";s:12:\"english_name\";s:13:\"Lower Sorbian\";s:11:\"native_name\";s:16:\"Dolnoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.2/dsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"dsb\";i:3;s:3:\"dsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Dalej\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-22 09:14:44\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-13 12:52:17\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-18 06:22:52\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-08 16:08:07\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-03 07:25:21\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-03 07:13:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-05-17 04:31:21\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-13 17:52:55\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-04 16:53:05\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-09 16:14:38\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-11 02:48:56\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_EC\";a:8:{s:8:\"language\";s:5:\"es_EC\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-04-21 13:32:10\";s:12:\"english_name\";s:17:\"Spanish (Ecuador)\";s:11:\"native_name\";s:19:\"Español de Ecuador\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/es_EC.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-03-14 22:16:37\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_DO\";a:8:{s:8:\"language\";s:5:\"es_DO\";s:7:\"version\";s:5:\"5.8.7\";s:7:\"updated\";s:19:\"2021-10-08 14:32:50\";s:12:\"english_name\";s:28:\"Spanish (Dominican Republic)\";s:11:\"native_name\";s:33:\"Español de República Dominicana\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.7/es_DO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"5.8.7\";s:7:\"updated\";s:19:\"2021-10-04 20:53:18\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.7/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-06-14 16:02:22\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_UY\";a:8:{s:8:\"language\";s:5:\"es_UY\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-31 18:33:26\";s:12:\"english_name\";s:17:\"Spanish (Uruguay)\";s:11:\"native_name\";s:19:\"Español de Uruguay\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_UY.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PR\";a:8:{s:8:\"language\";s:5:\"es_PR\";s:7:\"version\";s:6:\"5.4.13\";s:7:\"updated\";s:19:\"2020-04-29 15:36:59\";s:12:\"english_name\";s:21:\"Spanish (Puerto Rico)\";s:11:\"native_name\";s:23:\"Español de Puerto Rico\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.13/es_PR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:6:\"5.2.18\";s:7:\"updated\";s:19:\"2019-03-02 06:35:01\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.2.18/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-17 17:10:36\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-08-12 08:38:59\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-05-24 16:21:45\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_AF\";a:8:{s:8:\"language\";s:5:\"fa_AF\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-07-02 10:08:01\";s:12:\"english_name\";s:21:\"Persian (Afghanistan)\";s:11:\"native_name\";s:31:\"(فارسی (افغانستان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/fa_AF.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-21 15:50:53\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-03 16:30:48\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-10 17:08:26\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-22 16:36:25\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-22 13:54:46\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:6:\"4.8.22\";s:7:\"updated\";s:19:\"2023-04-30 13:56:46\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.22/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"fy\";a:8:{s:8:\"language\";s:2:\"fy\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2022-12-25 12:53:23\";s:12:\"english_name\";s:7:\"Frisian\";s:11:\"native_name\";s:5:\"Frysk\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/fy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fy\";i:2;s:3:\"fry\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Trochgean\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-22 18:15:33\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-09 07:20:47\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ચાલુ રાખો\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:6:\"4.4.30\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.4.30/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-28 22:06:16\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-17 18:41:36\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"जारी रखें\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-10 07:55:29\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:3:\"hsb\";a:8:{s:8:\"language\";s:3:\"hsb\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-02-22 17:37:32\";s:12:\"english_name\";s:13:\"Upper Sorbian\";s:11:\"native_name\";s:17:\"Hornjoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.2/hsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-22 09:25:05\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-18 14:34:17\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2018-12-11 10:40:02\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.23/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-07 12:42:08\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-07 01:15:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"次へ\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2019-02-16 23:58:56\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.23/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Nerusaké\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"6.0.5\";s:7:\"updated\";s:19:\"2023-05-19 07:40:56\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.5/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-07-05 11:40:39\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.2/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2018-07-10 11:35:44\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.23/kk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Жалғастыру\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:6:\"5.2.18\";s:7:\"updated\";s:19:\"2019-06-10 16:18:28\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2.18/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:2:\"kn\";a:8:{s:8:\"language\";s:2:\"kn\";s:7:\"version\";s:5:\"6.1.3\";s:7:\"updated\";s:19:\"2022-10-20 17:15:28\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.3/kn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kn\";i:2;s:3:\"kan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"ಮುಂದುವರಿಸು\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-04 06:07:20\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-09 00:11:15\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی‎\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/translation/core/6.3/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"به‌رده‌وام به‌\";}}s:3:\"kir\";a:8:{s:8:\"language\";s:3:\"kir\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-18 17:02:03\";s:12:\"english_name\";s:6:\"Kyrgyz\";s:11:\"native_name\";s:16:\"Кыргызча\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/translation/core/6.3/kir.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ky\";i:2;s:3:\"kir\";i:3;s:3:\"kir\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Улантуу\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"ຕໍ່​ໄປ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"6.1.3\";s:7:\"updated\";s:19:\"2022-11-24 03:51:58\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.3/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-08 18:51:09\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"6.0.5\";s:7:\"updated\";s:19:\"2022-10-01 09:23:52\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.5/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:43:32\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-03 01:58:55\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2019-11-22 15:32:08\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.23/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:6:\"5.5.12\";s:7:\"updated\";s:19:\"2022-03-11 13:52:22\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.5.12/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.2.35\";s:7:\"updated\";s:19:\"2017-12-26 11:57:10\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.35/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-19 21:47:18\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-02 04:53:35\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-17 07:09:13\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/6.3/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-21 08:48:39\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-11 10:41:58\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-18 10:59:16\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:6:\"4.8.22\";s:7:\"updated\";s:19:\"2017-08-25 10:03:08\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.22/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:15:\"Panjabi (India)\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-02 09:00:40\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.3.31\";s:7:\"updated\";s:19:\"2015-12-02 21:41:29\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.3.31/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-17 11:14:54\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-10 16:56:03\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-21 12:17:05\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"Português de Angola\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/pt_AO.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-03-31 07:59:30\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/6.3/pt_PT_ao90.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-18 09:41:56\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-20 14:55:02\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:3:\"snd\";a:8:{s:8:\"language\";s:3:\"snd\";s:7:\"version\";s:6:\"5.4.13\";s:7:\"updated\";s:19:\"2020-07-07 01:53:37\";s:12:\"english_name\";s:6:\"Sindhi\";s:11:\"native_name\";s:8:\"سنڌي\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/5.4.13/snd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:3:\"snd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"اڳتي هلو\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-17 07:24:11\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:3:\"skr\";a:8:{s:8:\"language\";s:3:\"skr\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-13 11:41:50\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/translation/core/6.3/skr.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"skr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"جاری رکھو\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-08 12:29:02\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-19 10:40:17\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.3/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"5.8.7\";s:7:\"updated\";s:19:\"2021-08-01 21:21:06\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.7/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-11 16:00:32\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"sw\";a:8:{s:8:\"language\";s:2:\"sw\";s:7:\"version\";s:6:\"5.3.15\";s:7:\"updated\";s:19:\"2019-10-13 15:35:35\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.3.15/sw.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sw\";i:2;s:3:\"swa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Endelea\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}}s:5:\"ta_LK\";a:8:{s:8:\"language\";s:5:\"ta_LK\";s:7:\"version\";s:6:\"4.2.35\";s:7:\"updated\";s:19:\"2015-12-03 01:07:44\";s:12:\"english_name\";s:17:\"Tamil (Sri Lanka)\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.35/ta_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"தொடர்க\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"5.8.7\";s:7:\"updated\";s:19:\"2022-06-08 04:30:30\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.7/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:6:\"4.8.22\";s:7:\"updated\";s:19:\"2017-09-30 09:04:29\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.22/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-19 20:18:40\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2021-07-03 18:41:33\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.23/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"6.1.3\";s:7:\"updated\";s:19:\"2023-03-04 10:46:30\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.3/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:6:\"5.4.13\";s:7:\"updated\";s:19:\"2020-04-09 11:17:33\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.4.13/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-28 12:02:22\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-07-15 15:30:50\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-03 18:38:05\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2022-07-15 15:25:03\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:12:\"香港中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"6.3\";s:7:\"updated\";s:19:\"2023-08-17 14:06:22\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}}','no'),(477,'fusion_builder_version','3.11.2','yes'),(478,'fusion_form_cleanup_datetime','1692811725','yes');
INSERT INTO `wp_gc2023options` VALUES (435,'_site_transient_fusion_wordpress_org_plugins','a:7:{s:3:\"pwa\";a:26:{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/22ed378fbf1d918ef43a45b2a1f34634?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:3:\"6.3\";s:12:\"requires_php\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:80;s:7:\"ratings\";a:5:{i:5;i:16;i:4;i:0;i:3;i:0;i:2;i:0;i:1;i:5;}s:11:\"num_ratings\";i:21;s:15:\"support_threads\";i:1;s:24:\"support_threads_resolved\";i:1;s:15:\"active_installs\";i:30000;s:12:\"last_updated\";s:21:\"2023-08-07 9:40pm 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:4482:\"<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\" rel=\"ugc\">plugin forum</a>.</strong></p>\n\";s:3:\"faq\";s:466:\"<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/\" rel=\"ugc\">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\" rel=\"ugc\">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:13657:\"<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 working with latest iOS./iPadOS 16.4</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/gypsy-soo/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/d0158acf33cd9dff9aaf48e19421afe1?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/d0158acf33cd9dff9aaf48e19421afe1?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/gypsy-soo/\" class=\"reviewer-name\">Gypsy Soo</a> on <span class=\"review-date\">April 1, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Looks like it is incompatible with the latest iOS/iPadOS 16.4, install the plugin, open the website at iPad Safari, then save to Home Screen, not working at all.</p>\n<!-- /wp:paragraph --></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\">Its nice work</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/baroc/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/a311a7dd1558ca65113a7b51b1325202?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/a311a7dd1558ca65113a7b51b1325202?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/baroc/\" class=\"reviewer-name\">baroc</a> on <span class=\"review-date\">March 13, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>easy to work and its wonderful work thx. </p>\n<!-- /wp:paragraph --></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\">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\";}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:26:{s:4:\"name\";s:11:\"WooCommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:7:\"version\";s:5:\"8.0.2\";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:11:\"Mike Jolley\";}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:\"6.2\";s:6:\"tested\";s:3:\"6.3\";s:12:\"requires_php\";s:3:\"7.3\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:90;s:7:\"ratings\";a:5:{i:5;i:3418;i:4;i:170;i:3;i:92;i:2;i:93;i:1;i:353;}s:11:\"num_ratings\";i:4126;s:15:\"support_threads\";i:1562;s:24:\"support_threads_resolved\";i:1183;s:15:\"active_installs\";i:5000000;s:12:\"last_updated\";s:21:\"2023-08-15 8:05pm 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:11840:\"<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\">WooPayments</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\" rel=\"ugc\">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:2392:\"<h4>Minimum Requirements</h4>\n<ul>\n<li>PHP 7.3 or greater is required (PHP 8.0 or greater is recommended)</li>\n<li>MySQL 5.6 or greater, OR MariaDB version 10.1 or greater, is required</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\" rel=\"ugc\">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/\" rel=\"ugc\">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:7930:\"\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\" rel=\"ugc\">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\" rel=\"ugc\">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://woocommerce.com/feature-requests/woocommerce?utm_medium=referral&amp;utm_source=wordpress.org&amp;utm_campaign=wp_org_repo_listing\" rel=\"nofollow ugc\">feature request 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:386:\"<h4>8.0.2 2023-08-15</h4>\n<ul>\n<li>Fix &#8211; Fix an issue which was causing some attributes to default to a minimum length of 3. <a href=\"https://github.com/woocommerce/woocommerce/pull/39686\" rel=\"nofollow ugc\">#39686</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:15106:\"<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 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/pirfirdouse/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/96216e0371cc681729fec5c3dd6a6ebe?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/96216e0371cc681729fec5c3dd6a6ebe?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/pirfirdouse/\" class=\"reviewer-name\">pirfirdouse</a> on <span class=\"review-date\">August 18, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p class=\"\">better than edd</p>\n<!-- /wp:paragraph --></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\">Good plugin and excellent 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/xitomer01/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/70dcbd8202c7bcc6c31f2496ea840fbb?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/70dcbd8202c7bcc6c31f2496ea840fbb?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/xitomer01/\" class=\"reviewer-name\">xitomer01</a> on <span class=\"review-date\">August 17, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p class=\"\">The problem I\'ve had is that my revenue report data is incorrect and I can not import historical data. Since I\'m a non-professional WordPress administrator, I can\'t do anything about this problem at all. So I chose to come here for help. I\'m glad to get help from the support team, Roxy S. patiently told me the steps and helped me to find out the problem and told to me how to solve the issue. Thanks to her time and reply. Thanks the support team of Woocommerce!</p>\n<!-- /wp:paragraph --></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\">Thankfull for the support received</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/regianesouza/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/0cc041980c0c30fa92b7b2752cb0e39b?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/0cc041980c0c30fa92b7b2752cb0e39b?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/regianesouza/\" class=\"reviewer-name\">Regiane Souza <small>(regianesouza)</small></a> on <span class=\"review-date\">August 16, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p class=\"\">Hi! I am very grateful for the support received. @aguinaldodarla helped me a lot with an issue that was suffocating me. Thank you very much!</p>\n<!-- /wp:paragraph --></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 good support! :D</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/missdjein/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/4c4d3afb2e598ce9a4a00e997ed5a2a7?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/4c4d3afb2e598ce9a4a00e997ed5a2a7?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/missdjein/\" class=\"reviewer-name\">missdjein</a> on <span class=\"review-date\">August 15, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p class=\"\">Very good support! :D</p>\n<!-- /wp:paragraph --></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 good 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/ridersjin/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/ffed3e9e65111cbca1ae568ff1df62c4?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/ffed3e9e65111cbca1ae568ff1df62c4?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/ridersjin/\" class=\"reviewer-name\">ridersjin</a> on <span class=\"review-date\">August 10, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p class=\"\">Very good support !</p>\n<!-- /wp:paragraph --></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/iguanamom/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/ba357e7a10be3c61ba51115a7bca1d68?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/ba357e7a10be3c61ba51115a7bca1d68?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/iguanamom/\" class=\"reviewer-name\">WorkinWP <small>(iguanamom)</small></a> on <span class=\"review-date\">August 10, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p class=\"\">I\'ve exclusively used Woo with my websites, so I\'m fairly used to the nuances and shortcomings it has. It\'s a great plugin that incorporates everything you need in a shopping experience.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p class=\"\">Any time I\'ve needed help and exhausted google searches for a problem, I\'ve been impressed by the response time to my issue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p class=\"\">I know they must be swamped with requests, but the care and attention I\'ve received was top notch. That means a lot to me and just wanted to say thank you for that and for providing a premium free plugin. </p>\n<!-- /wp:paragraph --></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\">good API</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/oneprg/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/1ab321fe011105be453440f164275c63?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/1ab321fe011105be453440f164275c63?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/oneprg/\" class=\"reviewer-name\">oneprg</a> on <span class=\"review-date\">August 9, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p class=\"\">I also note that the plugin has a good API.</p>\n<!-- /wp:paragraph --></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\">Robust Plugin With Good 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/studio544/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/074c7f9541ca36442ac39fde50791160?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/074c7f9541ca36442ac39fde50791160?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/studio544/\" class=\"reviewer-name\">studio544</a> on <span class=\"review-date\">August 9, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p class=\"\">WooCommerce is a very complex plugin with lots of moving parts so it\'s easy for something to go off the rails if you don\'t have all of your ducks in a row. It\'s nice to have the support of their development team to answer those tough questions that can come up during a project.</p>\n<!-- /wp:paragraph --></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/kasia1978/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/a491367d1a99d77a3c8be8f25df05c52?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/a491367d1a99d77a3c8be8f25df05c52?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/kasia1978/\" class=\"reviewer-name\">kasia1978</a> on <span class=\"review-date\">August 7, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p class=\"\">I had a long lasting issue with the sale badge that was resolved by Owadud (@owadud655). Super! Thank you so much!</p>\n<!-- /wp:paragraph --></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 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/chrisjeret/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/b822085c2e40b1987b4fe3d50334690e?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/b822085c2e40b1987b4fe3d50334690e?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/chrisjeret/\" class=\"reviewer-name\">JCM <small>(chrisjeret)</small></a> on <span class=\"review-date\">August 6, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p class=\"\">Thank you for the excellent Support!🤘</p>\n<!-- /wp:paragraph --></div>\n</div>\n\";}s:13:\"download_link\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.0.2.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\";s:0:\"\";}i:2;a:2:{s:3:\"src\";s:64:\"https://ps.w.org/woocommerce/assets/screenshot-2.jpg?rev=2366418\";s:7:\"caption\";s:0:\"\";}i:3;a:2:{s:3:\"src\";s:64:\"https://ps.w.org/woocommerce/assets/screenshot-3.jpg?rev=2366418\";s:7:\"caption\";s:0:\"\";}i:4;a:2:{s:3:\"src\";s:64:\"https://ps.w.org/woocommerce/assets/screenshot-4.jpg?rev=2366418\";s:7:\"caption\";s:0:\"\";}i:5;a:2:{s:3:\"src\";s:64:\"https://ps.w.org/woocommerce/assets/screenshot-5.jpg?rev=2366418\";s:7:\"caption\";s:0:\"\";}i:6;a:2:{s:3:\"src\";s:64:\"https://ps.w.org/woocommerce/assets/screenshot-6.jpg?rev=2366418\";s:7:\"caption\";s:0:\"\";}}s:4:\"tags\";a:5:{s:9:\"ecommerce\";s:9:\"ecommerce\";s:12:\"online-store\";s:12:\"online store\";s:11:\"sell-online\";s:11:\"sell online\";s:4:\"shop\";s:4:\"shop\";s:13:\"shopping-cart\";s:13:\"shopping cart\";}s:8:\"versions\";a:367:{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:5:\"7.0.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.0.1.zip\";s:5:\"7.1.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.1.0.zip\";s:12:\"7.1.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.1.0-beta.1.zip\";s:12:\"7.1.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.1.0-beta.2.zip\";s:10:\"7.1.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.1.0-rc.1.zip\";s:10:\"7.1.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.1.0-rc.2.zip\";s:5:\"7.1.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.1.1.zip\";s:5:\"7.2.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.2.0.zip\";s:12:\"7.2.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.2.0-beta.1.zip\";s:12:\"7.2.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.2.0-beta.2.zip\";s:10:\"7.2.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.2.0-rc.1.zip\";s:10:\"7.2.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.2.0-rc.2.zip\";s:5:\"7.2.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.2.1.zip\";s:5:\"7.2.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.2.2.zip\";s:5:\"7.2.3\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.2.3.zip\";s:5:\"7.3.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.3.0.zip\";s:12:\"7.3.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.3.0-beta.1.zip\";s:12:\"7.3.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.3.0-beta.2.zip\";s:10:\"7.3.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.3.0-rc.1.zip\";s:10:\"7.3.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.3.0-rc.2.zip\";s:5:\"7.4.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.4.0.zip\";s:12:\"7.4.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.4.0-beta.1.zip\";s:12:\"7.4.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.4.0-beta.2.zip\";s:10:\"7.4.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.4.0-rc.1.zip\";s:10:\"7.4.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.4.0-rc.2.zip\";s:5:\"7.4.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.4.1.zip\";s:5:\"7.5.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.5.0.zip\";s:12:\"7.5.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.5.0-beta.1.zip\";s:12:\"7.5.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.5.0-beta.2.zip\";s:10:\"7.5.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.5.0-rc.1.zip\";s:5:\"7.5.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.5.1.zip\";s:5:\"7.6.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.6.0.zip\";s:12:\"7.6.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.6.0-beta.1.zip\";s:12:\"7.6.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.6.0-beta.2.zip\";s:10:\"7.6.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.6.0-rc.1.zip\";s:10:\"7.6.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.6.0-rc.2.zip\";s:10:\"7.6.0-rc.3\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.6.0-rc.3.zip\";s:5:\"7.6.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.6.1.zip\";s:5:\"7.7.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.7.0.zip\";s:12:\"7.7.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.7.0-beta.1.zip\";s:12:\"7.7.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.7.0-beta.2.zip\";s:10:\"7.7.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.7.0-rc.1.zip\";s:5:\"7.7.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.7.1.zip\";s:5:\"7.7.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.7.2.zip\";s:5:\"7.8.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.8.0.zip\";s:12:\"7.8.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.8.0-beta.1.zip\";s:12:\"7.8.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.8.0-beta.2.zip\";s:10:\"7.8.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.8.0-rc.1.zip\";s:10:\"7.8.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.8.0-rc.2.zip\";s:5:\"7.8.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.8.1.zip\";s:5:\"7.8.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.8.2.zip\";s:5:\"7.9.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.7.9.0.zip\";s:12:\"7.9.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.9.0-beta.1.zip\";s:12:\"7.9.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.7.9.0-beta.2.zip\";s:10:\"7.9.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.9.0-rc.2.zip\";s:10:\"7.9.0-rc.3\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.7.9.0-rc.3.zip\";s:5:\"8.0.0\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.0.0.zip\";s:12:\"8.0.0-beta.1\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.8.0.0-beta.1.zip\";s:12:\"8.0.0-beta.2\";s:67:\"https://downloads.wordpress.org/plugin/woocommerce.8.0.0-beta.2.zip\";s:10:\"8.0.0-rc.1\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.8.0.0-rc.1.zip\";s:10:\"8.0.0-rc.2\";s:65:\"https://downloads.wordpress.org/plugin/woocommerce.8.0.0-rc.2.zip\";s:5:\"8.0.1\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.0.1.zip\";s:5:\"8.0.2\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.8.0.2.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:26:{s:4:\"name\";s:19:\"The Events Calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:7:\"version\";s:7:\"6.2.0.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:\"6.1.0\";s:6:\"tested\";s:3:\"6.3\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:84;s:7:\"ratings\";a:5:{i:5;i:1568;i:4;i:124;i:3;i:79;i:2;i:64;i:1;i:280;}s:11:\"num_ratings\";i:2115;s:15:\"support_threads\";i:187;s:24:\"support_threads_resolved\";i:117;s:15:\"active_installs\";i:800000;s:12:\"last_updated\";s:21:\"2023-08-16 4:18pm GMT\";s:5:\"added\";s:10:\"2010-01-19\";s:8:\"homepage\";s:0:\"\";s:8:\"sections\";a:6:{s:11:\"description\";s:6783:\"<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\" rel=\"ugc\">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/\" rel=\"ugc\">Event Tickets</a><br />\n📐 <a href=\"https://wordpress.org/plugins/advanced-post-manager/\" rel=\"ugc\">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/\" rel=\"ugc\">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:9796:\"\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/\" rel=\"ugc\">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/\" rel=\"ugc\">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/\" rel=\"ugc\">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/\" rel=\"ugc\">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:305238:\"<h4>[6.2.0.1] 2023-08-16</h4>\n<ul>\n<li>Fix &#8211; Ensure we pass the correct number of params to <code>maybe_get_new_order_from_blocks</code> [TEC-4889]</li>\n</ul>\n<h4>[6.2.0] 2023-08-15</h4>\n<ul>\n<li>Tweak &#8211; Change styling for Venue Blocks to constrain to a card-like style. [ECP-1540]</li>\n<li>Tweak &#8211; Adjust REST endpoints to support multiple venues during event creation and updates. [ECP-1540]</li>\n<li>Tweak &#8211; If multiple venues exist on an event, display them in the classic event editor. [ECP-1540]</li>\n<li>Fix &#8211; Ensure the block editor includes support for user-defined custom CSS classes. [TEC-4724]</li>\n<li>Fix &#8211; Ensure the &#8220;Add Organizer&#8221; button is visible in the classic editor if organizers have been set. [TEC-4729]</li>\n<li>Fix &#8211; Simplify data handling of venues within the block editor. [ECP-1540]</li>\n<li>Fix &#8211; When removing a newly created organizer in the block editor before saving the event will now trash the draft organizer. [TEC-3865]</li>\n<li>Tweak &#8211; Added filters: <code>tec_events_rewrite_dynamic_matchers</code>, <code>tec_events_views_v2_assets_should_enqueue_single_event_block_editor_styles</code>, <code>tec_events_title_taxonomies</code>, <code>tec_events_views_v2_view_header_title_element</code>, <code>tec_events_views_v2_view_{$view_slug}_header_title_element</code>, <code>tec_events_views_v2_view_header_title</code>, <code>tec_events_views_v2_view_{$view_slug}_header_title</code>, <code>tec_events_views_v2_view_content_title</code>, <code>tec_events_views_v2_view_{$view_slug}_content_title</code>, <code>tec_get_venue_ids</code></li>\n<li>Tweak &#8211; Added actions: <code>tec_events_after_venue_map_fields</code></li>\n<li>Tweak &#8211; Changed views: <code>blocks/event-venue.php</code>, <code>blocks/parts/map.php</code>, <code>blocks/parts/venue.php</code>, <code>v2/base.php</code>, <code>v2/components/breadcrumbs/linked-breadcrumbs.php</code>, <code>v2/components/content-title.php</code>, &#8216;v2/components/header-title.php<code>,</code>v2/components/header.php<code>,</code>v2/components/messages.php<code>,</code>v2/day.php<code>,</code>v2/day/event/venue.php<code>,</code>v2/list.php<code>,</code>v2/list/event/venue.php<code>,</code>v2/month.php`</li>\n<li>Language &#8211; 3 new strings added, 72 updated, 1 fuzzied, and 2 obsoleted</li>\n</ul>\n<h4>[6.1.4] 2023-08-10</h4>\n<ul>\n<li>Version &#8211; The minimum supported version of WordPress is now 6.1.0</li>\n<li>Fix &#8211; In some scenarios our pagination and various view actions would fail due to 403 errors on the REST endpoints, because of failing nonce checks, likely due to cache. Updating the way we handle nonces to avoid some scenarios the wrong nonce could be cached. [TEC-4814]</li>\n<li>Fix &#8211; This issue was regarding our rewrite parsing for the view picker url generation with WPML enabled. It was failing to parse the translated rewrite properly, and leaving unparsed permalinks. [TEC-4758]</li>\n<li>Fix &#8211; Ensure we output valid html around\n<dt> and </p>\n<dd> elements in an accessible way. [TEC-4812]</dd>\n</dt>\n</li>\n<li>Fix &#8211; Ensure the block editor includes support for user-defined custom CSS classes. [TEC-4724]</li>\n<li>Fix &#8211; Our logic to include <code>tribe_events</code> post type on the tag archive page was incorrectly bleeding into other queries happening on the page. This narrows the scope for the <code>WP_Query</code> post type overrides and avoids situations where Divi templates were not loading properly. [TEC-4819]</li>\n<li>Fix &#8211; Correct some PHP 8.1 deprecations that impact loading of views. [TEC-4871]</li>\n<li>Fix &#8211; Prevent TypeError warnings around <code>admin_footer_text_settings</code> filter due to type hinting conflicting with other plugins returning null.</li>\n<li>Tweak &#8211; Deprecated misspelled <code>tribe_get_organiser_object_after</code> filter for one with correct spelling: <code>tribe_get_organizer_object_after</code>. Done as part of [TEC-4812]</li>\n<li>Tweak &#8211; Remove end colons from some translated strings. Done as part of [TEC-4812]</li>\n<li>Tweak &#8211; Fix typo in template displaying stray &#8220;w&#8221;. [TEC-4870]</li>\n<li>Tweak &#8211; Removed code pertaining to Event Tickets CT1. [ETP-874]</li>\n<li>Tweak &#8211; Added filters: <code>tec_events_views_v2_get_rest_nonces</code>, <code>tribe_events_get_organizer_object_after</code></li>\n<li>Tweak &#8211; Deprecated filters: <code>tribe_events_get_organiser_object_after</code></li>\n<li>Tweak &#8211; Deprecated functions: In <code>Tribe\\Views\\V2\\Views\\Traits\\HTML_Cache.php</code> the <code>get_view_nonce_fields()</code>,<code>get_view_nonce_attributes()</code>, <code>get_view_nonce_json_properties()</code>, <code>extract_nonces_before_cache()</code>, <code>extract_nonces_before_cache()</code>, <code>extract_nonces_before_cache()</code>, and <code>maybe_generate_nonce()</code> functions have been deprecated.</li>\n<li>Tweak &#8211; Changed views: <code>blocks/classic-event-details.php</code>, <code>blocks/event-category.php</code>, <code>blocks/event-datetime.php</code>, <code>blocks/event-organizer.php</code>, <code>blocks/event-price.php</code>, <code>blocks/event-tags.php</code>, <code>blocks/event-venue.php</code>, <code>blocks/event-website.php</code>, <code>blocks/featured-image.php</code>, <code>blocks/parts/details.php</code>, <code>blocks/parts/organizer.php</code>, <code>blocks/parts/subscribe-list.php</code>, <code>blocks/parts/subscribe-single.php</code>, <code>modules/meta/organizer.php</code>, <code>modules/meta/venue.php</code>, <code>v2/components/events-bar/search.php</code>, <code>v2/day.php</code>, <code>v2/list.php</code>, <code>v2/month.php</code>, <code>v2/widgets/widget-events-list.php</code>.</li>\n<li>Language &#8211; 11 new strings added, 12 updated, 0 fuzzied, and 0 obsoleted.</li>\n</ul>\n<h4>[6.1.3] 2023-07-13</h4>\n<ul>\n<li>Version &#8211; The Events Calendar 6.1.3 is only compatible with Events Community 4.10.10 and higher</li>\n<li>Fix &#8211; Performance improvements on Month and Day view when a lot of future and past events were found. [TEC-3089]</li>\n<li>Fix &#8211; Ensure we&#8217;re using the correct download link for the <code>Export Outlook .ics</code> file in the single event page. [TEC-4776]</li>\n<li>Fix &#8211; Ensure TEC styles can be easily overridden by themes and page builders. [ECP-1503]</li>\n<li>Fix &#8211; Avoid the issue where TEC blocks would break when either the <code>WP Go Maps</code>, <code>MapPress Google Maps</code> and <code>Leaflet Maps</code> plugins were active on a site. [TEC-4810]</li>\n<li>Fix &#8211; Added some event parsing to ensure only valid events are handled in the iCal file generation. [TEC-4837]</li>\n<li>Fix &#8211; Harden some of our CSS to prevent unintended overrides by Elementor global styles. [TEC-4811]</li>\n<li>Fix &#8211; Log errors throw in the context of the Custom Tables v1 component. [ET-1486]</li>\n<li>Fix &#8211; Adding memoizing into the CT1 models to help reduce trips to fetch the same instance. [ECP-1505]</li>\n<li>Tweak &#8211; Refactored CSS for Tickets Emails to better conform to email client CSS standards. [TEC-4849]</li>\n<li>Tweak &#8211; Added filters: <code>tec_events_ical_protected_content_description</code></li>\n<li>Tweak &#8211; Added actions: <code>tribe_log</code></li>\n<li>Tweak &#8211; Changed views: <code>integrations/event-tickets/emails/template-parts/header/head/tec-styles</code></li>\n<li>Security &#8211; Various improvements to event creation.</li>\n<li>Language &#8211; 1 new strings added, 129 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[6.1.2.2] 2023-06-23</h4>\n<ul>\n<li>Fix &#8211; Ensure there is backwards compatibility with Extensions and Pods.</li>\n</ul>\n<h4>[6.1.2.1] 2023-06-22</h4>\n<ul>\n<li>Fix &#8211; Prevent Telemetry from being initialized and triggering a Fatal when the correct conditionals are not met.</li>\n</ul>\n<h4>[6.1.2] 2023-06-22</h4>\n<ul>\n<li>Version &#8211; The Events Calendar 6.1.2 is only compatible with Event Tickets 5.6.1 and higher</li>\n<li>Version &#8211; The Events Calendar 6.1.2 is only compatible with Events Filterbar 5.5.0 and higher</li>\n<li>Version &#8211; The Events Calendar 6.1.2 is only compatible with Events Community 4.10.8 and higher</li>\n<li>Version &#8211; The Events Calendar 6.1.2 is only compatible with Events Community Tickets 4.9.3 and higher</li>\n<li>Version &#8211; The Events Calendar 6.1.2 is only compatible with Eventbrite Tickets 4.6.14 and higher</li>\n<li>Version &#8211; The Events Calendar 6.1.2 is only compatible with Virtual Events 1.15.1 and higher</li>\n<li>Version &#8211; The Events Calendar 6.1.2 is only compatible with Event Automator 1.3.1 and higher</li>\n<li>Fix &#8211; Lock our container usage(s) to the new Service_Provider contract in tribe-common. This prevents conflicts and potential fatals with other plugins that use a di52 container.</li>\n</ul>\n<h4>[6.1.1] 2023-06-15</h4>\n<ul>\n<li>Feature &#8211; Include Events data into the Tickets Email for compatibility with Event Tickets. [ET-1552] [ET-1553] [ET-1601]</li>\n<li>Tweak &#8211; Added filters: <code>tribe_general_settings_viewing_section</code>, <code>tribe_general_settings_editing_section</code>, <code>tribe_general_settings_maintenance_section</code>, <code>tribe_general_settings_debugging_section</code></li>\n<li>Tweak &#8211; Removed filters: <code>tec_events_integrations_should_load</code>, <code>tec_events_integrations_{$type}_should_load</code>, <code>tec_events_integrations_{$type}_{$slug}_should_load</code>, <code>tribe_events_integrations_should_load_freemius</code></li>\n<li>Tweak &#8211; Added actions: <code>tec_telemetry_modal</code></li>\n<li>Tweak &#8211; Changed views: <code>integrations/event-tickets/emails/template-parts/body/event/date</code>, <code>integrations/event-tickets/emails/template-parts/body/event/image</code>, <code>integrations/event-tickets/emails/template-parts/body/event/links</code>, <code>integrations/event-tickets/emails/template-parts/body/event/links/gcal</code>, <code>integrations/event-tickets/emails/template-parts/body/event/links/ical</code>, <code>integrations/event-tickets/emails/template-parts/body/event/venue</code>, <code>integrations/event-tickets/emails/template-parts/body/event/venue/address</code>, <code>integrations/event-tickets/emails/template-parts/body/event/venue/phone</code>, <code>integrations/event-tickets/emails/template-parts/body/event/venue/website</code>, <code>integrations/event-tickets/emails/template-parts/header/head/tec-styles</code></li>\n<li>Language &#8211; 28 new strings added, 132 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[6.1.0.1] 2023-06-14</h4>\n<ul>\n<li>Fix &#8211; Prevent fatals when older version of Event Tickets was looking for Freemius code that was removed.</li>\n</ul>\n<h4>[6.1.0] 2023-06-14</h4>\n<ul>\n<li>Feature &#8211; Replace Freemius with Telemetry &#8211; an in-house info system. [TEC-4700]</li>\n<li>Feature &#8211; Add plugin info to Site Health admin page. [TEC-4701]</li>\n<li>Fix &#8211; Elementor and other themes would inadvertently override styles on the tickets button, when the global styles were set. This hardens the common button (rsv/ticket button) styles a bit more. [TEC-4794]</li>\n<li>Fix &#8211; Added option to disable pagination on the Month and Week views to address issue of missing events. [TEC-4615]</li>\n<li>Fix &#8211; Avoid SQL error when filtering by Series in Custom Tables v1 context. [ET-1486]</li>\n<li>Fix &#8211; Fixes database error, caused by the CT1 query parser when attempting rewrite the order by statement. Added logic to reflect on meta query arrays, and not just key/value pairs. [ECP-1495]</li>\n<li>Fix &#8211; In block editor there were unnecessary geocode API calls being triggered for Event Venue blocks. Moved logic within stateful conditions, now it no longer runs fetch if the address has not actually changed. [TEC-4741]</li>\n<li>Fix &#8211; Prevent administration navigation fatal error with <code>TypeError: array_search()</code>. [TEC-4780]</li>\n<li>Fix &#8211; Removing our eager schema updates. This was causing a number of <code>ALTER</code> statements being run redundantly. No longer utilizes cache/transient for the last run check as it is not dependable. [TEC-4797]</li>\n<li>Fix &#8211; This fixes a situation where cache would cause the <code>post</code> reference to switch to the initial <code>post</code> mid-loop on the admin events list page. This likely could have been happening on other pages as well. [TEC-4690]</li>\n<li>Tweak &#8211; Ensure the page titles on the single venue and organizer pages include the respective post titles for improved SEO. [ECP-1173]</li>\n<li>Tweak &#8211; Updates title tags on events pages, to be more unique and search specific, taking on formats like &#8220;Events from February 2, 2017 &#8211; February 3, 2019&#8221;. [TEC-4692]</li>\n<li>Tweak &#8211; Utilize our new container architecture in tribe-common.</li>\n<li>Language &#8211; 1 new strings added, 22 updated, 1 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[6.0.13.1] 2023-05-15</h4>\n<ul>\n<li>Fix &#8211; In block editor there were unnecessary geocode API calls being triggered for Event Venue blocks. Moved logic within stateful conditions, now it no longer runs fetch if the address has not actually changed. [TEC-4741]</li>\n<li>Language &#8211; 0 new strings added, 6 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[6.0.13] 2023-05-08</h4>\n<ul>\n<li>Fix &#8211; Correct issue with event subscriptions not passing events past the first 30. [TEC_4584]</li>\n<li>Fix &#8211; Ensure Events are displayed correctly on Elementor&#8217;s <code>Posts</code> widget. [TEC-4685]</li>\n<li>Fix &#8211; Fix a <code>Fatal error: Uncaught TypeError: Illegal offset type in isset or empty in …/wp-content/plugins/sitepress-multilingual-cms/classes/url-handling/converter/class-wpml-url-cached-converter.php:46</code> fatal with our WPML integration when filtering Event permalinks for Event views. [TEC-4770]</li>\n<li>Fix &#8211; Fixed an edge case to not inadvertently trash entire Events Pro recurrences. [ECP-1475]</li>\n<li>Fix &#8211; For CT1 in markers the occurrence would sometimes not be the same one found as the date field, only one was filtering by post_status. We were only using <code>provisional_id</code> for CT1, now we fallback to <code>post_id</code>. Now removing options when no occurrences are found, instead of retaining a stale value. [TEC-4768]</li>\n<li>Fix &#8211; Pass a NOOP callback function to Google Maps scripts to prevent JS warnings. [TEC-4762]</li>\n<li>Fix &#8211; Some button style hardening to prevent some common theme global style bleed, namely from Elementor global styles. [TEC-4677]</li>\n<li>Tweak &#8211; Added filter <code>tec_events_event_cleaner_trash_cron_frequency</code> to allow customizing the frequency of the trash old event cron. [ECP-1475]</li>\n<li>Tweak &#8211; Deprecated some event cleaner functionality. When 6.0 data structure is activated the <code>Permanently delete events older than</code> option is disabled, added an adjusted tooltip on the <code>Move to trash events older than</code> event setting regarding <code>EMPTY_TRASH_DAYS</code>. [TEC-4744]</li>\n<li>Tweak &#8211; Ensure the <code>Subscribe to Calendar</code> dropdown toggles on and off on click for an improved user experience. [TEC-4388]</li>\n<li>Tweak &#8211; Ensure we have the ability to hide the Event Tickets Activation notice using the <code>defined( \'TRIBE_HIDE_UPSELL\' )</code> constant. [TEC-4767]</li>\n<li>Tweak &#8211; Updates to <code>tribe_events_delete_old_events_sql_args</code> and <code>tribe_events_delete_old_events_sql</code> filters to support Events Pro recurrence cleanup. [ECP-1475]</li>\n<li>Tweak &#8211; Added filters: <code>tribe_events_known_range_stati</code>, <code>tec_events_custom_tables_v1_events_only_modifier_before_get_posts</code>, <code>tec_events_event_cleaner_trash_cron_frequency</code>, <code>tec_events_linked_posts_my_posts_post_status</code>, <code>tec_events_linked_posts_all_posts_post_status</code>, <code>tribe_events_add_canonical_tag</code></li>\n<li>Tweak &#8211; Added actions: <code>tec_events_custom_tables_v1_fully_activated</code></li>\n<li>Tweak &#8211; Changed views: <code>blocks/event-tags</code>, <code>blocks/parts/details</code>, <code>v2/list/event/venue</code></li>\n<li>Language &#8211; 1 new strings added, 32 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[6.0.12] 2023-04-10</h4>\n<ul>\n<li>Fix &#8211; Avoid JS error when using the first compact date display format together with WPML. [TEC-4360]</li>\n<li>Fix &#8211; Build secondary Views navigation links correctly when WPML is active. [TEC-4689]</li>\n<li>Fix &#8211; Build the link to the Events page from the Permalinks settings page correctly. [TEC-4689]</li>\n<li>Fix &#8211; Correctly handle the creation or update of Custom Tables v1 in multisite context. (thanks @jiadil). [BTRIA-1734]</li>\n<li>Fix &#8211; Ensure the link to the Event Tags Archive page is correct when using the Block Editor. [TEC-4716]</li>\n<li>Fix &#8211; Ensure the venue country is displayed in the list view when venues are created through the block editor interface. [TEC-4731]</li>\n<li>Fix &#8211; Fix issue with events post type bleeding in on custom tag queries, instead of only on tag archive page. [TEC-4694]</li>\n<li>Fix &#8211; Fixed a situation where an invalid request header in our pagination would cause some strict security settings to block these AJAX requests. [TEC-4723]</li>\n<li>Fix &#8211; Fixes an edge case where running get_posts() twice with a taxonomy query, would result in an extra where statement added limiting results in an unexpected way. [TEC-4695]</li>\n<li>Fix &#8211; Fixes situation in block editor where a default organizer would not persist after being saved. [ECP-1061]</li>\n<li>Fix &#8211; Make improvements to the canonical tags added to event views to improve compatibility with SEO plugins. [TEC-4693]</li>\n<li>Fix &#8211; Resolve the issue of the WP customizer not loading correctly when the Colbri Page Builder plugin is active. [TEC-4735]</li>\n<li>Fix &#8211; Updates the Monolog repository to use TEC namespacing via Strauss, to provide more compatibility with other plugins. [TEC-4730]</li>\n<li>Tweak &#8211; Added filter: <code>tec_events_custom_tables_v1_events_only_modifier_before_get_posts</code> in our 6.0 query modifier, useful to make changes to the query prior to fetching posts for the selected events. [TEC-4695]</li>\n<li>Tweak &#8211; Added Filters: <code>tec_events_linked_posts_my_posts_post_status</code>, <code>tec_events_linked_posts_all_posts_post_status</code> to allow filtering of post status of Linked Posts. [CE-27]</li>\n<li>Tweak &#8211; Ensure we only have a single  element in the single events page for improved accessibility. [TEC-3415]</li>\n<li>Tweak &#8211; Fire the <code>tec_events_custom_tables_v1_fully_activated</code> when the Custom Tables v1 implementation is fully loaded. [ET-1495]</li>\n<li>Tweak &#8211; Replace the use of <code>FILTER_SANITIZE_STRING</code> in favour of <code>tec_sanitize_string</code> to improve PHP 8.1 compatibility. [TEC-4666]</li>\n<li>Tweak &#8211; Added filters: <code>tec_events_custom_tables_v1_events_only_modifier_before_get_posts</code>, <code>tec_events_linked_posts_my_posts_post_status</code>, <code>tec_events_linked_posts_all_posts_post_status</code>, <code>tribe_events_add_canonical_tag</code></li>\n<li>Tweak &#8211; Added actions: <code>tec_events_custom_tables_v1_fully_activated</code></li>\n<li>Tweak &#8211; Changed views: <code>blocks/event-tags</code>, <code>blocks/parts/details</code>, <code>v2/list/event/venue</code></li>\n<li>Language &#8211; 0 new strings added, 82 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[6.0.11] 2023-03-20</h4>\n<ul>\n<li>Fix &#8211; Add a default Schema eventStatus value for JSON LD output of events. [TEC-4609]</li>\n<li>Fix &#8211; Avoid fatal error in <code>tribe_events_event_classes</code> when called on events that aren&#8217;t assigned to any category. [TEC-4709]</li>\n<li>Fix &#8211; Avoid PHP errors originating from a missing HTML template when the migration to Custom Tables v1 is not required. [ECP-1472]</li>\n<li>Fix &#8211; Correctly display Recurring Event Venue and Organizer details on the front-end and back-end when using WPML. [ECP-1442, ECP-1455]</li>\n<li>Fix &#8211; Display Venue correctly in List-like views when using WPML. [ECP-1443]</li>\n<li>Fix &#8211; Ensure the date tags for recurring events are displayed correctly in the <code>Events List</code> widget. [ECP-1382]</li>\n<li>Fix &#8211; Ensure the Subscribe to Calendar Dropdown opens and closes consistently across all themes. [TEC-4388]</li>\n<li>Fix &#8211; Failures while saving Events from Blocks Editor while using WPML. [ECP-1429]</li>\n<li>Fix &#8211; Fix an issue that stopped the default venue values from populating when submitting a Community Event. [CE-178]</li>\n<li>Fix &#8211; Fix the pagination styling on the Aggregator import preview data table. [TEC-4698]</li>\n<li>Fix &#8211; Link to the correct Occurrence when using CT1 and WPML. [TEC-4632]</li>\n<li>Fix &#8211; Prevent event save processing from being interrupted in cases of partial WPML activation where a language code is missing. [ECP-1442]</li>\n<li>Fix &#8211; Prevent fatal on PHP 8+ during generation of the activation report when issues exist.</li>\n<li>Fix &#8211; Prevent fatal on PHP 8+ for <code>tribe_get_event_cat_slugs</code> with bad typing around <code>array_filter</code> [TEC-4725]</li>\n<li>Fix &#8211; Prevent PHP 8.0+ fatal around iCal exporting with param not being array [TEC-4726]</li>\n<li>Tweak &#8211; Add empty alt tag to featured images across all views when a user doesn&#8217;t explicitly define one to improve SEO. [ECP-1454]</li>\n<li>Tweak &#8211; Ensure all instances of the <code>tribe_get_events_title</code> filter have matching signatures. [TEC-3929]</li>\n<li>Tweak &#8211; Modified single-event.php to use <code>tribe_get_formatted_cost</code> instead of <code>tribe_get_cost</code> to display the event cost. [TEC-4699]</li>\n<li>Tweak &#8211; Update the datepicker label on list-style views to <code>Upcoming</code> when no events are found. [TEC-3960]</li>\n<li>Tweak &#8211; Removed actions: <code>tribe_log</code></li>\n<li>Tweak &#8211; Changed views: <code>single-event</code>, <code>v2/day/event/featured-image</code>, <code>v2/latest-past/event/featured-image</code>, <code>v2/list/event/featured-image</code>, <code>v2/month/calendar-body/day/calendar-events/calendar-event/featured-image</code>, <code>v2/month/calendar-body/day/calendar-events/calendar-event/tooltip/featured-image</code>, <code>v2/month/mobile-events/mobile-day/mobile-event/featured-image</code>, <code>v2/widgets/widget-events-list/event/date-tag</code></li>\n<li>Language &#8211; 0 new strings added, 24 updated, 2 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[6.0.10] 2023-02-22</h4>\n<ul>\n<li>Version &#8211; The Events Calendar 6.0.10 is only compatible with Events Calendar PRO 6.0.9 and higher</li>\n<li>Tweak &#8211; PHP version compatibility bumped to PHP 7.4</li>\n<li>Tweak &#8211; Version Composer updated to 2</li>\n<li>Tweak &#8211; Version Node updated to 18.13.0</li>\n<li>Tweak &#8211; Version NPM update to 8.19.3</li>\n<li>Tweak &#8211; Reduce JavaScript bundle sizes for Blocks editor</li>\n</ul>\n<h4>[6.0.9] 2023-02-09</h4>\n<ul>\n<li>Feature: Add a notice with install functionality for Event Tickets. [TEC-4663]</li>\n<li>Fix &#8211; Added safeguard against the <code>rewrite_rules_array</code> filter being passed non-array values, more error checking in WPML integration. [TEC-4679]</li>\n<li>Fix &#8211; Updating some button styles to be more compatible with global button styles, such as Elementor global styling. [TEC-4653]</li>\n<li>Fix &#8211; Ensure custom tables data is correctly updated when duplicating an Event using WPML. [TEC-4651]</li>\n<li>Fix &#8211; Ensure the zoom level set under <code>Events → Settings → Display → Google Maps default zoom level</code> is applied to the single events page. [TEC-4634]</li>\n<li>Fix &#8211; Ensure the code will work correctly when the Events&#8217; category taxonomy is unregistered. [TEC-4664]</li>\n<li>Fix &#8211; Change the type of the date-related custom tables date fields to VARCHAR to avoid warnings on stricter SQL modes. [TEC-4536]</li>\n<li>Fix &#8211; Add logic to our template tags to handle non-string returns from <code>get_the_terms_list()</code> [TEC-4664]</li>\n<li>Tweak &#8211; Add support for opt-in direct deletion of EA older records using the <code>tec_event_aggregator_direct_record_deletion</code> filter or setting the <code>TEC_EVENT_AGGREGATOR_RECORDS_PURGE_DIRECT_DELETION</code> constant. [EA-446]</li>\n<li>Tweak &#8211; Ensure all Google Map iframes have a title attribute to improve accessibility. [TEC-4243]</li>\n<li>Tweak &#8211; Allow filtering the redirected nature of a Views v2 request using the <code>tec_events_views_v2_redirected</code> filter. [TEC-4511]</li>\n<li>Tweak &#8211; Added filters: <code>tec_event_aggregator_direct_record_deletion</code>, <code>tec_event_aggregator_direct_record_deletion_batch_size</code>, <code>tec_events_views_v2_redirected</code></li>\n<li>Tweak &#8211; Changed views: <code>modules/map-basic</code></li>\n<li>Language &#8211; 6 new strings added, 125 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[6.0.8] 2023-01-26</h4>\n<ul>\n<li>Fix &#8211; Modifications to custom tables registration to ensure all sites get the new 6.0 table schema, preventing 404 and other related issues. [TEC-4631]</li>\n<li>Fix &#8211; Prevent Yoast SEO 19.2 notice due to integration with The Events Calendar [TEC-4662]</li>\n<li>Feature &#8211; Add Event Automator to Add-ons page. [TEC-4660]</li>\n<li>Language &#8211; 5 new strings added, 171 updated, 1 fuzzied, and 8 obsoleted.</li>\n</ul>\n<h4>[6.0.7.1] 2023-01-19</h4>\n<ul>\n<li>Fix &#8211; Prevent fatal when using The Events Calendar with Event Tickets due to Common library not being updated.</li>\n</ul>\n<h4>[6.0.7] 2023-01-18</h4>\n<ul>\n<li>Version &#8211; The Events Calendar 6.0.7 is only compatible with Events Calendar PRO 6.0.6 and higher</li>\n<li>Fix &#8211; Event repository filters, when passing UTC dates on non-UTC event date fields, when using <code>Condense Event Series</code> showing tomorrow&#8217;s event instead of today&#8217;s. [ECP-1423]</li>\n<li>Fix &#8211; Resolve problem with relative dates on REST endpoint for event creation. Dates would potentially cross timezones that would push to an incorrect day due to using the wrong timezone.</li>\n<li>Fix &#8211; Prevent Update page from display on minor updates, only for major updates and feature updates. [TEC-4589]</li>\n<li>Fix &#8211; Compatibility with Redis Object Cache plugin that would cause Events not be editable in the Blocks Editor. [TEC-4613]</li>\n<li>Fix &#8211; Avoid user locale overriding the site locale during rewrite rules generation. [TEC-3733]</li>\n<li>Fix &#8211; Correct logic for tribe_is_view functions to account for default view. [TEC-4586]</li>\n<li>Fix &#8211; Avoid the issue of events which have venues assigned not being able to be updated successfully on some browsers. [TEC-4596]</li>\n<li>Fix &#8211; Handle the case where rewrite rules map to arrays avoiding fatal errors. [TEC-4567]</li>\n<li>Fix &#8211; Prevent primary cause of MySQL <code>Deadlock</code> errors in 6.0 event migration and added <code>Deadlock</code> error catching in our lock/fetch event queue. [TEC-4548]</li>\n<li>Fix &#8211; Avoid running slow query for adjacent events when possible. [TEC-4633]</li>\n<li>Fix &#8211; Ensure we did not get an error object back when requesting event category. [TEC-4619]</li>\n<li>Fix &#8211; Fix the issue of an invalid property error notice being thrown while visiting the Attendee Registration page as an admin. [TEC-4608]</li>\n<li>Fix &#8211; Resolve compatibility issue between Yoast SEO and FacetWP. [TEC-4628]</li>\n<li>Fix &#8211; Resolve the issue where <code>tribe_is_upcoming()</code> and other conditionals were not working as expected. [TEC-4301]</li>\n<li>Tweak &#8211; Convert all uses of (view)-&gt;get_slug() to (view)::get_view_slug(). [TEC-4586]</li>\n<li>Tweak &#8211; Change some labelling of event settings in the admin. [TEC-4626]</li>\n<li>Tweak &#8211; Reorganize a few Event settings in the admin. [TEC-4627]</li>\n<li>Tweak &#8211; Add canonical tag to the head of all calendar views to prevent Google and other search engines from indexing URLs with custom URL parameters. [TEC-4538]</li>\n<li>Tweak &#8211; Added filters: <code>tribe_events_views_v2_{$view_slug}_view_html_classes</code>, <code>tribe_events_views_v2_view_{$view_slug}_template_vars</code>, <code>tribe_events_views_v2_view_{$view_slug}_url</code>, <code>tribe_events_views_v2_view_{$view_slug}_prev_url</code>, <code>tribe_events_views_v2_view_{$view_slug}_next_url</code>, <code>tribe_events_views_v2_view_{$view_slug}_link_label_format</code>, <code>tribe_events_views_v2_view_{$view_slug}_title</code>, <code>tribe_events_views_v2_view_{$view_slug}_messages</code>, <code>tribe_events_views_v2_view_{$view_slug}_breadcrumbs</code>, <code>tribe_events_views_v2_view_{$view_slug}_display_events_bar</code>, <code>tribe_events_views_v2_view_{$view_slug}_show_datepicker_submit</code>, <code>tribe_events_views_v2_view_{$view_slug}_public_views</code>, <code>tribe_events_views_v2_{$view_slug}_view_container_data</code>, <code>tribe_events_views_v2_{$view_slug}_show_latest_past_events_view</code>, <code>tribe_events_views_v2_{$view_slug}_events_per_day</code>, <code>tribe_events_views_v2_view_{$view_slug}_breakpoint_pointer</code>, <code>tribe_events_views_v2_view_{$view_slug}_breakpoints</code>, <code>tribe_events_views_v2_view_{$view_slug}_cached_html</code>, <code>tribe_events_views_v2_{$view_slug}_widget_repository_args</code>, <code>tribe_events_views_v2_{$view_slug}_widget_compatibility_classes</code>, <code>tribe_events_views_v2_{$view_slug}_widget_html_classes</code>, <code>tec_events_view_{$view_slug}_today_button_label</code>, <code>tec_is_view</code>, <code>tec_is_{$view_slug}_view</code></li>\n<li>Tweak &#8211; Removed filters: <code>tribe_events_views_v2_{$this-&gt;get_slug()}_view_html_classes</code>, <code>tribe_events_views_v2_view_{$this-&gt;slug}_template_vars</code>, <code>tribe_events_views_v2_view_{$this-&gt;slug}_url</code>, <code>tribe_events_views_v2_view_{$this-&gt;slug}_prev_url</code>, <code>tribe_events_views_v2_view_{$this-&gt;slug}_next_url</code>, <code>tribe_events_views_v2_view_{$this-&gt;slug}_link_label_format</code>, <code>tribe_events_views_v2_view_{$slug}_title</code>, <code>tribe_events_views_v2_view_{$slug}_messages</code>, <code>tribe_events_views_v2_view_{$this-&gt;slug}_breadcrumbs</code>, <code>tribe_events_views_v2_view_{$this-&gt;slug}_display_events_bar</code>, <code>tribe_events_views_v2_view_{$this-&gt;slug}_show_datepicker_submit</code>, <code>tribe_events_views_v2_view_{$this-&gt;slug}_public_views</code>, <code>tribe_events_views_v2_{$this-&gt;get_slug()}_view_container_data</code>, <code>tribe_events_views_v2_{$this-&gt;get_slug()}_show_latest_past_events_view</code>, <code>tec_events_views_v2_{$this-&gt;slug}_view_global_repository_args</code>, <code>tribe_events_views_v2_{$this-&gt;slug}_events_per_day</code>, <code>tribe_events_views_v2_view_{$this-&gt;slug}_breakpoint_pointer</code>, <code>tribe_events_views_v2_view_{$this-&gt;slug}_breakpoints</code>, <code>tribe_events_views_v2_view_{$this-&gt;slug}_cached_html</code>, <code>tribe_events_views_v2_{$this-&gt;get_slug()}_widget_repository_args</code>, <code>tribe_events_views_v2_{$this-&gt;get_slug()}_widget_compatibility_classes</code>, <code>tribe_events_views_v2_{$this-&gt;get_slug()}_widget_html_classes</code>, <code>tec_events_view_{$view_slug}_today_button_title</code></li>\n</ul>\n<h4>[6.0.6.2] 2022-12-16</h4>\n<ul>\n<li>Fix &#8211; Fix layout issues with Avada, Divi, and similar themes. [TEC-4623]</li>\n</ul>\n<h4>[6.0.6.1] 2022-12-14</h4>\n<ul>\n<li>Fix &#8211; Avoid fatal error in the <code>tribe_is_events_front_page</code> when called before global query object is initialized. [BTRIA-1556]</li>\n</ul>\n<h4>[6.0.6] 2022-12-14</h4>\n<ul>\n<li>Fix &#8211; Resolved a migration state problem in the view not being handled properly when preview is unsupported and a migration error happens simultaneously. [TEC-4482]</li>\n<li>Fix &#8211; Prevent a couple scenarios that would cause 404 pages on events. This addresses both an error from UTC offset validation failures and an issue where table renaming improperly created foreign keys that pointed to an invalid constraint target. [TEC-4578]</li>\n<li>Fix &#8211; Avoid query filtering issues where the Event post type would be incorrectly added to queries. [TEC-4588]</li>\n<li>Fix &#8211; Incorrect results when including Events in the main blog loop. [TEC-4474]</li>\n<li>Fix &#8211; Avoid errors when third-party plugins reference or use the <code>Tribe__Events__Query::pre_get_posts</code> method. [TEC-4540]</li>\n<li>Fix &#8211; Prevent Serializable interface deprecated error in PHP 8.1 when migrating events. [ECP-1319]</li>\n<li>Fix &#8211; Ensure the <code>Previous Events</code> button when using the <code>Event View</code> Elementor widget navigates correctly to the previous page. [FBAR-273]</li>\n<li>Fix &#8211; Ensure that when we hit a single-event ical endpoint we get a the correct single event. [TEC-4469]</li>\n<li>Fix &#8211; Avoid PHP fatal error on PHP 8.0+ in some settings&#8217; pages when setting the front page to the Main Events Page. [BTRIA-1545]</li>\n<li>Tweak &#8211; Add aria label to Google Maps iFrame embed to improve accessibility. [TEC-4404]</li>\n<li>Tweak &#8211; Prevent unbound query for previous URL on list based views, improving performance.</li>\n<li>Tweak &#8211; Additional views setup no longer run extra Database Query unnecessarily, improving performance.</li>\n<li>Tweak &#8211; Improve performance on the Settings page when dealing with a big dataset of events.</li>\n<li>Tweak &#8211; Improve performance on the <code>tribe_events()</code> and on the Event Views by removing an unnecessary JOIN for hiding of specific upcoming events.</li>\n<li>Tweak &#8211; Changed views: <code>modules/map-basic</code></li>\n<li>Language &#8211; 1 new strings added, 17 updated, 0 fuzzied, and 0 obsoleted</li>\n</ul>\n<h4>[6.0.5] 2022-11-29</h4>\n<ul>\n<li>Fix &#8211; Fix for scenarios where fatal <code>Call to a member function get() on null in... the-events-calendar/src/Tribe/Query.php(46)</code> would occur when <code>$wp_query</code> global was not set. [TEC-4566]</li>\n<li>Fix &#8211; Add correct text domains to the Organizer block. [TEC-4466]</li>\n<li>Fix &#8211; Fix for stuck migrations when duplicate meta exists. [TEC-4547]</li>\n<li>Tweak &#8211; Added ability to filter v2 repository args on all View queries. [ECP-1372]</li>\n<li>Tweak &#8211; Reorganize the General and Display settings tab content. [TCMN-149]</li>\n<li>Tweak &#8211; New headers for the General and Display settings tabs. [TEC-4573]</li>\n<li>Tweak &#8211; Add view upsells for ECP on the settings display tab. [TEC-4572]</li>\n<li>Tweak &#8211; Add settings info boxes. [TEC-4574]</li>\n<li>Fix &#8211; Avoid issues when trying to import some .ics format files with Event Aggregator. [EA-461]</li>\n<li>Deprecation &#8211; <code>Tribe__Events__Editor__Compatibility::$blocks_editor_hidden_field_key</code>.</li>\n<li>Deprecation &#8211; <code>Tribe__Events__Main::do_addons_api_settings_tab()</code>, <code>Tribe__Events__Main::show_upgrade()</code>,<br />\n                Tribe__Events__Main::do_upgrade_tab(), <code>Tribe__Events__Main::general_settings_tab_fields()</code>,<br />\n                Tribe__Events__Main::display_settings_tab_fields(), <code>Tribe__Events__Main::tribe_settings_url()</code>.</li>\n<li>Tweak &#8211; Added filters: <code>tec_events_custom_tables_v1_query_modifier_applies_to_query</code>, <code>tec_events_display_settings_tab_fields</code>, <code>tribe_general_settings_tab_fields</code></li>\n<li>Language &#8211; 118 new strings added, 287 updated, 10 fuzzied, and 88 obsoleted.</li>\n</ul>\n<h4>[6.0.4] 2022-11-15</h4>\n<ul>\n<li>Version &#8211; The Events Calendar 6.0.4 is only compatible with Events Calendar PRO 6.0.3 and higher</li>\n<li>Feature &#8211; Include Yoast WordPress SEO OpenGraph integration. [TEC-4558][TEC-4561]</li>\n<li>Fix &#8211; Fix for fatal when adding Featured Venue Events widget on Appearance -&gt; Widgets screen. [ECP-1411]</li>\n<li>Fix &#8211; Fix for fatal error on Series page in PHP 7.3. [TEC-4549]</li>\n<li>Fix &#8211; Prevent error around Free regular expression for JSON-LD on updated views. Props @jonkastonka @saleck @randon [TEC-4570]</li>\n<li>Fix &#8211; Avoid fatal error when using PHP version 8.0 or above and the HyperDB plugin. [ECP-1360]</li>\n<li>Fix &#8211; Ensure view labels are translated appropriately. [TEC-4485]</li>\n<li>Fix &#8211; Errors and warnings in WP.com installations due to empty query results. [TEC-4543]</li>\n<li>Fix &#8211; Translation of Event Occurrences URL when using WPML and the Custom Tables V1 implementation. [ECP-1373]</li>\n<li>Fix &#8211; More robust type checking in Builder methods. [ECP-1402]</li>\n<li>Fix &#8211; Avoid <code>orderby</code> related database error in Custom Tables V1 context. [TEC-4555]</li>\n<li>Fix &#8211; Prevent error when updating Venue in sites using object cache. [TEC-4348]</li>\n<li>Fix &#8211; Prevent date format error when trying to subscribe to calendar in sites using object cache. [TEC-4459]</li>\n<li>Tweak &#8211; Clean up the Event Website block to make it more intuitive for users. [TEC-4352]</li>\n<li>Tweak &#8211; Update the venue website field to type URL. [TEC-4349]</li>\n<li>Tweak &#8211; Do not add date-based ordering to queries when using <code>none</code> or <code>rand</code> order. [TEC-4555]</li>\n<li>Tweak &#8211; Added filters: <code>tec_events_integrations_should_load</code>, <code>tec_events_integrations_{$type}_should_load</code>, <code>tec_events_integrations_{$type}_{$slug}_should_load</code>, <code>tec_events_integrations_{$integration_type}_{$integration_slug}_events_schema_is_needed</code>, <code>tec_events_integrations_{$integration_type}_{$integration_slug}_json_ld_{$type}_data</code>, <code>tec_events_views_v2_view_label</code>, <code>tec_events_views_v2_{$slug}_view_label</code></li>\n<li>Tweak &#8211; Removed filters: <code>tribe_events_views</code>, <code>tribe_events_views_v2_manager_view_label_domain</code>, <code>tribe_events_views_v2_manager_{$slug}_view_label_domain</code>, <code>tribe_events_views_v2_manager_view_label</code>, <code>tribe_events_views_v2_manager_{$slug}_view_label</code></li>\n<li>Language &#8211; 3 new strings added, 144 updated, 0 fuzzied, and 0 obsoleted.</li>\n</ul>\n<h4>[6.0.3.1] 2022-11-03</h4>\n<ul>\n<li>Fix &#8211; Correct issues where early queries can interfere with View template redirects. [TEC-4554]</li>\n<li>Fix &#8211; Serialization and unserialization issues related to caching of post models. [TEC-4379]</li>\n<li>Fix &#8211; Prevent default WordPress occurrence query caching because we cache it ourselves. [TEC-4379]</li>\n<li>Tweak &#8211; Add the <code>tribe_get_venue_object_after</code> and <code>tribe_get_organizer_object_after</code> filters. [TEC-4379]</li>\n</ul>\n<h4>[6.0.3] 2022-10-31</h4>\n<ul>\n<li>Fix &#8211; Handle repository query filters correctly in custom tables context; fix a REST API issue. [ET-1567]</li>\n</ul>\n<h4>[6.0.2] 2022-10-20</h4>\n<ul>\n<li>Feature &#8211; Add initial integration with Restrict Content Pro. This hides any events on the calendar views that the user is not allowed to view. [ [TEC-4457]]</li>\n<li>Feature &#8211; Support the <code>strict_dates</code> REST API argument in the <code>/events</code> endpoint to control the inclusiveness of the date parameters. [TEC-4493]</li>\n<li>Feature &#8211; Support relative date parameters (e.g: <code>starts_before</code>, <code>ends_after</code> as REST API arguments in the <code>/events</code> endpoint to retrieve single day and multi-day events in a single search. [TEC-4493]</li>\n<li>Fix &#8211; Prevent problems with WordPress.com Memcache turning Event Single Pages into 404s after the first visit [TEC-4488]</li>\n<li>Fix &#8211; Add new function to properly escape event titles in URLs so they are better handled by rewrite rules. Props to @shisho585 for the fix! [TEC-4518]</li>\n<li>Fix &#8211; Avoid resetting post data in some Dive theme and plugins. [TEC-4510]</li>\n<li>Fix &#8211; Correct a few misnamed custom prop references. [TEC-4445]</li>\n<li>Fix &#8211; Correct an issue with event venue when saving in our WPML integration. Props to @dgwatkins for the fix! [TEC-4498]</li>\n<li>Fix &#8211; Correctly deprecate the <code>Tribe__Events__Main::get_closest_event</code> method. [ECP-1326]</li>\n<li>Fix &#8211; Correctly set <code>found_posts</code> and <code>max_num_pages</code> when redirecting a query to the custom tables. [TEC-4508]</li>\n<li>Fix &#8211; Do not run wasteful queries on <code>switch_blog</code> in multi-site installations. [TEC-4492]</li>\n<li>Fix &#8211; Do not throw errors during migration when notices or errors come from other plugins. [ECP-1318]</li>\n<li>Fix &#8211; Ensure <code>tribe_is_month</code> and <code>tribe_is_by_date</code> work as expected. [TEC-4509]</li>\n<li>Fix &#8211; Ensure we handle if By_Day_View gets a null $event_obj-&gt;dates. Props to @juliangumenita for the fix! [TEC-4509]</li>\n<li>Fix &#8211; Remove strict type hinting from Custom Tables v1 code that would cause fatals in some environments. [ECP-1343]</li>\n<li>Fix &#8211; Resolve problems with tribe_get_full_address() which was not properly returning venue address.</li>\n<li>Fix &#8211; Restore erroneously removed Events query filters that would result in out-of-order results. [TEC-4470]</li>\n<li>Fix &#8211; Revert the code erroneous removed on legacy views removal around the &#8220;Show events with the site&#8217;s other posts&#8221; setting.</li>\n<li>Fix &#8211; Prevent a potential fatal when WP-CLI isn&#8217;t present. [TEC-4470]</li>\n<li>Tweak &#8211; Move Month View day cell class logic to a standalone function with filters. [TEC-4457]</li>\n<li>Tweak &#8211; Add new method: <code>\\Tribe\\Events\\Views\\V2\\month_day_classes</code> [TEC-4457]</li>\n<li>Tweak &#8211; Added filter <code>tec_events_month_day_classes_comparison_date</code> to filter the date used for class determination comparisons. [TEC-4457]</li>\n<li>Tweak &#8211; Added filter <code>tec_events_month_day_classes</code> to filter the actual class list before it gets passed to the template. [TEC-4457]</li>\n<li>Tweak &#8211; Update the organizer website field to type URL. [TEC-4395]</li>\n<li>Tweak &#8211; Add an event property for if the event is currently happening. [TEC-4454]</li>\n<li>Tweak &#8211; Create a filterable function <code>tec_events_get_today_button_label()</code> for the text on the &#8220;Today&#8221; button on calendar views. [TEC-4458]</li>\n<li>Tweak &#8211; Add a filter for the link title and aria-label so they match the button text more closely. [TEC-4458]</li>\n<li>Tweak &#8211; Added filters: <code>tec_events_today_button_label</code> and <code>tec_events_view_{view_slug}_today_button_label</code> to filter the output of the <code>tec_events_get_today_button_label</code> function<br />\n                         tec_events_today_button_title and <code>tec_events_{view_slug}_view_today_button_title</code> to filter the link title and aria-label. [TEC-4458]</li>\n<li>Tweak &#8211; Speed up the Custom Tables v1 migration process if a browser window is open on the migration UI. [TEC-4517]</li>\n<li>Language &#8211; 11 new strings added, 149 updated, 2 fuzzied, and 2 obsoleted.</li>\n</ul>\n<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> [TEC-4376]</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.png?rev=2755131\"><img src=\"https://ps.w.org/the-events-calendar/assets/screenshot-5.png?rev=2755131\" alt=\"Event Editor\"></a><p>Event Editor</p></li><li><a href=\"https://ps.w.org/the-events-calendar/assets/screenshot-6.png?rev=2755131\"><img src=\"https://ps.w.org/the-events-calendar/assets/screenshot-6.png?rev=2755131\" alt=\"Events admin listing\"></a><p>Events admin listing</p></li><li><a href=\"https://ps.w.org/the-events-calendar/assets/screenshot-7.png?rev=2755131\"><img src=\"https://ps.w.org/the-events-calendar/assets/screenshot-7.png?rev=2755131\" alt=\"General Settings\"></a><p>General Settings</p></li><li><a href=\"https://ps.w.org/the-events-calendar/assets/screenshot-8.png?rev=2755131\"><img src=\"https://ps.w.org/the-events-calendar/assets/screenshot-8.png?rev=2755131\" 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:17564:\"<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Absolutely stellar 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/reginapilip/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/e4a8f88265fad2c559de32d3732aee39?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/e4a8f88265fad2c559de32d3732aee39?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/reginapilip/\" class=\"reviewer-name\">reginapilip</a> on <span class=\"review-date\">August 17, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p class=\"\">Not only is this plugin great, but their support team is absolutely amazing!  </p>\n<!-- /wp:paragraph --></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\">Support technique efficace</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/romolivier/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/87769e2512b955bfc9b7f6e7085cfe6e?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/87769e2512b955bfc9b7f6e7085cfe6e?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/romolivier/\" class=\"reviewer-name\">Rom.olivier</a> on <span class=\"review-date\">August 15, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p class=\"\">Bon plugin. L\'équipe technique a su résoudre mon problème rapidement.</p>\n<!-- /wp:paragraph --></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/dee987/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/35ff9b416acbc8dbf20940283962c5f3?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/35ff9b416acbc8dbf20940283962c5f3?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/dee987/\" class=\"reviewer-name\">dee987</a> on <span class=\"review-date\">August 15, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p class=\"\">The event plugin works really well offering a lot of customization, and their support is always helpful.  </p>\n<!-- /wp:paragraph --></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\">thanks for helping</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/rinovan/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/f5513276976bfeb4c12f06f4ab2617ee?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/f5513276976bfeb4c12f06f4ab2617ee?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/rinovan/\" class=\"reviewer-name\">rinovan</a> on <span class=\"review-date\">August 15, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p class=\"\">Fine helped to be able to adjust the data of the calender an to our (different) usage. Thanks!!!!!!!!!!!!!!!</p>\n<!-- /wp:paragraph --></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 friendly and competent 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/bettypaletti/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/08da67af8d9b6dfc81f7399af9af2692?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/08da67af8d9b6dfc81f7399af9af2692?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/bettypaletti/\" class=\"reviewer-name\">Glamo <small>(bettypaletti)</small></a> on <span class=\"review-date\">August 13, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p class=\"\">At the end support was very helpful and solved a persistent issue with CSS. The issues we had on our website came from colliding CSS code of our theme. So whenever there are layout problems with the calendar, you should check CSS. The support team finally provided some code snippet, which did the job and everything looks great now. Thanks!</p>\n<!-- /wp:paragraph --></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 WordPress Calendar 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/robertstaddon/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/24114740aa3d6d029c919532012a244c?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/24114740aa3d6d029c919532012a244c?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/robertstaddon/\" class=\"reviewer-name\">robertstaddon</a> on <span class=\"review-date\">August 11, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p class=\"\">I have been working with WordPress for over a decade and, from my experience, I would recommend this as currently the best calendar plugin for WordPress. The feature set is superb and there is a nice ecosystem of supporting plugins that has grown up around it. The paid options provide valuable extras for business sites and the support team has proved to be competent and knowledgeable with high coding standards and a focus on speed, security, and compatibility. This isn\'t to say that there have not been bumps along the road and issues with major upgrades in the past. However, I feel that the team has weathered the storms and brought the platform to a place now where it stands above the competition in just about every area of functionality. I would recommend this plugin for any WordPress website needing event functionality.</p>\n<!-- /wp:paragraph --></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\">Byers beware this is a scam. It will break your site.</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/chapelger/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/71776520158ac79d8498d33f3ebb4598?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/71776520158ac79d8498d33f3ebb4598?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/chapelger/\" class=\"reviewer-name\">chapelger</a> on <span class=\"review-date\">August 11, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p class=\"\">So I downloaded the free version because it is recommended by WordPress plug-ins as soon as I installed it and activated it set it all up didn’t SCO test my page speed went down drastically and now I have 200+ SCO errors I reached out to support with no response because it’s a free version. You have to go through the forms no response no help , and then I get the runaround when I try to contact the support by another means which is only for paid, but why would you pay for something that is broken and they’re unwilling to try to help especially explain if you’re not getting help the normal where they want you. This is a scam . They can’t help the free version before you pay to make sure I think it’s working if you put so much time and building a site and then you add the plug-in and breaks your site stay away it’s a headache, scam friad! </p>\n<!-- /wp:paragraph --></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\">Crap 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/jjohnson46/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/0782e22e534debfb4a0e05257e3aa79b?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/0782e22e534debfb4a0e05257e3aa79b?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/jjohnson46/\" class=\"reviewer-name\">jjohnson46</a> on <span class=\"review-date\">August 10, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p class=\"\">I installed the free version to see how it worked prior to buying the pro version. Guess what? i started having problems. I now keep getting the message: <strong>Connection lost.</strong> Saving has been disabled until you are reconnected. This post is being backed up in your browser, just in case.<br /><br />No silly me I tried to contact them to get some help. I find, just like every other company that hides behind anynonimity, they cannot be reached at all unless you purchase one of the pro versions. I say, I just can;s seem to trust a company that cares so little about customers or potential customers that they refuse to talk to them. <br /><br />Now I have to leave this comment knowing It till never avail anything. Some world we now live in. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p class=\"\"></p>\n<!-- /wp:paragraph --></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\">Breaks Permalinks</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/mudfarm/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/dd49059428b7c3b695c1747f37596b9d?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/dd49059428b7c3b695c1747f37596b9d?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/mudfarm/\" class=\"reviewer-name\">mudfarm</a> on <span class=\"review-date\">August 10, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p class=\"\">Long-time user of the plugin but had to uninstall. It was breaking permalinks randomly which resulted in 404 errors across the site.</p>\n<!-- /wp:paragraph --></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\">Constant Issues but Very Nice Looking</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/titosmeow/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/921785fa5a3adb74e02b6bfc655452d2?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/921785fa5a3adb74e02b6bfc655452d2?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/titosmeow/\" class=\"reviewer-name\">titosmeow</a> on <span class=\"review-date\">August 7, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p class=\"\">Love this plugin and how it looks and works; but we have had nothing but constant problems with it. :(</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p class=\"\">None of these seem to happen at the same time, and some of them seem to come and go with no specific fix being done.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p class=\"\">-Buttons (next events, previous events, month, day) decide not to work.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p class=\"\">-Says there are no events even when there are.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p class=\"\">-Doesn\'t allow people to click on the event and have it open.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p class=\"\">-Says the event doesn\'t exist.  (Sorry that page doesn\'t exist)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p class=\"\">-Critical error on main events page.</p>\n<!-- /wp:paragraph --></div>\n</div>\n\";}s:13:\"download_link\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.2.0.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.png?rev=2755131\";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.png?rev=2755131\";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.png?rev=2755131\";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.png?rev=2755131\";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:300:{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:8:\"5.16.4.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.16.4.1.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:6:\"6.0.10\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.0.10.zip\";s:6:\"6.0.11\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.0.11.zip\";s:6:\"6.0.12\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.0.12.zip\";s:6:\"6.0.13\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.0.13.zip\";s:8:\"6.0.13.1\";s:71:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.0.13.1.zip\";s:5:\"6.0.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.0.2.zip\";s:5:\"6.0.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.0.3.zip\";s:7:\"6.0.3.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.0.3.1.zip\";s:5:\"6.0.4\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.0.4.zip\";s:5:\"6.0.5\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.0.5.zip\";s:5:\"6.0.6\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.0.6.zip\";s:7:\"6.0.6.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.0.6.1.zip\";s:7:\"6.0.6.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.0.6.2.zip\";s:5:\"6.0.7\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.0.7.zip\";s:7:\"6.0.7.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.0.7.1.zip\";s:5:\"6.0.8\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.0.8.zip\";s:5:\"6.0.9\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.0.9.zip\";s:5:\"6.1.0\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.1.0.zip\";s:7:\"6.1.0.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.1.0.1.zip\";s:7:\"6.1.0.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.1.0.2.zip\";s:5:\"6.1.1\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.1.1.zip\";s:5:\"6.1.2\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.1.2.zip\";s:7:\"6.1.2.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.1.2.1.zip\";s:7:\"6.1.2.2\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.1.2.2.zip\";s:5:\"6.1.3\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.1.3.zip\";s:5:\"6.1.4\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.1.4.zip\";s:5:\"6.2.0\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.2.0.zip\";s:7:\"6.2.0.1\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.6.2.0.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:26:{s:4:\"name\";s:9:\"Yoast SEO\";s:4:\"slug\";s:13:\"wordpress-seo\";s:7:\"version\";s:5:\"20.13\";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/67377a634e25eb10de4bb771001d01bf?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/7e0897cfeb791c3b254899d7d314b87f?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:\"6.1\";s:6:\"tested\";s:3:\"6.3\";s:12:\"requires_php\";s:5:\"7.2.5\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:96;s:7:\"ratings\";a:5:{i:5;i:25858;i:4;i:625;i:3;i:191;i:2;i:131;i:1;i:788;}s:11:\"num_ratings\";i:27593;s:15:\"support_threads\";i:353;s:24:\"support_threads_resolved\";i:322;s:15:\"active_installs\";i:5000000;s:12:\"last_updated\";s:21:\"2023-08-08 7:59am 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:12105:\"<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 an IndexNow integration to ping search engines like Microsoft Bing whenever you publish or update content.</li>\n<li><strong>New!</strong> Yoast SEO comes with wide-ranging crawl settings that help you improve how search engines crawl your site, lowering its carbon footprint.</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>New!</strong> Yoast SEO Free and Premium come with a new inclusive language analysis that helps you write inclusive content. This feature is opt-in 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</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/\" rel=\"ugc\">WordPress block editor</a> (or ‘Gutenberg’ editor).</li>\n<li>The official <a href=\"https://wordpress.org/plugins/amp/\" rel=\"ugc\">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/\" rel=\"ugc\">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/\" rel=\"ugc\">Advanced Custom Fields</a> plugin, when you also activate the <a href=\"https://wordpress.org/plugins/acf-content-analysis-for-yoast-seo/\" rel=\"ugc\">ACF Content Analysis for Yoast SEO</a> plugin.</li>\n<li>The <a href=\"https://wordpress.org/plugins/elementor/\" rel=\"ugc\">Elementor</a> website builder.</li>\n<li><a href=\"https://wordpress.org/plugins/wp-search-with-algolia/\" rel=\"ugc\">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:6119:\"\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/\" rel=\"ugc\">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:2197:\"<h4>20.13</h4>\n<p>Release date: 2023-08-08</p>\n<p>Please welcome Yoast SEO 20.13! We&#8217;ve focused on enhancing compatibility and performance, making your SEO efforts smoother and more effective. We&#8217;ve also improved compatibility with WordPress 6.3. Find out more about what&#8217;s new in Yoast SEO 20.13 in <a href=\"https://yoa.st/release-8-8-23\" rel=\"nofollow ugc\">our release post</a>!</p>\n<h4>Enhancements</h4>\n<ul>\n<li>Ensures that the Google, Facebook and Twitter Preview modals are compatible with WordPress 6.3.</li>\n</ul>\n<h4>Other</h4>\n<ul>\n<li>Sets the WordPress tested up to version to 6.3.</li>\n</ul>\n<h4>20.12</h4>\n<p>Release date: 2023-07-25</p>\n<p>We&#8217;ve just released Yoast SEO 20.12! This release includes fixes and enhancements that strengthen the stability of our plugin and enhance your SEO efforts. Find out more about what&#8217;s new in Yoast SEO 20.12 in <a href=\"https://yoa.st/release-25-7-23\" rel=\"nofollow ugc\">our release post</a>!</p>\n<h4>Enhancements</h4>\n<ul>\n<li>Adds <code>utm_source</code>, <code>utm_medium</code>, <code>utm_campaign</code>, <code>utm_term</code>, <code>utm_content</code>, <code>gclid</code> and <code>gtm_debug</code> to the default allowlist for the &#8220;Remove unregistered URL parameters&#8221; setting.</li>\n</ul>\n<h4>Bugfixes</h4>\n<ul>\n<li>Fixes a bug where an error would appear in <code>debug.log</code> when saving a draft or updating a post in Elementor.</li>\n<li>Fixes a bug where the controls for the <em>FAQ</em> and <em>how-to</em> blocks would be not shown when running Gutenberg versions &gt;= 15.2.</li>\n<li>Fixes a bug where the duration text of the <em>how-to</em> block would be output in the user language instead of the site language.</li>\n</ul>\n<h4>Other</h4>\n<ul>\n<li>Updates the verification link to the Google Search Console in the Site connections section in Settings.</li>\n<li>Improves the copy in the final step of the first time configuration.</li>\n<li>Updates copy of our free webinar notification.</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:2303:\"<ol><li><a href=\"https://ps.w.org/wordpress-seo/assets/screenshot-1.png?rev=2853382\"><img src=\"https://ps.w.org/wordpress-seo/assets/screenshot-1.png?rev=2853382\" alt=\"The modern interface makes Yoast SEO easy to work with.\"></a><p>The modern interface makes Yoast SEO easy to work with.</p></li><li><a href=\"https://ps.w.org/wordpress-seo/assets/screenshot-2.png?rev=2853382\"><img src=\"https://ps.w.org/wordpress-seo/assets/screenshot-2.png?rev=2853382\" alt=\"Easily manage how your posts and pages appear in SERPs.\"></a><p>Easily manage how your posts and pages appear in SERPs.</p></li><li><a href=\"https://ps.w.org/wordpress-seo/assets/screenshot-3.png?rev=2853382\"><img src=\"https://ps.w.org/wordpress-seo/assets/screenshot-3.png?rev=2853382\" alt=\"Yoast SEO Premium has extra crawl optimization options.\"></a><p>Yoast SEO Premium has extra crawl optimization options.</p></li><li><a href=\"https://ps.w.org/wordpress-seo/assets/screenshot-4.png?rev=2853382\"><img src=\"https://ps.w.org/wordpress-seo/assets/screenshot-4.png?rev=2853382\" alt=\"Yoast SEO integrates with tools like Semrush and Wincher.\"></a><p>Yoast SEO integrates with tools like Semrush and Wincher.</p></li><li><a href=\"https://ps.w.org/wordpress-seo/assets/screenshot-5.png?rev=2853382\"><img src=\"https://ps.w.org/wordpress-seo/assets/screenshot-5.png?rev=2853382\" alt=\"The famous SEO and readability analyses in Yoast SEO.\"></a><p>The famous SEO and readability analyses in Yoast SEO.</p></li><li><a href=\"https://ps.w.org/wordpress-seo/assets/screenshot-6.png?rev=2853382\"><img src=\"https://ps.w.org/wordpress-seo/assets/screenshot-6.png?rev=2853382\" alt=\"See what your post looks like in Google.\"></a><p>See what your post looks like in Google.</p></li><li><a href=\"https://ps.w.org/wordpress-seo/assets/screenshot-7.png?rev=2853382\"><img src=\"https://ps.w.org/wordpress-seo/assets/screenshot-7.png?rev=2853382\" alt=\"The First-time configuration helps you get started quickly.\"></a><p>The First-time configuration helps you get started quickly.</p></li><li><a href=\"https://ps.w.org/wordpress-seo/assets/screenshot-8.png?rev=2853382\"><img src=\"https://ps.w.org/wordpress-seo/assets/screenshot-8.png?rev=2853382\" alt=\"The inclusive language analysis in Yoast SEO.\"></a><p>The inclusive language analysis in Yoast SEO.</p></li></ol>\";s:7:\"reviews\";s:14511:\"<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">After removing the plugin, garbage remains in meta.</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/damir_sh/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/3de00b67fe962e54fa773010fa33e871?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/3de00b67fe962e54fa773010fa33e871?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/damir_sh/\" class=\"reviewer-name\">damir_sh</a> on <span class=\"review-date\">August 18, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p class=\"\">After removing the plugin, garbage remains in meta.</p>\n<!-- /wp:paragraph --></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 helpful!</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/mimi0508/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/4bd4efdd5a33183e0b1c899cd30487d2?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/4bd4efdd5a33183e0b1c899cd30487d2?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/mimi0508/\" class=\"reviewer-name\">mimi0508</a> on <span class=\"review-date\">August 15, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p class=\"\">Super helpful for all the SEO-related work!</p>\n<!-- /wp:paragraph --></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\">WP-Login disable</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/elmo2000/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/05b3a55afbea9f15f3e82d074fafb1cf?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/05b3a55afbea9f15f3e82d074fafb1cf?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/elmo2000/\" class=\"reviewer-name\">elmo2000</a> on <span class=\"review-date\">August 14, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p class=\"\">After a long search i came to the conclusion that Yoast Seo Premium disabled my /wp-admin page (Page not found after log in) .. When disable thsi plug in , everything works fine...  @devolpteam  any update available?</p>\n<!-- /wp:paragraph --></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\">Плагин супер!</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/lunalb/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/323a001868af14af5ed7e23815d9354e?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/323a001868af14af5ed7e23815d9354e?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/lunalb/\" class=\"reviewer-name\">lunalb</a> on <span class=\"review-date\">July 28, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p class=\"\">Это отличный и действенный плагин!!!!!!!!!! Очень классный! применяю на всех своих сайтах! Рекомендую!!!!!</p>\n<!-- /wp:paragraph --></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\">Awesome SEO Plugins!</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/tonesiacom/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/88b35cb76193bf85ed50a8840bfe8afd?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/88b35cb76193bf85ed50a8840bfe8afd?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/tonesiacom/\" class=\"reviewer-name\">Heru <small>(tonesiacom)</small></a> on <span class=\"review-date\">July 23, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p class=\"\">Thank You Yoast! Awesome SEO Plugins!</p>\n<!-- /wp:paragraph --></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\">Premium...</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/enerylan/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/1be76c0af455f4286676242f1394752e?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/1be76c0af455f4286676242f1394752e?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/enerylan/\" class=\"reviewer-name\">enerylan</a> on <span class=\"review-date\">July 19, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p class=\"\">Premium required for normal use…</p>\n<!-- /wp:paragraph --></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/harlydson/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/90a0dc4bff1decc972eb9bc207910e1e?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/90a0dc4bff1decc972eb9bc207910e1e?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/harlydson/\" class=\"reviewer-name\">harlydson</a> on <span class=\"review-date\">July 18, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>A must have plugin</p>\n<!-- /wp:paragraph --></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 SEO 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/anonymized-21043444/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/3dfed300fc13e42d2c822bee9f5fa2b5?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/3dfed300fc13e42d2c822bee9f5fa2b5?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-21043444/\" class=\"reviewer-name\">Anonymous User 21043444 <small>(anonymized_21043444)</small></a> on <span class=\"review-date\">July 17, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>The best SEO plugin.</p>\n<!-- /wp:paragraph --></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\">A Reliable SEO Plugin with a Few Drawbacks</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/gs1623/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/a7a58f8c70736b0be282422b356569e8?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/a7a58f8c70736b0be282422b356569e8?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/gs1623/\" class=\"reviewer-name\">Mo <small>(gs1623)</small></a> on <span class=\"review-date\">July 16, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>This plugin is alright and gets the job done. I prefer it over any other SEO plugin, but I wish they were a little more generous with their offerings. A few features that are free in other plugins, such as Rank Math, are paid options, which is a real shame because I personally prefer it over any other plugin. Other than that, I can\'t fault it.</p>\n<!-- /wp:paragraph --></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 respect</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/ronaldbree/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/90919d61a5c94b882a0d9b7ae9c62964?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/90919d61a5c94b882a0d9b7ae9c62964?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/ronaldbree/\" class=\"reviewer-name\">ronaldbree</a> on <span class=\"review-date\">July 11, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>With the new update (starting with version 20.9) it isn\'t possible anymore to use Yoast. I asked the helpdesk, but they don\'t give solutions (if there are any) to people who don\'t have premium. Is it a dirty trick to have me buy this paid version. Shame on you JOOST.</p>\n<!-- /wp:paragraph --></div>\n</div>\n\";}s:13:\"download_link\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.20.13.zip\";s:11:\"screenshots\";a:8:{i:1;a:2:{s:3:\"src\";s:66:\"https://ps.w.org/wordpress-seo/assets/screenshot-1.png?rev=2853382\";s:7:\"caption\";s:55:\"The modern interface makes Yoast SEO easy to work with.\";}i:2;a:2:{s:3:\"src\";s:66:\"https://ps.w.org/wordpress-seo/assets/screenshot-2.png?rev=2853382\";s:7:\"caption\";s:55:\"Easily manage how your posts and pages appear in SERPs.\";}i:3;a:2:{s:3:\"src\";s:66:\"https://ps.w.org/wordpress-seo/assets/screenshot-3.png?rev=2853382\";s:7:\"caption\";s:55:\"Yoast SEO Premium has extra crawl optimization options.\";}i:4;a:2:{s:3:\"src\";s:66:\"https://ps.w.org/wordpress-seo/assets/screenshot-4.png?rev=2853382\";s:7:\"caption\";s:57:\"Yoast SEO integrates with tools like Semrush and Wincher.\";}i:5;a:2:{s:3:\"src\";s:66:\"https://ps.w.org/wordpress-seo/assets/screenshot-5.png?rev=2853382\";s:7:\"caption\";s:53:\"The famous SEO and readability analyses in Yoast SEO.\";}i:6;a:2:{s:3:\"src\";s:66:\"https://ps.w.org/wordpress-seo/assets/screenshot-6.png?rev=2853382\";s:7:\"caption\";s:40:\"See what your post looks like in Google.\";}i:7;a:2:{s:3:\"src\";s:66:\"https://ps.w.org/wordpress-seo/assets/screenshot-7.png?rev=2853382\";s:7:\"caption\";s:59:\"The First-time configuration helps you get started quickly.\";}i:8;a:2:{s:3:\"src\";s:66:\"https://ps.w.org/wordpress-seo/assets/screenshot-8.png?rev=2853382\";s:7:\"caption\";s:45:\"The inclusive language analysis in Yoast SEO.\";}}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:47:{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:5:\"19.10\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.19.10.zip\";s:5:\"19.11\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.19.11.zip\";s:5:\"19.12\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.19.12.zip\";s:5:\"19.13\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.19.13.zip\";s:5:\"19.14\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.19.14.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:4:\"19.9\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.19.9.zip\";s:4:\"20.0\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.20.0.zip\";s:4:\"20.1\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.20.1.zip\";s:5:\"20.10\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.20.10.zip\";s:5:\"20.11\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.20.11.zip\";s:5:\"20.12\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.20.12.zip\";s:5:\"20.13\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.20.13.zip\";s:4:\"20.2\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.20.2.zip\";s:6:\"20.2.1\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.20.2.1.zip\";s:4:\"20.3\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.20.3.zip\";s:4:\"20.4\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.20.4.zip\";s:4:\"20.5\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.20.5.zip\";s:4:\"20.6\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.20.6.zip\";s:4:\"20.7\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.20.7.zip\";s:4:\"20.8\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.20.8.zip\";s:4:\"20.9\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.20.9.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:26:{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:6:\"10.2.1\";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:\"5.4\";s:6:\"tested\";s:5:\"6.2.2\";s:12:\"requires_php\";s:3:\"7.2\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:88;s:7:\"ratings\";a:5:{i:5;i:153;i:4;i:13;i:3;i:5;i:2;i:8;i:1;i:18;}s:11:\"num_ratings\";i:197;s:15:\"support_threads\";i:9;s:24:\"support_threads_resolved\";i:5;s:15:\"active_installs\";i:300000;s:12:\"last_updated\";s:21:\"2023-08-15 9:25am 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:13487:\"<p><em>HubSpot is a CRM 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 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), create the best email marketing campaigns, engage visitors with live chat and chatbots, add beautiful forms to pages, and more.</p>\n<p>Use HubSpot to:</p>\n<ul>\n<li>💬 Connect 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 the smart  WordPress CRM plugin.</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<p>With HubSpot CRM, 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 free WordPress 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 of our top WordPress CRM that you&#8217;ll love, suited specifically for your business needs:</p>\n<p>✅ Lead generation &amp; lead management on your WordPress website<br />\n✅ Pipeline management<br />\n✅ WordPress email marketing<br />\n✅ WordPress reporting dashboard<br />\n✅ Contact management<br />\n✅ Prospect tracking</p>\n<p>Streamline your entire business with the free CRM solution that has something for everyone. Try the HubSpot CRM plugin today.</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 WordPress email marketing campaigns or build the best email newsletter templates? 🤔</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>Try the HubSpot WordPress email marketing plugin today. Customers love our free email marketing software for features like:</p>\n<p>🤩 <strong>20+ pre-designed free email templates to match your campaign goals. (Choose from free newsletter templates, 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 WordPress newsletter builder.</strong></p>\n<blockquote>\n<p>Build beautiful newsletter templates with the HubSpot WordPress plugin. Create custom newsletter templates effortlessly with a drag-and-drop builder.</p>\n<p>Test out newsletters before you send them, schedule publications for the best time to convert, optimize for mobile devices, and save your own email designs to use again later.</p>\n<p>Send newsletters to targeted contact lists all within the free WordPress newsletter plugin tool..</p>\n<p>Adjust typography, designs, colors, and more to create email campaigns your subscribers will love!</p>\n</blockquote>\n<p>🤖 <strong>Email automation software, email tracking, and A/B testing tools.</strong></p>\n<blockquote>\n<p>Send automated 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<p>Setup an A/B test of your newsletter while designing it. Test out different email calls to action and optimize your newsletters with the best performing versions.</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 email engagement with reports for delivery rates, open rates, and click-through rates — and use that information to improve campaigns.</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 with the HubSpot WordPress live chat plugin.</p>\n<p>Live website chat inside the HubSpot WordPress plugin streamlines the customer experience, making it easier than ever for you to engage with website visitors leads, convert them into customers, and provide them with the support they need.</p>\n<p>HubSpot’s free WordPress live chat solution software offers:</p>\n<p>😀 Custom styling to match your website<br />\n🤖 A variety of chatbot options including:</p>\n<ul>\n<li>✅ Concierge chatbot</li>\n<li>✅ Qualify leads chatbot</li>\n<li>✅ Meetings chatbot</li>\n<li>✅ Tickets chatbot</li>\n<li>✅ Knowledge base &amp; support chatbot</li>\n<li>✅ Offline chatbot</li>\n</ul>\n<p>📲 Real-time live messaging on the go via HubSpot’s mobile app<br />\n👨‍💻 A Slack integration to receive and respond to live chat notifications<br />\n🕐 24/7 live chat support on autopilot</p>\n<p>Our free live chat plugin 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/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, web 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<br />\n✅ Neverbounce<br />\n✅ Email Delivery Optimization by Seventh Sense</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<br />\n✅ Sakari SMS<br />\n✅ Treble.ai</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:6722:\"\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>With HubSpot’s WordPress plugin, you can use the free CRM software for email marketing, contact management, live chat, customer service, content creation, content management, and more. HubSpot’s full suite of free tools is perfect for small businesses looking to grow and streamline their tech stack.  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>custom popups</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/\" rel=\"ugc\">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:343:\"<p><a href=\"https://plugins.svn.wordpress.org/leadin/trunk/changelog.txt\" rel=\"nofollow ugc\">Full changelog here</a><br />\n&#8211; Current version: 10.2.1<br />\n&#8211; Version release date: 2023-08-14</p>\n<h4>10.2.0 (2023-08-09)</h4>\n<ul>\n<li>Live chat app embedder</li>\n</ul>\n<h4>10.1.30 (2023-07-24)</h4>\n<ul>\n<li>Updated readme</li>\n</ul>\n\";s:11:\"screenshots\";s:2397:\"<ol><li><a href=\"https://ps.w.org/leadin/assets/screenshot-1.png?rev=2953716\"><img src=\"https://ps.w.org/leadin/assets/screenshot-1.png?rev=2953716\" 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=2953716\"><img src=\"https://ps.w.org/leadin/assets/screenshot-2.png?rev=2953716\" 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=2953716\"><img src=\"https://ps.w.org/leadin/assets/screenshot-3.png?rev=2953716\" 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=2953716\"><img src=\"https://ps.w.org/leadin/assets/screenshot-4.png?rev=2953716\" 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=2953716\"><img src=\"https://ps.w.org/leadin/assets/screenshot-5.png?rev=2953716\" 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=2953716\"><img src=\"https://ps.w.org/leadin/assets/screenshot-6.png?rev=2953716\" 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=2953716\"><img src=\"https://ps.w.org/leadin/assets/screenshot-7.png?rev=2953716\" 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=2953716\"><img src=\"https://ps.w.org/leadin/assets/screenshot-8.png?rev=2953716\" 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:17640:\"<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 poor experience</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/freddredirl/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/f9415f6ba167f30d0fd23502020fd07b?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/f9415f6ba167f30d0fd23502020fd07b?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/freddredirl/\" class=\"reviewer-name\">freddredirl</a> on <span class=\"review-date\">August 9, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p class=\"\">I dont think I have ever given a 1 poor review before - but this deserves one. Very glitchy onboarding experience bringing you round in circles, try again and poor explanations of errors/causes. Surprising for such a well known CRM.</p>\n<!-- /wp:paragraph --></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 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/rmartins1978/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/5e57cb79c50931c37d9f6ac1d459612a?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/5e57cb79c50931c37d9f6ac1d459612a?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/rmartins1978/\" class=\"reviewer-name\">Rui Martins <small>(rmartins1978)</small></a> on <span class=\"review-date\">June 25, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Use this in all of my websites. Allows me to manage communication with prospects and then follow them up until they become customers.</p>\n<!-- /wp:paragraph --></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 Pros and Cons of Hubspot</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/marbs/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/274f7cd4d4a88ff782d5e20cbac82d4a?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/274f7cd4d4a88ff782d5e20cbac82d4a?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/marbs/\" class=\"reviewer-name\">marbs</a> on <span class=\"review-date\">May 17, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>I recently integrated the Hubspot WordPress plugin into my website with high hopes of streamlining my marketing efforts. While the plugin offers some useful features, there are a few drawbacks that significantly impact both mobile website performance and user experience.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>First and foremost, I noticed a significant decline in mobile website performance after implementing the Hubspot plugin. According to Google PageSpeed Insights, my website\'s performance score plummeted <strong>from 64</strong> to <strong>39</strong> <em>(unable to add links to screenshot to compliment my review)</em>. This decline is quite concerning, as a slow-loading website can have a detrimental effect on user engagement and search engine rankings. It is essential to consider this performance impact before deciding to use the Hubspot plugin, especially if website speed is a priority for your business.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I encountered a frustrating issue with the plugin\'s login functionality. Whenever I close my browser, all data associated with Hubspot, including my login information, is automatically deleted for security reasons. Consequently, I find myself having to log in manually to the Hubspot dashboard every time I access it. This inconvenience disrupts my workflow and wastes precious time that could be better spent on other tasks. This issue seems to be a significant flaw in Hubspot\'s design and should be addressed promptly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Despite these setbacks, it\'s worth noting that the Hubspot WordPress plugin does offer some valuable features for marketers. It allows for seamless integration of Hubspot\'s CRM and marketing tools, enabling easy lead capture, email marketing, and contact management. The plugin also provides analytics and reporting functionalities, giving users insights into their marketing performance but the downside is, when you option for an upgrade it gets pricey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Hubspot WordPress plugin presents a mixed bag of pros and cons. While it offers useful marketing features and analytics capabilities, it comes with notable downsides. The decline in mobile website performance according to Google PageSpeed Insights is concerning, and the persistent login issue is a significant inconvenience. If you decide to use the Hubspot plugin, it is crucial to be aware of these limitations and consider the trade-offs carefully. Hopefully, the Hubspot team will address these issues promptly to improve the overall user experience.</p>\n<!-- /wp:paragraph --></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\">Good UI and Integration in WP is easy</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/msstaxes/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/0ae18aea8316d157995dbb6121173432?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/0ae18aea8316d157995dbb6121173432?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/msstaxes/\" class=\"reviewer-name\">msstaxes</a> on <span class=\"review-date\">April 4, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>UI is good, we have more control on customisation of forms, live chat etc. I recommend it.</p>\n<!-- /wp:paragraph --></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\">Does not work- waste of time</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/teresa789/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/5d9ee226da8b846b06354ea82e10dc16?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/5d9ee226da8b846b06354ea82e10dc16?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/teresa789/\" class=\"reviewer-name\">teresa789</a> on <span class=\"review-date\">March 24, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>I have installed the plugin on 4 different site and none of them work, I have it on one site no other plugins so no conflict there and it still will not connect. I can not find any information or help on what to do. What a waste of a day, researching and still can not get it to work, I also set up an account on hubspot and could not even get the email section to connect, it should not be this hard. </p>\n<!-- /wp:paragraph --></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\">Reliable but needs work</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/pagecode/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/26b20ff1025d2019012f5e9793183e9d?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/26b20ff1025d2019012f5e9793183e9d?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/pagecode/\" class=\"reviewer-name\">Pagecode <small>(pagecode)</small></a> on <span class=\"review-date\">March 16, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Its great but it needs work with the connection sometimes bugging out</p>\n<!-- /wp:paragraph --></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 kills your performance</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/karel0017/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/faab764af226d81afde958b425fbdbeb?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/faab764af226d81afde958b425fbdbeb?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/karel0017/\" class=\"reviewer-name\">karel0017</a> on <span class=\"review-date\">March 12, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>We used this plugin for a while, only to track some pages. No forms, no CTA. We had to uninstall it because it was responsible for a huge drop in our performance. We went from 99 to 67 in lighthouse! After disabling, our performance was back to normal. This is unacceptable, especially, for a plugin that is supposed to be in the SEO domain...</p>\n<!-- /wp:paragraph --></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\">life is now easy</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/ahsandeveloper/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/a1852014e857381888bd5238d7888580?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/a1852014e857381888bd5238d7888580?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/ahsandeveloper/\" class=\"reviewer-name\">ahsandeveloper</a> on <span class=\"review-date\">March 12, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>This makes my life easy.</p>\n<!-- /wp:paragraph --></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 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/bulletrainy/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/eedae12fba4ab85b750c0e889864db30?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/eedae12fba4ab85b750c0e889864db30?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/bulletrainy/\" class=\"reviewer-name\">bulletrainy</a> on <span class=\"review-date\">December 19, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Thank you for such helpful solution! This plugin is really amazing! Didn\'t have any problems with installation or configuration.</p>\n<!-- /wp:paragraph --></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\">Amazing Experience</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/almatheresa007/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/9705e87756d2eb07a41d659c39688b5f?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/9705e87756d2eb07a41d659c39688b5f?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/almatheresa007/\" class=\"reviewer-name\">almatheresa007</a> on <span class=\"review-date\">November 16, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\">Wordpress is quite an amazing experience. However that aside I would like to introduce my fellow visionary wealth thinkers to a financial expert in US, the email is \'synodx @ tutanota • com\' and he\'s certified, I took his advice and invested $15k in crypto assets, now I got up to $350k so far. He can assist you in building at least 6 figures with little capital.</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=2953716\";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=2953716\";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=2953716\";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=2953716\";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=2953716\";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=2953716\";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=2953716\";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=2953716\";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:5:\"forms\";s:5:\"forms\";s:9:\"live-chat\";s:9:\"live chat\";s:9:\"marketing\";s:9:\"marketing\";}s:8:\"versions\";a:13:{s:7:\"10.0.18\";s:57:\"https://downloads.wordpress.org/plugin/leadin.10.0.18.zip\";s:7:\"10.0.21\";s:57:\"https://downloads.wordpress.org/plugin/leadin.10.0.21.zip\";s:7:\"10.0.24\";s:57:\"https://downloads.wordpress.org/plugin/leadin.10.0.24.zip\";s:6:\"10.0.7\";s:56:\"https://downloads.wordpress.org/plugin/leadin.10.0.7.zip\";s:7:\"10.1.13\";s:57:\"https://downloads.wordpress.org/plugin/leadin.10.1.13.zip\";s:7:\"10.1.16\";s:57:\"https://downloads.wordpress.org/plugin/leadin.10.1.16.zip\";s:7:\"10.1.23\";s:57:\"https://downloads.wordpress.org/plugin/leadin.10.1.23.zip\";s:7:\"10.1.27\";s:57:\"https://downloads.wordpress.org/plugin/leadin.10.1.27.zip\";s:7:\"10.1.29\";s:57:\"https://downloads.wordpress.org/plugin/leadin.10.1.29.zip\";s:6:\"10.1.6\";s:56:\"https://downloads.wordpress.org/plugin/leadin.10.1.6.zip\";s:6:\"10.2.0\";s:56:\"https://downloads.wordpress.org/plugin/leadin.10.2.0.zip\";s:5:\"9.2.0\";s:55:\"https://downloads.wordpress.org/plugin/leadin.9.2.0.zip\";s:6:\"9.2.26\";s:56:\"https://downloads.wordpress.org/plugin/leadin.9.2.26.zip\";}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=2953716\";s:4:\"high\";s:62:\"https://ps.w.org/leadin/assets/banner-1544x500.png?rev=2953716\";}}s:7:\"bbpress\";a:26:{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:3:\"6.3\";s:12:\"requires_php\";s:6:\"5.6.20\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:78;s:7:\"ratings\";a:5:{i:5;i:192;i:4;i:40;i:3;i:24;i:2;i:20;i:1;i:51;}s:11:\"num_ratings\";i:327;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:17849:\"<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Does Not Work in Latest WordPress versions (blank page)</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/jmstacey/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/8636a492ab325037a209c64f117770fa?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/8636a492ab325037a209c64f117770fa?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/jmstacey/\" class=\"reviewer-name\"> <small>(jmstacey)</small></a> on <span class=\"review-date\">August 14, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p class=\"\">Blank white page on latest WordPress version 6.3. </p>\n<!-- /wp:paragraph --></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\">Old fashioned &amp; buggy</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/thommycgn/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/c6521cbbf21ed1c6ad0e61ace47aeda1?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/c6521cbbf21ed1c6ad0e61ace47aeda1?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/thommycgn/\" class=\"reviewer-name\">thommycgn</a> on <span class=\"review-date\">April 19, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>bbpress is very old fashioned and a bit cumbersome and buggy. The search does not work with the latest wordpress version, you always end up on an archive page with wrong display. The error is not caused by the theme or another plugin, have tried many things. With some themes only a blank page comes up.<br />Also the url structure is not really nice (/forums/forum/..). bbPress urgently needs an overhaul! I spent 2 days with bbPress, before I finally switched to another plugin, because it was not possible to get bbPress to run without errors. There are better free forums for wordpress that look much more modern (Asharos forum worked right away, without problems).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></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\">Blank page on twenty twenty three</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/2fr3/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/e98745ce55ac5104ced08ba2d46f469d?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/e98745ce55ac5104ced08ba2d46f469d?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/2fr3/\" class=\"reviewer-name\">2FR3</a> on <span class=\"review-date\">March 27, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>See title, good job !</p>\n<!-- /wp:paragraph --></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\">Not good</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/farzandezamiin/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/6e4097d8ceb44f76cef014b96bd0b81e?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/6e4097d8ceb44f76cef014b96bd0b81e?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/farzandezamiin/\" class=\"reviewer-name\">ابوالقاسم کریمی <small>(farzandezamiin)</small></a> on <span class=\"review-date\">March 2, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Not good</p>\n<!-- /wp:paragraph --></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\">Attempt to modify property &quot;classes&quot; on null</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/filout/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/6c21a095a47f2b57e69d30f2c75597d8?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/6c21a095a47f2b57e69d30f2c75597d8?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/filout/\" class=\"reviewer-name\">filout</a> on <span class=\"review-date\">February 14, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Hello everyone,</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>our provider made a php update from v7.4 to v8.1 (because EOL for php v7.4) the days and after this our homepage wasn\'t reachable with the error message in the topic.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Via FTP i deactivated all installed plugins until the error came back and i found out, that this error comes from bbPress.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We have installed:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>php v8.1</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>WordPress v6.1.1</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>bbPress v2.6.9</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>bbp style pack v5.3.5</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>bbPress Toolkit v1.0.12</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>theme Origamiez v1.3.5</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>If you need further information please let me know.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Regards</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Filout</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></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\">Not really fun to work with</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/cutu234/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/a77c9110b8b015d7884f60de3f5a10d4?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/a77c9110b8b015d7884f60de3f5a10d4?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/cutu234/\" class=\"reviewer-name\">cutu234</a> on <span class=\"review-date\">January 23, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>I really wanted to like this plugin, I really did. I mean, it\'s by the guys that made WordPress. So, what could possibly go wrong? Well, let\'s start with the layout. While I do appreciate simple and clean designs, it can get TOO simple. The forum page looks like a Typo3 layout from the nineties. Now to the more annoying part: There is no registration or lost password form on the login page. Seriously? So, I added both pages and activated the sidebar <strong>just for the bbpress widget</strong>! This gives me an acceptable registration page. But wait! If I fill in the wrong credentials (or simply nothing), I\'ll get redirected to the WordPress login page. WHAT? I know that I can install a plugin for this feature. But I simple don\'t want an additional plugin for such a basic thing.</p>\n<!-- /wp:paragraph --></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 longer worthwhile</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/webstpro/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/57f97bfae6b106b06fc6dfc2d3e7714f?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/57f97bfae6b106b06fc6dfc2d3e7714f?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/webstpro/\" class=\"reviewer-name\">webstpro</a> on <span class=\"review-date\">December 15, 2022</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Very primitive. No documentation. For example, there is a search box but no way to put a label on it. I tried to add a topic to a forum but there was no submit button. Basically, it has not been updated in a year and it shows.</p>\n<!-- /wp:paragraph --></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\">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\";}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:26:{s:4:\"name\";s:14:\"Contact Form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:7:\"version\";s:3:\"5.8\";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:\"6.2\";s:6:\"tested\";s:3:\"6.3\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:80;s:7:\"ratings\";a:5:{i:5;i:1400;i:4;i:141;i:3;i:69;i:2;i:61;i:1;i:374;}s:11:\"num_ratings\";i:2045;s:15:\"support_threads\";i:322;s:24:\"support_threads_resolved\";i:100;s:15:\"active_installs\";i:5000000;s:12:\"last_updated\";s:21:\"2023-08-06 8:25am 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:3077:\"<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/\" rel=\"ugc\">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.brevo.com/legal/privacypolicy/\" rel=\"nofollow ugc\">Brevo (formerly 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/\" rel=\"ugc\">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/\" rel=\"ugc\">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:449:\"<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/\" rel=\"ugc\">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:1492:\"<p>For more information, see <a href=\"https://contactform7.com/category/releases/\" rel=\"nofollow ugc\">Releases</a>.</p>\n<h4>5.8</h4>\n<p><a href=\"https://contactform7.com/contact-form-7-58/\" rel=\"nofollow ugc\">https://contactform7.com/contact-form-7-58/</a></p>\n<h4>5.7.7</h4>\n<p><a href=\"https://contactform7.com/contact-form-7-577/\" rel=\"nofollow ugc\">https://contactform7.com/contact-form-7-577/</a></p>\n<h4>5.7.6</h4>\n<p><a href=\"https://contactform7.com/contact-form-7-576/\" rel=\"nofollow ugc\">https://contactform7.com/contact-form-7-576/</a></p>\n<h4>5.7.5.1</h4>\n<ul>\n<li>Fixes an old PHP compatibility issue.</li>\n</ul>\n<h4>5.7.5</h4>\n<p><a href=\"https://contactform7.com/contact-form-7-575/\" rel=\"nofollow ugc\">https://contactform7.com/contact-form-7-575/</a></p>\n<h4>5.7.4</h4>\n<p><a href=\"https://contactform7.com/contact-form-7-574/\" rel=\"nofollow ugc\">https://contactform7.com/contact-form-7-574/</a></p>\n<h4>5.7.3</h4>\n<p><a href=\"https://contactform7.com/contact-form-7-573/\" rel=\"nofollow ugc\">https://contactform7.com/contact-form-7-573/</a></p>\n<h4>5.7.2</h4>\n<p><a href=\"https://contactform7.com/contact-form-7-572/\" rel=\"nofollow ugc\">https://contactform7.com/contact-form-7-572/</a></p>\n<h4>5.7.1</h4>\n<p><a href=\"https://contactform7.com/contact-form-7-571/\" rel=\"nofollow ugc\">https://contactform7.com/contact-form-7-571/</a></p>\n<h4>5.7</h4>\n<p><a href=\"https://contactform7.com/contact-form-7-57/\" rel=\"nofollow ugc\">https://contactform7.com/contact-form-7-57/</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:15603:\"<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Facing some issues</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/cgartistamit/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/ffa0d63ce3fe5ee40bd3868733affe00?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/ffa0d63ce3fe5ee40bd3868733affe00?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/cgartistamit/\" class=\"reviewer-name\">cgartist.amit</a> on <span class=\"review-date\">August 18, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p class=\"\">I am using this form from 5-6 years this is just awesome. But a client wants to make checkbox looks like toggle type selectable buttons.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p class=\"\">I created a module via CF7, I wants to make some changes like padding, color, etc to make checkbox looks like a button. Or anything else to achieve this. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p class=\"\">using css</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:code -->\n<pre class=\"wp-block-code\"><code>.togglebuttons .wpcf7-list-item {<br />margin: 0 10px 0 0;<br />display: inline-block;<br />}<br />.togglebuttons &gt; span input {<br />opacity: 0;<br />position: absolute;<br />}\n\n.togglebuttons &gt; span .wpcf7-list-item-label {<br />cursor: pointer;<br />display: block;<br />color: #ffffff;<br />border-radius: 15px;<br />background: #f44571;<br />padding: 5px 15px;<br />background: #4054b2;<br />box-shadow: 0 0px 0px rgba(0,0,0,.2);<br />border: 0px solid #e0e0e0;<br />}\n\n.togglebuttons &gt; span input:checked + .wpcf7-list-item-label {<br />background: #4054b2;<br />border: 0px solid #0193c2;<br />color: #ffffff;<br />font-weight: bold;<br />}</code></pre>\n<!-- /wp:code --></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\">poor service</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/ratemybodypart/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/aedaa96cadca7e7d2ec92f39376ee26e?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/aedaa96cadca7e7d2ec92f39376ee26e?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/ratemybodypart/\" class=\"reviewer-name\">ratemybodypart</a> on <span class=\"review-date\">August 18, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p class=\"\">Been in contact with them but got no reply. i like the Plugin but the customer service is abyssmal. looking at the stats, 97 out of 325 cases resolved. thats p*ss poor effort</p>\n<!-- /wp:paragraph --></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\">Do not waste time even testing it ... won&#039;t 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/asif_rn/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/aa1dd66c5f9c9bf526fa89cb9f2edb8f?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/aa1dd66c5f9c9bf526fa89cb9f2edb8f?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/asif_rn/\" class=\"reviewer-name\">Asif <small>(asif_rn)</small></a> on <span class=\"review-date\">August 9, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p class=\"\">Unnecessarily complex and does not in most cases. </p>\n<!-- /wp:paragraph --></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\">ReCaptcha</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/micro-design/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/c0286ff497e63efc84dcea796975e8b4?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/c0286ff497e63efc84dcea796975e8b4?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/micro-design/\" class=\"reviewer-name\">Martin Tonev <small>(micro-design)</small></a> on <span class=\"review-date\">August 3, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p class=\"\">Unbelivable stupid ReCaptch integration, why you require to use only Invisible Recaptcha ??? <br /><br />I want to use the checkbox because with the invisible all messages are SPAM no matter what I write!!!!</p>\n<!-- /wp:paragraph --></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/katarinawp90/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/f68d8f4282aacc918aa3ec34a83b1d4b?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/f68d8f4282aacc918aa3ec34a83b1d4b?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/katarinawp90/\" class=\"reviewer-name\">Katarina <small>(katarinawp90)</small></a> on <span class=\"review-date\">June 28, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Working excellent with Elementor, Flamingo and Honeypot.</p>\n<!-- /wp:paragraph --></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 Form 7 does not meet expectations</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/sherlockclubcom/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/b21ab40b20c8f6842a38b9f07f45205b?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/b21ab40b20c8f6842a38b9f07f45205b?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/sherlockclubcom/\" class=\"reviewer-name\">sherlockclubcom</a> on <span class=\"review-date\">June 19, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Contact Form 7 does not meet expectations</p>\n<!-- /wp:paragraph --></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 contact form</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/nicolasvsedeco/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/bcf66398a5894c55ab49c0fe8002be45?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/bcf66398a5894c55ab49c0fe8002be45?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/nicolasvsedeco/\" class=\"reviewer-name\">nicolasvsedeco</a> on <span class=\"review-date\">June 18, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>This plugin is a must for wordpress</p>\n<!-- /wp:paragraph --></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\">Ya no envía nada</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/javierorta/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/71b7ecd40689d6df6cdc3f7ad4d54d0d?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/71b7ecd40689d6df6cdc3f7ad4d54d0d?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/javierorta/\" class=\"reviewer-name\">javierorta</a> on <span class=\"review-date\">June 16, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Antes funcionaba de maravilla, ahora ya no envía aunque salga el mensaje de mensaje enviado con éxito. </p>\n<!-- /wp:paragraph --></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\">A relief</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/flausch/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/b6f3d74a8947aae729a8476d7f5e1661?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/b6f3d74a8947aae729a8476d7f5e1661?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/flausch/\" class=\"reviewer-name\">flausch</a> on <span class=\"review-date\">June 15, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>I started out with WPForms and got terribly annoyed that you cannot even  just add html to a form-text (in the free version) and how bloated it seemed. What finally convinced me to switch was \"GDPR Compliant ReCaptcha for all forms\" which only supports Contact Form 7. <br /><br />And I love it! You need some very basic html knowledge, but it is flexible, simple  and robust. Highly recommended.</p>\n<!-- /wp:paragraph --></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/piero98/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/f4a9fd20a4e2ed77abb88e4b9e23716e?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/f4a9fd20a4e2ed77abb88e4b9e23716e?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/piero98/\" class=\"reviewer-name\">Piero Rado Macavilca <small>(piero98)</small></a> on <span class=\"review-date\">June 10, 2023</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>I always use it in my projects.</p>\n<!-- /wp:paragraph --></div>\n</div>\n\";}s:13:\"download_link\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.5.8.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:174:{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:3:\"5.7\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.5.7.zip\";s:5:\"5.7.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.7.1.zip\";s:5:\"5.7.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.7.2.zip\";s:5:\"5.7.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.7.3.zip\";s:5:\"5.7.4\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.7.4.zip\";s:5:\"5.7.5\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.7.5.zip\";s:7:\"5.7.5.1\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.5.7.5.1.zip\";s:5:\"5.7.6\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.7.6.zip\";s:5:\"5.7.7\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.7.7.zip\";s:3:\"5.8\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.5.8.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'),(2601,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1692807624','no'),(2602,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1692764424','no'),(2603,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1692807624','no'),(2604,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/08/wp20-a-heartfelt-thanks/\'>WP20 – A Heartfelt Thanks</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/08/lionel/\'>WordPress 6.3 “Lionel”</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordpress-coding-standards-maintainer-warns-maintenance-will-be-halted-without-funding-this-is-an-unsustainable-situation\'>WPTavern: WordPress Coding Standards Maintainer Warns Maintenance Will Be Halted Without Funding: “This Is an Unsustainable Situation.”</a></li><li><a class=\'rsswidget\' href=\'https://dothewoo.io/all-about-the-page-builder-summit-with-anchen-and-nathan/\'>Do The Woo Community: All About the Page Builder Summit with Anchen and Nathan</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/new-chrome-browser-extension-enables-one-click-plugin-and-theme-testing-with-wordpress-playground\'>WPTavern: New Chrome Browser Extension Enables One-Click Plugin and Theme Testing with WordPress Playground</a></li></ul></div>','no'),(2595,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1692807624','no'),(2596,'_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:\"Thu, 17 Aug 2023 14:54:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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.4-alpha-56424\";s: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:64:\"\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:27:\"WP20 – A Heartfelt Thanks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/news/2023/08/wp20-a-heartfelt-thanks/\";s: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, 17 Aug 2023 14:54:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:4:\"WP20\";s:7:\"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=15471\";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:484:\"Earlier this year, WordPressers around the globe united to celebrate 20 years of community and innovation. There were parties, blogs, videos, and social media posts aplenty. And, of course, the trending hashtag, “#WP20”.\n\nThroughout April and May, community members reflected on their journeys - what brought them to WordPress and its personal meaning. The stories, tweets, and videos were inspiring, nostalgic, and even humorous at times. There was swag, and the cakes were epic.\";s: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:68:\"https://wordpress.org/news/files/2023/08/wp20-celebrate-animated.mp4\";s:6:\"length\";s:7:\"2964981\";s:4:\"type\";s:9:\"video/mp4\";}}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:\"Dan Soschin\";s: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:38192:\"\n<figure class=\"wp-block-video\"><video autoplay controls loop muted src=\"https://wordpress.org/news/files/2023/08/wp20-celebrate-animated.mp4\" playsinline></video></figure>\n\n\n\n<p>Earlier this year, WordPressers around the globe united to celebrate 20 years of community and innovation. There were parties, blogs, videos, and social media posts aplenty. And, of course, the trending hashtag, “#WP20”.</p>\n\n\n\n<p>Throughout April and May, community members reflected on their journeys &#8211; what brought them to WordPress and its personal meaning. The stories, tweets, and videos were inspiring, nostalgic, and even humorous at times. There was swag, and the cakes were epic.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Let’s take a look!</h2>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-3 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">On WordPress turning 20, and the Audrey Scholars program: <a href=\"https://t.co/Etwh8H6xh4\">https://t.co/Etwh8H6xh4</a></p>&mdash; Matt Mullenweg (@photomatt) <a href=\"https://twitter.com/photomatt/status/1662582800451776512?ref_src=twsrc%5Etfw\">May 27, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">WordPress celebrates 20 years tomorrow. It&#39;s grown from a comment on a blog post to a web spanning phenomenon. Thanks to an outstanding community and the freedoms of Open Source. Happy Birthday, WordPress! <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://twitter.com/hashtag/WordPress?src=hash&amp;ref_src=twsrc%5Etfw\">#WordPress</a> <a href=\"https://t.co/fght4XMJXb\">pic.twitter.com/fght4XMJXb</a></p>&mdash; Mike Little (@mikelittlezed1) <a href=\"https://twitter.com/mikelittlezed1/status/1662013891856027649?ref_src=twsrc%5Etfw\">May 26, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">Look at this cute <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> cake from <a href=\"https://twitter.com/RicksBakery?ref_src=twsrc%5Etfw\">@RicksBakery</a>! <a href=\"https://t.co/f88H3usR5R\">pic.twitter.com/f88H3usR5R</a></p>&mdash; Josepha Haden Chomphosy (@JosephaHaden) <a href=\"https://twitter.com/JosephaHaden/status/1662562362979676162?ref_src=twsrc%5Etfw\">May 27, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"es\" dir=\"ltr\">Tenemos regalitos para los que vengáis esta tarde a la Meetup.<a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://t.co/PSPsbWluv7\">pic.twitter.com/PSPsbWluv7</a></p>&mdash; Meetup WordPress Torrelodones (@WPTorrelodones) <a href=\"https://twitter.com/WPTorrelodones/status/1671918091398258688?ref_src=twsrc%5Etfw\">June 22, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">So <a href=\"https://twitter.com/WordPress?ref_src=twsrc%5Etfw\">@WordPress</a> is turning 20 years old today! <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> <br><br>Happy birthday to WordPress and its entire community! from me and <a href=\"https://twitter.com/MariekeRakt?ref_src=twsrc%5Etfw\">@MariekeRakt</a> <a href=\"https://t.co/9N9T0SnsdL\">pic.twitter.com/9N9T0SnsdL</a></p>&mdash; Joost de Valk (@jdevalk) <a href=\"https://twitter.com/jdevalk/status/1662398779360702465?ref_src=twsrc%5Etfw\">May 27, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">Happy 20th birthday, <a href=\"https://twitter.com/WordPress?ref_src=twsrc%5Etfw\">@WordPress</a>! Our Cebu meetup was a success! <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2728.png\" alt=\"✨\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f382.png\" alt=\"🎂\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><br><br>…and our community is growing. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4af.png\" alt=\"💯\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> Thanks to <a href=\"https://twitter.com/hashtag/enspaceCebu?src=hash&amp;ref_src=twsrc%5Etfw\">#enspaceCebu</a> for hosting our party! <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://twitter.com/hashtag/WordPressCebu?src=hash&amp;ref_src=twsrc%5Etfw\">#WordPressCebu</a> <a href=\"https://twitter.com/hashtag/WPCebu?src=hash&amp;ref_src=twsrc%5Etfw\">#WPCebu</a> <a href=\"https://t.co/TUFoKjuoxq\">pic.twitter.com/TUFoKjuoxq</a></p>&mdash; Cebu WordPress Meetup (@WPCebu) <a href=\"https://twitter.com/WPCebu/status/1664957630241189888?ref_src=twsrc%5Etfw\">June 3, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">I&#39;m sure you&#39;ve seen by now, but today is WordPress&#39; 20th birthday! Thank you to <a href=\"https://twitter.com/photomatt?ref_src=twsrc%5Etfw\">@photomatt</a> and <a href=\"https://twitter.com/mikelittlezed1?ref_src=twsrc%5Etfw\">@mikelittlezed1</a> for following through with a seemingly wild idea. I don&#39;t think anyone could have predicted we&#39;d end up where we are today. Happy birthday <a href=\"https://twitter.com/WordPress?ref_src=twsrc%5Etfw\">@WordPress</a>! <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f389.png\" alt=\"🎉\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f973.png\" alt=\"🥳\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://t.co/tAZRlYThuS\">pic.twitter.com/tAZRlYThuS</a></p>&mdash; Jon Desrosiers (@desrosj) <a href=\"https://twitter.com/desrosj/status/1662616708064985088?ref_src=twsrc%5Etfw\">May 28, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"de\" dir=\"ltr\">Hier ist der Recap vom letzten Zürcher <a href=\"https://twitter.com/hashtag/WordPress?src=hash&amp;ref_src=twsrc%5Etfw\">#WordPress</a> <a href=\"https://twitter.com/hashtag/Meetup?src=hash&amp;ref_src=twsrc%5Etfw\">#Meetup</a> im <a href=\"https://twitter.com/westhive?ref_src=twsrc%5Etfw\">@westhive</a> inkl. Audioaufzeichnungen und Slides der Präsentationen, sowie ein paar visuellen Eindrücken des Abends. <a href=\"https://twitter.com/hashtag/BBQ?src=hash&amp;ref_src=twsrc%5Etfw\">#BBQ</a> <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://t.co/IycEcb4DQL\">https://t.co/IycEcb4DQL</a></p>&mdash; WordPress Zürich (@wpzurich) <a href=\"https://twitter.com/wpzurich/status/1674695261694701568?ref_src=twsrc%5Etfw\">June 30, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"qme\" dir=\"ltr\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f973.png\" alt=\"🥳\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f973.png\" alt=\"🥳\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f973.png\" alt=\"🥳\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><a href=\"https://twitter.com/hashtag/WCEU?src=hash&amp;ref_src=twsrc%5Etfw\">#WCEU</a> <a href=\"https://twitter.com/hashtag/WCEU2023?src=hash&amp;ref_src=twsrc%5Etfw\">#WCEU2023</a> <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://t.co/Uodqd2OotM\">pic.twitter.com/Uodqd2OotM</a></p>&mdash; Osom Studio WordPress &amp; WooCommerce Agency (@OSOM_STUDIO) <a href=\"https://twitter.com/OSOM_STUDIO/status/1667524236406145024?ref_src=twsrc%5Etfw\">June 10, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">Celebrating <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> at <a href=\"https://twitter.com/hashtag/WCEU?src=hash&amp;ref_src=twsrc%5Etfw\">#WCEU</a> with <a href=\"https://twitter.com/photomatt?ref_src=twsrc%5Etfw\">@photomatt</a> <a href=\"https://twitter.com/JosephaHaden?ref_src=twsrc%5Etfw\">@JosephaHaden</a> <a href=\"https://twitter.com/matias_ventura?ref_src=twsrc%5Etfw\">@matias_ventura</a> <a href=\"https://t.co/9LM9HnEfYn\">pic.twitter.com/9LM9HnEfYn</a></p>&mdash; Felix Arntz (@felixarntz) <a href=\"https://twitter.com/felixarntz/status/1667536517705736193?ref_src=twsrc%5Etfw\">June 10, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n</div>\n</div>\n\n\n\n<p>Want to see more tweets? <a href=\"https://wp20.wordpress.net/live/\">Check out the tweet wall here.</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Bits &amp; Bytes</h2>\n\n\n\n<ul>\n<li><a href=\"https://wp20.wordpress.net\">Official website for WP20</a></li>\n\n\n\n<li>The #WP20 hashtag was used at least 18,000 times between March 1 and June 8, 2023 on social peaking on May 27 with at least 2,700+ metions</li>\n\n\n\n<li>165+ meetups took place to celebrate WP20</li>\n\n\n\n<li>At least 4,661 people attended a meetup across six continents</li>\n\n\n\n<li>100+ kits of swag were shipped to meetup organizers</li>\n</ul>\n\n\n\n<p>Want more social media for WordPress? Check out the official accounts here:</p>\n\n\n\n<ul>\n<li><a href=\"https://twitter.com/WordPress\">Twitter</a></li>\n\n\n\n<li><a href=\"https://www.instagram.com/wordpress/\">Instagram</a></li>\n\n\n\n<li><a href=\"https://www.facebook.com/WordPress/\">Facebook</a></li>\n\n\n\n<li><a href=\"https://www.linkedin.com/company/wordpress\">LinkedIn</a></li>\n\n\n\n<li><a href=\"https://www.youtube.com/wordpress\">YouTube</a></li>\n\n\n\n<li><a href=\"https://www.pinterest.com/WordPress/\">Pinterest</a></li>\n\n\n\n<li><a href=\"https://www.tumblr.com/wordpress\">Tumblr</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Snapshots from WP20 Celebrations</h2>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-4 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" fetchpriority=\"high\" width=\"1024\" height=\"768\" data-id=\"15527\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Fz4aD6_XwAICdz-.jpeg?resize=1024%2C768&#038;ssl=1\" alt=\"\" class=\"wp-image-15527\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Fz4aD6_XwAICdz-.jpeg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/Fz4aD6_XwAICdz-.jpeg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/Fz4aD6_XwAICdz-.jpeg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/Fz4aD6_XwAICdz-.jpeg?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"769\" height=\"1024\" data-id=\"15518\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxhuvvbacaagn6c.webp?resize=769%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15518\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxhuvvbacaagn6c.webp?resize=769%2C1024&amp;ssl=1 769w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxhuvvbacaagn6c.webp?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxhuvvbacaagn6c.webp?resize=768%2C1023&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxhuvvbacaagn6c.webp?resize=1154%2C1536&amp;ssl=1 1154w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxhuvvbacaagn6c.webp?w=1538&amp;ssl=1 1538w\" sizes=\"(max-width: 769px) 100vw, 769px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"768\" height=\"1024\" data-id=\"15523\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxhspnlaqainz1f.webp?resize=768%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15523\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxhspnlaqainz1f.webp?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxhspnlaqainz1f.webp?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxhspnlaqainz1f.webp?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxhspnlaqainz1f.webp?w=1536&amp;ssl=1 1536w\" sizes=\"(max-width: 768px) 100vw, 768px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"768\" data-id=\"15516\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxjpa3oamaaetri.webp?resize=1024%2C768&#038;ssl=1\" alt=\"\" class=\"wp-image-15516\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxjpa3oamaaetri.webp?w=1024&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxjpa3oamaaetri.webp?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxjpa3oamaaetri.webp?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"828\" height=\"1024\" data-id=\"15517\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxjparaaqaa1iji.webp?resize=828%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15517\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxjparaaqaa1iji.webp?w=828&amp;ssl=1 828w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxjparaaqaa1iji.webp?resize=243%2C300&amp;ssl=1 243w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxjparaaqaa1iji.webp?resize=768%2C950&amp;ssl=1 768w\" sizes=\"(max-width: 828px) 100vw, 828px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"768\" data-id=\"15522\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxj2btqaaaakewo.webp?resize=1024%2C768&#038;ssl=1\" alt=\"\" class=\"wp-image-15522\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxj2btqaaaakewo.webp?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxj2btqaaaakewo.webp?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxj2btqaaaakewo.webp?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxj2btqaaaakewo.webp?resize=1536%2C1152&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxj2btqaaaakewo.webp?w=2048&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"768\" height=\"1024\" data-id=\"15524\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxkqdpmxwaa9zvr.webp?resize=768%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15524\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxkqdpmxwaa9zvr-scaled.webp?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkqdpmxwaa9zvr-scaled.webp?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkqdpmxwaa9zvr-scaled.webp?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkqdpmxwaa9zvr-scaled.webp?resize=1536%2C2048&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkqdpmxwaa9zvr-scaled.webp?w=1920&amp;ssl=1 1920w\" sizes=\"(max-width: 768px) 100vw, 768px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"768\" data-id=\"15519\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwyami0ja.webp?resize=1024%2C768&#038;ssl=1\" alt=\"\" class=\"wp-image-15519\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwyami0ja.webp?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwyami0ja.webp?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwyami0ja.webp?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwyami0ja.webp?w=1280&amp;ssl=1 1280w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"941\" data-id=\"15525\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwcaativc.webp?resize=1024%2C941&#038;ssl=1\" alt=\"\" class=\"wp-image-15525\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwcaativc.webp?resize=1024%2C941&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwcaativc.webp?resize=300%2C276&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwcaativc.webp?resize=768%2C706&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwcaativc.webp?resize=1536%2C1411&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwcaativc.webp?w=2047&amp;ssl=1 2047w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"768\" data-id=\"15520\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxoi01sxgamyqi7.webp?resize=1024%2C768&#038;ssl=1\" alt=\"\" class=\"wp-image-15520\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxoi01sxgamyqi7.webp?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxoi01sxgamyqi7.webp?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxoi01sxgamyqi7.webp?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxoi01sxgamyqi7.webp?w=1280&amp;ssl=1 1280w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"851\" data-id=\"15521\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxoukosaeaaa-sk.webp?resize=1024%2C851&#038;ssl=1\" alt=\"\" class=\"wp-image-15521\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxoukosaeaaa-sk.webp?resize=1024%2C851&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxoukosaeaaa-sk.webp?resize=300%2C249&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxoukosaeaaa-sk.webp?resize=768%2C638&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxoukosaeaaa-sk.webp?resize=1536%2C1276&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxoukosaeaaa-sk.webp?w=2048&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"769\" data-id=\"15526\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxm7nexxsaa5vec.webp?resize=1024%2C769&#038;ssl=1\" alt=\"\" class=\"wp-image-15526\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxm7nexxsaa5vec-scaled.webp?resize=1024%2C769&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxm7nexxsaa5vec-scaled.webp?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxm7nexxsaa5vec-scaled.webp?resize=768%2C577&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxm7nexxsaa5vec-scaled.webp?resize=1536%2C1154&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxm7nexxsaa5vec-scaled.webp?resize=2048%2C1538&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n</figure>\n\n\n\n<h2 class=\"wp-block-heading\">Props</h2>\n\n\n\n<p>WP20 celebrations, swag, websites, social media, graphics, and so much more could not have happened without the wonderful contributions of so many. Beyond the organizers of the 165+ events, there were many people working behind the scenes to ensure WordPress got the recognition it deserved. Thank you to everyone who worked behind the scenes to organize the meetups, create swag, and to spread the word. Some of these hardworking folks include: <a href=\"https://profiles.wordpress.org/nomadskateboarding/\">Mark Andrew</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/tinobarreiro/\">Tino Barreiro</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloe Bringmann</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a>, <a href=\"https://profiles.wordpress.org/mysweetcate/\">Cate DeRosia</a>, <a href=\"https://profiles.wordpress.org/triforcepower/\">Em DeRosia</a>, <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a>, <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a>, <a href=\"https://profiles.wordpress.org/ngreennc/\">Nyasha Green</a>, <a href=\"https://profiles.wordpress.org/nickhamze/\">Nick Hamze</a>, <a href=\"https://profiles.wordpress.org/meaganhanes/\">Meagan Hanes</a>, <a href=\"https://profiles.wordpress.org/kellychoffman/\">Kelly Hoffman</a>, <a href=\"https://profiles.wordpress.org/pablohoneyhoney/\">Pablo Honey</a>, <a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a>, <a href=\"https://profiles.wordpress.org/markoserb/\">Marko Ivanovic</a>, <a href=\"https://profiles.wordpress.org/angelasjin/\">Angela Jin</a>, Winston Koone, Megan Marcel, <a href=\"https://profiles.wordpress.org/ninianepress/\">Jenni McKinnon</a>, <a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a>, <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a>, <a href=\"https://profiles.wordpress.org/sereedmedia/\">Se Reed</a>, <a href=\"https://profiles.wordpress.org/laurlittle/\">Lauren Stein</a>, <a href=\"https://profiles.wordpress.org/fcoveram/\">Francisco Vera</a>, Andrew Wikel, and <a href=\"https://profiles.wordpress.org/adamwood/\">Adam Wood</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Some More Fun</h2>\n\n\n\n<p>A WordPress event is not complete without a Wapuu, and not only was there one, but there was a whole campaign to color it in! Thanks to <a href=\"https://profiles.wordpress.org/triforcepower/\">Em DeRosia</a> for creating the commemorative Wapuu!</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-6 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"737\" height=\"1024\" data-id=\"15532\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Fs33fvqWcAAKRbx.png?resize=737%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15532\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Fs33fvqWcAAKRbx.png?resize=737%2C1024&amp;ssl=1 737w, https://i0.wp.com/wordpress.org/news/files/2023/07/Fs33fvqWcAAKRbx.png?resize=216%2C300&amp;ssl=1 216w, https://i0.wp.com/wordpress.org/news/files/2023/07/Fs33fvqWcAAKRbx.png?resize=768%2C1067&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/Fs33fvqWcAAKRbx.png?w=864&amp;ssl=1 864w\" sizes=\"(max-width: 737px) 100vw, 737px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"737\" height=\"1024\" data-id=\"15528\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FrU8oOFaQAEZLPY.jpeg?resize=737%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15528\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FrU8oOFaQAEZLPY.jpeg?resize=737%2C1024&amp;ssl=1 737w, https://i0.wp.com/wordpress.org/news/files/2023/07/FrU8oOFaQAEZLPY.jpeg?resize=216%2C300&amp;ssl=1 216w, https://i0.wp.com/wordpress.org/news/files/2023/07/FrU8oOFaQAEZLPY.jpeg?resize=768%2C1067&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/FrU8oOFaQAEZLPY.jpeg?w=864&amp;ssl=1 864w\" sizes=\"(max-width: 737px) 100vw, 737px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"722\" height=\"956\" data-id=\"15531\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Ft8DCn9WcA08xYZ.jpeg?resize=722%2C956&#038;ssl=1\" alt=\"\" class=\"wp-image-15531\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Ft8DCn9WcA08xYZ.jpeg?w=722&amp;ssl=1 722w, https://i0.wp.com/wordpress.org/news/files/2023/07/Ft8DCn9WcA08xYZ.jpeg?resize=227%2C300&amp;ssl=1 227w\" sizes=\"(max-width: 722px) 100vw, 722px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"832\" height=\"1024\" data-id=\"15534\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FtyXUDZXgAA1G1K.jpeg?resize=832%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15534\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FtyXUDZXgAA1G1K.jpeg?resize=832%2C1024&amp;ssl=1 832w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtyXUDZXgAA1G1K.jpeg?resize=244%2C300&amp;ssl=1 244w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtyXUDZXgAA1G1K.jpeg?resize=768%2C945&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtyXUDZXgAA1G1K.jpeg?w=975&amp;ssl=1 975w\" sizes=\"(max-width: 832px) 100vw, 832px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"819\" height=\"1024\" data-id=\"15533\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FuvXFqHWAAY7Yob.jpeg?resize=819%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15533\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FuvXFqHWAAY7Yob.jpeg?resize=819%2C1024&amp;ssl=1 819w, https://i0.wp.com/wordpress.org/news/files/2023/07/FuvXFqHWAAY7Yob.jpeg?resize=240%2C300&amp;ssl=1 240w, https://i0.wp.com/wordpress.org/news/files/2023/07/FuvXFqHWAAY7Yob.jpeg?resize=768%2C960&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/FuvXFqHWAAY7Yob.jpeg?w=960&amp;ssl=1 960w\" sizes=\"(max-width: 819px) 100vw, 819px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"829\" data-id=\"15530\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FxHdOAdXwAE_4w9.jpeg?resize=1024%2C829&#038;ssl=1\" alt=\"\" class=\"wp-image-15530\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FxHdOAdXwAE_4w9.jpeg?resize=1024%2C829&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/FxHdOAdXwAE_4w9.jpeg?resize=300%2C243&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/FxHdOAdXwAE_4w9.jpeg?resize=768%2C622&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/FxHdOAdXwAE_4w9.jpeg?w=1121&amp;ssl=1 1121w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"712\" data-id=\"15535\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FtsDGoiaUAA91ug.jpeg?resize=1024%2C712&#038;ssl=1\" alt=\"\" class=\"wp-image-15535\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FtsDGoiaUAA91ug.jpeg?resize=1024%2C712&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtsDGoiaUAA91ug.jpeg?resize=300%2C209&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtsDGoiaUAA91ug.jpeg?resize=768%2C534&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtsDGoiaUAA91ug.jpeg?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"709\" height=\"1024\" data-id=\"15536\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FtxoedaacAYaIeq.jpeg?resize=709%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15536\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FtxoedaacAYaIeq.jpeg?resize=709%2C1024&amp;ssl=1 709w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtxoedaacAYaIeq.jpeg?resize=208%2C300&amp;ssl=1 208w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtxoedaacAYaIeq.jpeg?resize=768%2C1109&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtxoedaacAYaIeq.jpeg?w=831&amp;ssl=1 831w\" sizes=\"(max-width: 709px) 100vw, 709px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"737\" height=\"1024\" data-id=\"15529\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FxIvqkGWIAEPKt8.jpeg?resize=737%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15529\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FxIvqkGWIAEPKt8.jpeg?resize=737%2C1024&amp;ssl=1 737w, https://i0.wp.com/wordpress.org/news/files/2023/07/FxIvqkGWIAEPKt8.jpeg?resize=216%2C300&amp;ssl=1 216w, https://i0.wp.com/wordpress.org/news/files/2023/07/FxIvqkGWIAEPKt8.jpeg?resize=768%2C1066&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/FxIvqkGWIAEPKt8.jpeg?w=970&amp;ssl=1 970w\" sizes=\"(max-width: 737px) 100vw, 737px\" data-recalc-dims=\"1\" /></figure>\n</figure>\n\n\n\n<p>The Marketing team ran an interactive campaign, <a href=\"https://make.wordpress.org/marketing/2023/05/02/20-days-to-celebrate-20-years-of-wordpress-from-blogs-to-blocks/\"><em>From Blogs to Blocks</em></a>, a series of prompts across 20 days for WordPress enthusiasts to celebrate all-things WordPress.</p>\n\n\n\n<p>Additional campaigns took place on social media and included prompting folks to share their favorite WordPress memory and most cherished WordPress swag item, to highlight the 21 contributing teams, and even to share a birthday greeting.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">My fav <a href=\"https://twitter.com/hashtag/WordPress?src=hash&amp;ref_src=twsrc%5Etfw\">#WordPress</a> swag, which I use daily! This was the speaker swag from <a href=\"https://twitter.com/hashtag/WCBos?src=hash&amp;ref_src=twsrc%5Etfw\">#WCBos</a> 2019. <a href=\"https://twitter.com/melchoyce?ref_src=twsrc%5Etfw\">@melchoyce</a>, I think you designed this stunning logo? <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://t.co/1sEIEMGzM9\">https://t.co/1sEIEMGzM9</a> <a href=\"https://t.co/F0ufF9msqP\">pic.twitter.com/F0ufF9msqP</a></p>&mdash; Angela Jin (@AngelaSJin) <a href=\"https://twitter.com/AngelaSJin/status/1650832707683864578?ref_src=twsrc%5Etfw\">April 25, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<p>We had lots of digital goodies too! From 3D desktop wallpaper, to selfie-props for the celebrations, and more. <a href=\"https://wp20.wordpress.net/swag/\">You can download them here</a>.</p>\n\n\n\n<div class=\"wp-block-jetpack-tiled-gallery aligncenter is-style-rectangular\"><div class=\"tiled-gallery__gallery\"><div class=\"tiled-gallery__row\"><div class=\"tiled-gallery__col\" style=\"flex-basis:37.05595%\"><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-selfie-glasses-1024x576.png?strip=info&#038;w=600&#038;ssl=1 600w,https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-selfie-glasses-1024x576.png?strip=info&#038;w=900&#038;ssl=1 900w,https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-selfie-glasses-1024x576.png?strip=info&#038;w=1200&#038;ssl=1 1200w,https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-selfie-glasses-1024x576.png?strip=info&#038;w=1500&#038;ssl=1 1500w,https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-selfie-glasses-1024x576.png?strip=info&#038;w=1600&#038;ssl=1 1600w\" alt=\"\" data-height=\"900\" data-id=\"15830\" data-link=\"https://wordpress.org/news/?attachment_id=15830\" data-url=\"https://wordpress.org/news/files/2023/08/wp20-selfie-glasses-1024x576.png\" data-width=\"1600\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-selfie-glasses-1024x576.png?ssl=1\" data-amp-layout=\"responsive\" /></figure><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-celebrate-desktop.jpg?strip=info&#038;w=600&#038;ssl=1 600w,https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-celebrate-desktop.jpg?strip=info&#038;w=825&#038;ssl=1 825w\" alt=\"\" data-height=\"600\" data-id=\"15829\" data-link=\"https://wordpress.org/news/?attachment_id=15829\" data-url=\"https://wordpress.org/news/files/2023/08/wp20-celebrate-desktop.jpg\" data-width=\"825\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-celebrate-desktop.jpg?ssl=1\" data-amp-layout=\"responsive\" /></figure></div><div class=\"tiled-gallery__col\" style=\"flex-basis:62.94405%\"><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2023/08/wp20-logo-blueberry3x-1024x783.png?strip=info&#038;w=600&#038;ssl=1 600w,https://i1.wp.com/wordpress.org/news/files/2023/08/wp20-logo-blueberry3x-1024x783.png?strip=info&#038;w=900&#038;ssl=1 900w,https://i1.wp.com/wordpress.org/news/files/2023/08/wp20-logo-blueberry3x-1024x783.png?strip=info&#038;w=1200&#038;ssl=1 1200w,https://i1.wp.com/wordpress.org/news/files/2023/08/wp20-logo-blueberry3x-1024x783.png?strip=info&#038;w=1490&#038;ssl=1 1490w\" alt=\"WP20\" data-height=\"1140\" data-id=\"15854\" data-link=\"https://wordpress.org/news/?attachment_id=15854\" data-url=\"https://wordpress.org/news/files/2023/08/wp20-logo-blueberry3x-1024x783.png\" data-width=\"1490\" src=\"https://i1.wp.com/wordpress.org/news/files/2023/08/wp20-logo-blueberry3x-1024x783.png?ssl=1\" data-amp-layout=\"responsive\" /></figure></div></div></div></div>\n\n\n\n<h2 class=\"wp-block-heading\">Got Swag? Need Swag?</h2>\n\n\n\n<p>It&#8217;s not too late to order your WP20 commemorative items. <a href=\"https://mercantile.wordpress.org/product-category/wp20/\">Find shirts, stickers, and more, while supplies last</a>!</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>See you in five years for the 25th!</strong></h2>\n\n\n\n<p>Sign up here to stay in the &#8220;know&#8221;!</p>\n\n\n	<div class=\"wp-block-jetpack-subscriptions__supports-newline wp-block-jetpack-subscriptions\">\n		<div class=\"jetpack_subscription_widget\">\n			<div class=\"wp-block-jetpack-subscriptions__container\">\n				<form\n					action=\"#\"\n					method=\"post\"\n					accept-charset=\"utf-8\"\n					data-blog=\"14607090\"\n					data-post_access_level=\"everybody\"\n					id=\"subscribe-blog-1\"\n				>\n					<p id=\"subscribe-email\">\n						<label id=\"jetpack-subscribe-label\"\n							class=\"screen-reader-text\"\n							for=\"subscribe-field-1\">\n							Type your email…						</label>\n						<input type=\"email\" name=\"email\" required=\"required\"\n															class=\"no-border-radius  required\"\n																						style=\"font-size: 16px;padding: 15px 23px 15px 23px;border-radius: 0px;border-width: 1px;\"\n														value=\"\"\n							id=\"subscribe-field-1\"\n							placeholder=\"Type your email…\"\n						/>\n					</p>\n\n					<p id=\"subscribe-submit\"\n											>\n						<input type=\"hidden\" name=\"action\" value=\"subscribe\"/>\n						<input type=\"hidden\" name=\"blog_id\" value=\"14607090\"/>\n						<input type=\"hidden\" name=\"source\" value=\"https://wordpress.org/news/feed/\"/>\n						<input type=\"hidden\" name=\"sub-type\" value=\"subscribe-block\"/>\n						<input type=\"hidden\" name=\"redirect_fragment\" value=\"subscribe-blog-1\"/>\n												<button type=\"submit\"\n															class=\"wp-block-button__link no-border-radius\"\n																						style=\"font-size: 16px;padding: 15px 23px 15px 23px;margin: 0px; margin-left: 10px;border-radius: 0px;border-width: 1px;\"\n														name=\"jetpack_subscriptions_widget\"\n						>\n							Subscribe						</button>\n					</p>\n				</form>\n\n							</div>\n		</div>\n	</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:\"15471\";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:66:\"\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:26:\"WordPress 6.3 “Lionel”\";s:7:\"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://wordpress.org/news/2023/08/lionel/\";s: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, 08 Aug 2023 20:03: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:4:{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:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;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=15718\";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:196:\"WordPress 6.3 \"Lionel\" is here! Named after Lionel Hampton, the prolific jazz musician and bandleader, this release was made possible by over 650 contributors. Download WordPress 6.3 Lionel today.\";s: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:\"Matias Ventura\";s: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:71350:\"\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/2023/08/6.3-Release-Edition-Main-Image.png?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-15794\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=2048%2C1365&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?w=3000&amp;ssl=1 3000w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Say hello to WordPress 6.3 “Lionel,” named after <a href=\"https://en.wikipedia.org/wiki/Lionel_Hampton\">Lionel Hampton</a>, the celebrated American jazz artist. A prolific jazz vibraphonist, pianist, and percussionist, Hampton gained notoriety working in harmony with greats from <a href=\"https://en.wikipedia.org/wiki/Charles_Mingus\">Charles Mingus</a> to <a href=\"https://en.wikipedia.org/wiki/Quincy_Jones\">Quincy Jones</a> and as bandleader of the eponymous Lionel Hampton Orchestra. His artistry and charitable work have been recognized with a Grammy, a star on the Hollywood Walk of Fame, and the National Medal of Arts.</p>\n\n\n\n<p>Be sure to turn up the volume of the <a href=\"https://www.youtube.com/channel/UCpfWWFslWSapwL_q16AboSg/featured\">musical stylings</a> of Lionel Hampton as you discover all “Lionel” has to offer.</p>\n\n\n\n<p>With “Lionel” you can create beautiful and compelling websites more efficiently than ever. Whether you want to build an entire site without coding or are a developer looking to customize every detail, WordPress 6.3 has something to pique your interest. As you unpack and explore this latest release, you will discover updated functions and navigation designed to help you work and create with less effort, design tools that give you more control over layout, and added functionality enriching the site-building experience.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-large-font-size\">\n<p class=\"has-extra-large-font-size\">&#8220;Lionel&#8221; marks a major chapter in the evolution of WordPress as a tool for expression. It’s the culmination of years of work from hundreds of contributors, bringing a more powerful and cohesive editing experience for crafting websites with blocks. It continues the quest of making web publishing approachable for everyone—so it’s also just a new beginning!</p>\n<cite>Matías Ventura, WordPress 6.3 Release Lead</cite></blockquote>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wordpress.org/wordpress-6.3.zip\">Download WordPress 6.3 &#8220;Lionel&#8221; today</a></div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">What’s inside</h2>\n\n\n\n<p>This momentous release opens new possibilities for the creative expression of designers, creators, and builders. Powerful tools and refined controls give users confidence and allow them to easily manage their sites.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Do everything in the Site Editor</h3>\n\n\n\n<p>WordPress 6.3 brings your content, templates, and patterns together in the Site Editor for the first time. Add pages, browse style variations, create synced patterns, and enjoy fine-tuned control over navigation menus. Spend less time switching across different site areas—so you can focus on what matters most. Creation to completion, all in one place.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image titled: &quot;Do everything in the Site Editor&quot;\" class=\"wp-image-15808\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Do everything in the Site Editor</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Preview Block themes</h3>\n\n\n\n<p>Experience block themes before you switch and preview the Site Editor, with options to customize directly before committing to a new theme.&nbsp;</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image about previewing block themes titled Previewing Themes depicting &quot;Previewing: Organizer&quot;\" class=\"wp-image-15769\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Preview a new block theme before you switch and commit</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Create and sync patterns</h3>\n\n\n\n<p>Arrange blocks and save them to the ‘My Patterns’ section for use throughout your site. You can even specify whether to sync your patterns (previously referred to as “Reusable blocks”) so that one change applies to all parts of your site. Or, utilize patterns as a starting point with the ability to customize each instance.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image showing the new My Patterns section in the CMS.\" class=\"wp-image-15768\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>My patterns: All your patterns in one place</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Work faster with the Command Palette</h3>\n\n\n\n<p>Switch to a specific template or open your editor preferences with a new tool that helps you quickly access expanded functionality. With simple keyboard shortcuts (⌘+k on Mac or Ctrl+k on Windows), clicking the sidebar search icon in Site View, or clicking the Title Bar, get where you need to go and do what you need to do in seconds.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image depicting the new Command Palette\" class=\"wp-image-15763\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Get to know the new Command Palette </em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Sharpen your designs with new tools</h3>\n\n\n\n<p>New design controls bring more versatility for fine-tuning, starting with the ability to customize your captions from the Styles interface without coding. You can manage your duotone filters in Styles for supported blocks and pick from the options provided by your theme or disable them entirely. The Cover block gets added settings for text color, layout controls, and border options, making this powerful block even more handy.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image representing the new design tools in the Site Editor\" class=\"wp-image-15764\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>New design tools</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Track design changes with Style revisions</h3>\n\n\n\n<p>With a new audit trail, you can now see how your site looked at a specific time. Visualize these revisions in a timeline and access a one-click option to restore prior styles.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image titled &quot;Style Revisions&quot;\" class=\"wp-image-15770\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Style revisions: See your style revision history </em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Annotate with the Footnotes block</h3>\n\n\n\n<p>Footnotes add convenient annotations throughout your content. Now you can add and link footnotes for any paragraph.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image depicting the new Footnotes Block\" class=\"wp-image-15766\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Add footnotes effortlessly with the new Footnotes Block</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Show or hide content with the Details block</h3>\n\n\n\n<p>Use the Details block to avoid spoiling a surprise, create an interactive Q&amp;A section, or hide a long paragraph under a heading.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image depicting the new Details Block\" class=\"wp-image-15765\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Display or hide content with the new Details Block</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Performance gets a boost</h3>\n\n\n\n<p>WordPress 6.3 has <a href=\"https://make.wordpress.org/core/2023/08/07/wordpress-6-3-performance-improvements/\">170+ performance updates</a>, including defer and async support for the Scripts API and fetchpriority support for images. These improvements, along with block template resolution, image lazy-loading, and the emoji loader, can dramatically improve your website’s perceived load time.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Accessibility remains a core focus</h3>\n\n\n\n<p>Incorporating more than 50 accessibility improvements across the platform, WordPress 6.3 is more accessible than ever. Improved labeling, optimized tab and arrow-key navigation, revised heading hierarchy, and new controls in the admin image editor allow those using assistive technologies to navigate more easily.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Other highlights</h3>\n\n\n\n<h4 class=\"wp-block-heading\">Set aspect ratio on images</h4>\n\n\n\n<p>Specify your aspect ratios and ensure design integrity, especially when using images in patterns.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Build your site distraction-free</h4>\n\n\n\n<p>Distraction-free designing is now available in the Site Editor.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Rediscover the Top Toolbar</h4>\n\n\n\n<p>A revamped Top Toolbar offers parent selectors for nested blocks, options when selecting multiple blocks, and an interface embedded into the title bar with new functionality in mind.</p>\n\n\n\n<h4 class=\"wp-block-heading\">List View improvements</h4>\n\n\n\n<p>Drag and drop to every content layer and delete any block you would like in the updated List View.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Build templates with Patterns</h4>\n\n\n\n<p>Create unique patterns to jumpstart template creation with a new modal enabling access to pattern selection.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Changes in PHP support</h4>\n\n\n\n<p>Support for PHP 5 is discontinued. The&nbsp;new minimum supported version&nbsp;of PHP is 7.0.0.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Failed update safeguards</h4>\n\n\n\n<p>WordPress will now auto-restore the previously installed version of plugins or themes if something goes wrong during a failed manual update.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\">Learn more about WordPress and 6.3</h2>\n\n\n\n<p>Explore <a href=\"https://learn.wordpress.org/tutorials/\">Learn WordPress</a> for quick how-to videos, <a href=\"https://learn.wordpress.org/social-learning/\">online workshops</a>, and other resources to level up your knowledge of the latest features in WordPress.&nbsp;</p>\n\n\n\n<p>Check out the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">WordPress 6.3 Field Guide</a> for detailed developer notes to help you build with WordPress and get the most out of the latest release. Read the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-3/\">6.3 release notes</a> for additional technical details about this release, including feature recaps, installation information, file changes, fixes, and updates.</p>\n\n\n\n<p>Read and subscribe to the <a href=\"https://developer.wordpress.org/news/\">Developer Blog</a> for even more helpful WordPress content.&nbsp;</p>\n\n\n\n<p>To accompany this release, a new <a href=\"https://wordpress.org/download/releases/6-3/\">web experience</a> has been created to provide a more visual way of getting acquainted with the many improvements and new features of WordPress 6.3. </p>\n\n\n\n<p>Seeing WordPress 6.3 in action doesn&#8217;t stop there! Be sure to watch this brief <a href=\"https://www.youtube.com/watch?v=6JhJcOLySLY\">overview video</a> to get a taste of the many things &#8220;Lionel&#8221; has to offer.</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/6JhJcOLySLY?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<h2 class=\"wp-block-heading\">WordPress is a global software platform</h2>\n\n\n\n<p><a href=\"https://translate.wordpress.org/stats/\">61 locales have translated 90 percent</a> or more of WordPress 6.3 into their language. Community translators are working hard to ensure more translations are on their way. Thank you, gracias, ありがとう, धन्यवाद, and ευχαριστώ to everyone who helps to make WordPress available in 200 languages.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"Contributing-to-WordPress\">Contributing to WordPress</h2>\n\n\n\n<p>WordPress believes in democratizing publishing and <a href=\"https://opensource.org/osd-annotated\">the freedoms that come with open source</a>. Supporting this idea is a large community of people collaborating to strengthen the software. A big thank you to everyone who makes WordPress.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-large-font-size\">\n<p class=\"has-extra-large-font-size\">Our community of contributors has always been what makes WordPress wonderful. You are what makes sure our project continues to thrive, and our software remains secure, usable, and impactful. Thank you so much for joining together to make the web (and the world) a better place!</p>\n<cite>Josepha Haden Chomphosy, Executive Director, WordPress.org</cite></blockquote>\n\n\n\n<p>WordPress 6.3 arrives thanks to more than 650 contributors&#8217; collective passion and effort in at least 52 countries. This release also includes over 205 first-time contributors!&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">The 6.3 release squad</h3>\n\n\n\n<p>The 6.3 release was led from start to launch by an active set of contributors from across many disciplines. Over several weeks, they kept the release on track and moving forward by connecting ideas, resolving issues, and removing roadblocks.</p>\n\n\n\n<ul>\n<li>Release Lead: <a href=\"https://profiles.wordpress.org/matveb/\">Matías Ventura</a></li>\n\n\n\n<li>Release Coordinators: <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>, <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a></li>\n\n\n\n<li>Core Tech Leads: <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a></li>\n\n\n\n<li>Editor Tech Leads:&nbsp; <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon Dodd</a></li>\n\n\n\n<li>Core Triage Leads: <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Kabir Chaion</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Glecker</a></li>\n\n\n\n<li>Editor Triage Leads: <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/firoz2456/\">Firoz Sabaliya</a>, <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a></li>\n\n\n\n<li>Documentation Leads: <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a>, <a href=\"https://profiles.wordpress.org/stevenlinx/\">Steven Lin</a>, <a href=\"https://profiles.wordpress.org/leonnugraha/\">Leonardus Nugraha</a>, <a href=\"https://profiles.wordpress.org/611shabnam/\">Mushrit Shabnam</a></li>\n\n\n\n<li>Marketing &amp; Communications Leads: <a href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a>, <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a>, <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a></li>\n\n\n\n<li>Test Leads: <a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a>, <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a>, <a href=\"https://profiles.wordpress.org/chrismalone617/\">Chris Malone</a>, <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a></li>\n\n\n\n<li>Design Leads: <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a></li>\n\n\n\n<li>Performance Leads: <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/clarkeemily/\">Emily Clarke</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">6.3 contributors</h3>\n\n\n\n<p>Complimenting the release squad is a diverse group of contributors whose global collaboration delivered hundreds of enhancements and fixes, ensuring a stable release for all—a testament to the power and capability of the WordPress community.&nbsp;</p>\n\n\n\n<p class=\"is-style-wporg-props-long alignfull\"><a href=\"https://profiles.wordpress.org/zgrkaralar/\">&#214;zg&#252;r KARALAR</a> · <a href=\"https://profiles.wordpress.org/6adminit/\">6adminit</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/webcommsat/\">Abha Thakor</a> · <a href=\"https://profiles.wordpress.org/abhi3315/\">abhi3315</a> · <a href=\"https://profiles.wordpress.org/softwortech/\">Abhishek Sharma</a> · <a href=\"https://profiles.wordpress.org/ababir/\">Abir</a> · <a href=\"https://profiles.wordpress.org/abitofmind/\">abitofmind</a> · <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a> · <a href=\"https://profiles.wordpress.org/awarner20/\">Adam W. Warner</a> · <a href=\"https://profiles.wordpress.org/adarshposimyth/\">Adarsh Akshat</a> · <a href=\"https://profiles.wordpress.org/adeltahri/\">Adel Tahri</a> · <a href=\"https://profiles.wordpress.org/adi3890/\">Aditya Jain</a> · <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Chaion</a> · <a href=\"https://profiles.wordpress.org/ahsannayem/\">Ahsan Chowdhury</a> · <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a> · <a href=\"https://profiles.wordpress.org/akmelias/\">akmelias</a> · <a href=\"https://profiles.wordpress.org/wpfy/\">Akramul Hasan</a> · <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a> · <a href=\"https://profiles.wordpress.org/xavortm/\">Alex Dimitrov</a> · <a href=\"https://profiles.wordpress.org/cawa-93/\">Alex Kozack</a> · <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a> · <a href=\"https://profiles.wordpress.org/alexstine/\">Alex Stine</a> · <a href=\"https://profiles.wordpress.org/alexandrelara/\">Alexandre Lara</a> · <a href=\"https://profiles.wordpress.org/allancole/\">allancole</a> · <a href=\"https://profiles.wordpress.org/mrfoxtalbot/\">Alvaro G&#243;mez</a> · <a href=\"https://profiles.wordpress.org/alvitazwar052/\">Alvi Tazwar</a> · <a href=\"https://profiles.wordpress.org/akrocks/\">Amaan Khan</a> · <a href=\"https://profiles.wordpress.org/amansurov/\">amansurov</a> · <a href=\"https://profiles.wordpress.org/amin7/\">amin</a> · <a href=\"https://profiles.wordpress.org/sabreuse/\">Amy Hendrix (sabreuse)</a> · <a href=\"https://profiles.wordpress.org/anatoliyav/\">Anatoliy</a> · <a href=\"https://profiles.wordpress.org/anatolikkk/\">Anatoliy Dovgun</a> · <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a> · <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a> · <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</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/rarst/\">Andrey \"Rarst\" Savchenko</a> · <a href=\"https://profiles.wordpress.org/oandregal/\">André Maneiro</a> · <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a> · <a href=\"https://profiles.wordpress.org/andizer/\">Andy Meerwaldt</a> · <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a> · <a href=\"https://profiles.wordpress.org/anilvaza/\">Anil Vaza</a> · <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a> · <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a> · <a href=\"https://profiles.wordpress.org/reputeinfosystems/\">Ankur Chotai</a> · <a href=\"https://profiles.wordpress.org/annashopina/\">Anna</a> · <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> · <a href=\"https://profiles.wordpress.org/annebovelett/\">Anne-Mieke Bovelett</a> · <a href=\"https://profiles.wordpress.org/annziel/\">annziel</a> · <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a> · <a href=\"https://profiles.wordpress.org/atimmer/\">Anton Timmermans</a> · <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a> · <a href=\"https://profiles.wordpress.org/antonyagrios/\">Antony Agrios</a> · <a href=\"https://profiles.wordpress.org/anver/\">anver</a> · <a href=\"https://profiles.wordpress.org/anveshika/\">Anveshika Srivastava</a> · <a href=\"https://profiles.wordpress.org/arafatjamil01/\">Arafat Jamil</a> · <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a> · <a href=\"https://profiles.wordpress.org/artemiosans/\">Artemio Morales</a> · <a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a> · <a href=\"https://profiles.wordpress.org/ideag/\">Arunas Liuiza</a> · <a href=\"https://profiles.wordpress.org/iamasadpolash/\">Asad Polash</a> · <a href=\"https://profiles.wordpress.org/mrasharirfan/\">Ashar Irfan</a> · <a href=\"https://profiles.wordpress.org/ashikurwp/\">Ashikur Rahman</a> · <a href=\"https://profiles.wordpress.org/nant82/\">Atanas Antonov</a> · <a href=\"https://profiles.wordpress.org/aurooba/\">Aurooba Ahmed</a> · <a href=\"https://profiles.wordpress.org/filosofo/\">Austin Matzko</a> · <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a> · <a href=\"https://profiles.wordpress.org/azizantoun/\">azizantoun</a> · <a href=\"https://profiles.wordpress.org/aznadesign/\">Aznadesign</a> · <a href=\"https://profiles.wordpress.org/bangank36/\">bangank36</a> · <a href=\"https://profiles.wordpress.org/bartkalisz/\">bartkalisz</a> · <a href=\"https://profiles.wordpress.org/empireoflight/\">Ben Dunkle</a> · <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a> · <a href=\"https://profiles.wordpress.org/benlk/\">Ben Keith</a> · <a href=\"https://profiles.wordpress.org/benjgrolleau/\">Benjamin Grolleau</a> · <a href=\"https://profiles.wordpress.org/benjibee/\">benjibee</a> · <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernie Reiter</a> · <a href=\"https://profiles.wordpress.org/albatross10/\">Bhavik Kalpesh</a> · <a href=\"https://profiles.wordpress.org/bhrugesh12/\">Bhrugesh Bavishi</a> · <a href=\"https://profiles.wordpress.org/bijayyadav/\">Bijay Yadav</a> · <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a> · <a href=\"https://profiles.wordpress.org/bitnissen/\">bitnissen</a> · <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a> · <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a> · <a href=\"https://profiles.wordpress.org/bor0/\">Boro Sitnikovski</a> · <a href=\"https://profiles.wordpress.org/wpe_bdurette/\">Brandon DuRette</a> · <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a> · <a href=\"https://profiles.wordpress.org/bpayton/\">Brandon Payton</a> · <a href=\"https://profiles.wordpress.org/brasofilo/\">brasofilo</a> · <a href=\"https://profiles.wordpress.org/bgoewert/\">Brennan Goewert</a> · <a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a> · <a href=\"https://profiles.wordpress.org/bacoords/\">Brian Coords</a> · <a href=\"https://profiles.wordpress.org/fischfood/\">Brian Fischer</a> · <a href=\"https://profiles.wordpress.org/bgardner/\">Brian Gardner</a> · <a href=\"https://profiles.wordpress.org/bridgetwillard/\">Bridget Willard</a> · <a href=\"https://profiles.wordpress.org/bronsonquick/\">Bronson Quick</a> · <a href=\"https://profiles.wordpress.org/brookemk/\">Brooke</a> · <a href=\"https://profiles.wordpress.org/brookedot/\">Brooke.</a> · <a href=\"https://profiles.wordpress.org/caraffande/\">caraffande</a> · <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> · <a href=\"https://profiles.wordpress.org/carlosgprim/\">Carlos Garcia</a> · <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a> · <a href=\"https://profiles.wordpress.org/cathibosco1/\">Cathi Bosco</a> · <a href=\"https://profiles.wordpress.org/ceer/\">ceer</a> · <a href=\"https://profiles.wordpress.org/shireling/\">Chad Chadbourne</a> · <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a> · <a href=\"https://profiles.wordpress.org/chiragrathod103/\">Chirag Rathod</a> · <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloe Bringmann</a> · <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a> · <a href=\"https://profiles.wordpress.org/mrflannagan/\">Chris Flannagan</a> · <a href=\"https://profiles.wordpress.org/clubkert/\">Chris Lubkert</a> · <a href=\"https://profiles.wordpress.org/chrismalone617/\">Chris Malone</a> · <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a> · <a href=\"https://profiles.wordpress.org/apermo/\">Christoph Daum</a> · <a href=\"https://profiles.wordpress.org/ckoerner/\">ckoerner</a> · <a href=\"https://profiles.wordpress.org/codeamp/\">Code Amp</a> · <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a> · <a href=\"https://profiles.wordpress.org/corentingautier/\">corentingautier</a> · <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Robertson</a> · <a href=\"https://profiles.wordpress.org/crixu/\">Crixu</a> · <a href=\"https://profiles.wordpress.org/crs1138/\">crs1138</a> · <a href=\"https://profiles.wordpress.org/crstauf/\">crstauf</a> · <a href=\"https://profiles.wordpress.org/cshark/\">cshark</a> · <a href=\"https://profiles.wordpress.org/daisyo/\">Daisy Olsen</a> · <a href=\"https://profiles.wordpress.org/dbernar1/\">Dan Bernardic</a> · <a href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a> · <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a> · <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a> · <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a> · <a href=\"https://profiles.wordpress.org/danyk4/\">danyk4</a> · <a href=\"https://profiles.wordpress.org/darerodz/\">darerodz</a> · <a href=\"https://profiles.wordpress.org/darshitrajyaguru97/\">Darshit Rajyaguru</a> · <a href=\"https://profiles.wordpress.org/drw158/\">Dave Whitley</a> · <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a> · <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a> · <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a> · <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a> · <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a> · <a href=\"https://profiles.wordpress.org/davidmusnik/\">davidmusnik</a> · <a href=\"https://profiles.wordpress.org/davidwebca/\">davidwebca</a> · <a href=\"https://profiles.wordpress.org/dsas/\">Dean Sas</a> · <a href=\"https://profiles.wordpress.org/deepakvijayan/\">Deepak Vijayan</a> · <a href=\"https://profiles.wordpress.org/denis-de-bernardy/\">Denis de Bernardy</a> · <a href=\"https://profiles.wordpress.org/dingo_d/\">Denis Žoljom</a> · <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a> · <a href=\"https://profiles.wordpress.org/dennysdionigi/\">Dennys Dionigi</a> · <a href=\"https://profiles.wordpress.org/densityapps/\">densityapps</a> · <a href=\"https://profiles.wordpress.org/sccr410/\">Derek Ashauer</a> · <a href=\"https://profiles.wordpress.org/derekblank/\">Derek Blank</a> · <a href=\"https://profiles.wordpress.org/shagors/\">devshagor</a> · <a href=\"https://profiles.wordpress.org/dharm1025/\">Dharmesh Patel</a> · <a href=\"https://profiles.wordpress.org/dhrumilk/\">Dhrumil Kumbhani</a> · <a href=\"https://profiles.wordpress.org/dhruvishah2203/\">Dhruvi Shah</a> · <a href=\"https://profiles.wordpress.org/digtek/\">DigTek</a> · <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a> · <a href=\"https://profiles.wordpress.org/dimijazz/\">dimijazz</a> · <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a> · <a href=\"https://profiles.wordpress.org/doems/\">doems</a> · <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a> · <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a> · <a href=\"https://profiles.wordpress.org/dsar/\">dsar</a> · <a href=\"https://profiles.wordpress.org/dustyreagan/\">dustyreagan</a> · <a href=\"https://profiles.wordpress.org/ebai4/\">ebai4</a> · <a href=\"https://profiles.wordpress.org/ecorica/\">ecorica</a> · <a href=\"https://profiles.wordpress.org/beckej/\">Ed Beck</a> · <a href=\"https://profiles.wordpress.org/eduwass/\">eduwass</a> · <a href=\"https://profiles.wordpress.org/wpnook/\">Edward</a> · <a href=\"https://profiles.wordpress.org/worldomonation/\">Edwin Takahashi</a> · <a href=\"https://profiles.wordpress.org/ehsanakhgari/\">ehsanakhgari</a> · <a href=\"https://profiles.wordpress.org/ehtis/\">Ehtisham S.</a> · <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a> · <a href=\"https://profiles.wordpress.org/clarkeemily/\">Emily Clarke</a> · <a href=\"https://profiles.wordpress.org/emirpprime/\">emirpprime</a> · <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique S&#225;nchez</a> · <a href=\"https://profiles.wordpress.org/eric7186/\">eric.7186</a> · <a href=\"https://profiles.wordpress.org/kebbet/\">Erik Betshammar</a> · <a href=\"https://profiles.wordpress.org/ernest35/\">Ernest Behinov</a> · <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a> · <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian K&#228;gy</a> · <a href=\"https://profiles.wordpress.org/gaambo/\">Fabian Todt</a> · <a href=\"https://profiles.wordpress.org/faisalahammad/\">Faisal Ahammad</a> · <a href=\"https://profiles.wordpress.org/falgunihdesai/\">Falguni Desai</a> · <a href=\"https://profiles.wordpress.org/iamfarhan09/\">Farhan Ahmed</a> · <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a> · <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a> · <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a> · <a href=\"https://profiles.wordpress.org/firoz2456/\">Firoz Sabaliya</a> · <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a> · <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a> · <a href=\"https://profiles.wordpress.org/frank-klein/\">Frank Klein</a> · <a href=\"https://profiles.wordpress.org/franrosa/\">franrosa</a> · <a href=\"https://profiles.wordpress.org/gaeldenysiak/\">gaeldenysiak</a> · <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a> · <a href=\"https://profiles.wordpress.org/ecgan/\">Gan (a11n)</a> · <a href=\"https://profiles.wordpress.org/voldemortensen/\">Garth Mortensen</a> · <a href=\"https://profiles.wordpress.org/garyc40/\">Gary Cao</a> · <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a> · <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a> · <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a> · <a href=\"https://profiles.wordpress.org/wtower/\">George</a> · <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a> · <a href=\"https://profiles.wordpress.org/geriux/\">Gerardo Pacheco</a> · <a href=\"https://profiles.wordpress.org/gilles66/\">gilles66</a> · <a href=\"https://profiles.wordpress.org/mokagio/\">Gio Lodi</a> · <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a> · <a href=\"https://profiles.wordpress.org/grandslambert/\">GrandSlambert</a> · <a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a> · <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Zi&#243;łkowski</a> · <a href=\"https://profiles.wordpress.org/gudmdharalds/\">Gudmundur Haraldsson</a> · <a href=\"https://profiles.wordpress.org/guillaumeturpin/\">Guillaume TURPIN</a> · <a href=\"https://profiles.wordpress.org/gvgvgvijayan/\">gvgvgvijayan</a> · <a href=\"https://profiles.wordpress.org/hrdelwar/\">Habibur Rahman Delwar</a> · <a href=\"https://profiles.wordpress.org/hztyfoon/\">Hanzala Taifun</a> · <a href=\"https://profiles.wordpress.org/thakkarhardik/\">Hardik Thakkar</a> · <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh S</a> · <a href=\"https://profiles.wordpress.org/haritpanchal/\">Harit Panchal</a> · <a href=\"https://profiles.wordpress.org/harshgajipara/\">Harsh Gajipara</a> · <a href=\"https://profiles.wordpress.org/hasanmisbah/\">Hasan Misbah</a> · <a href=\"https://profiles.wordpress.org/hasanuzzamanshamim/\">Hasanuzzaman</a> · <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a> · <a href=\"https://profiles.wordpress.org/heiko_mamerow/\">Heiko Mamerow</a> · <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a> · <a href=\"https://profiles.wordpress.org/helgatheviking/\">HelgaTheViking</a> · <a href=\"https://profiles.wordpress.org/luehrsen/\">Hendrik Luehrsen</a> · <a href=\"https://profiles.wordpress.org/hilayt24/\">Hilay Trivedi</a> · <a href=\"https://profiles.wordpress.org/panchalhimani711/\">Himani Panchal</a> · <a href=\"https://profiles.wordpress.org/hbhalodia/\">Hit Bhalodia</a> · <a href=\"https://profiles.wordpress.org/hrrarya/\">Hridoy Mozumder</a> · <a href=\"https://profiles.wordpress.org/hugobaeta/\">Hugo Baeta</a> · <a href=\"https://profiles.wordpress.org/hugod/\">hugod</a> · <a href=\"https://profiles.wordpress.org/hberberoglu/\">Huseyin Berberoglu</a> · <a href=\"https://profiles.wordpress.org/huzaifaalmesbah/\">Huzaifa Al Mesbah</a> · <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a> · <a href=\"https://profiles.wordpress.org/polevaultweb/\">Iain Poulson</a> · <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a> · <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a> · <a href=\"https://profiles.wordpress.org/ibrahimmonir/\">Ibrahim Khalil</a> · <a href=\"https://profiles.wordpress.org/shuvoaftab/\">Ibrahim Sharif</a> · <a href=\"https://profiles.wordpress.org/ignatggeorgiev/\">Ignat Georgiev</a> · <a href=\"https://profiles.wordpress.org/imanish003/\">imanish003</a> · <a href=\"https://profiles.wordpress.org/intoxination/\">intoxination</a> · <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a> · <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a> · <a href=\"https://profiles.wordpress.org/jacknotman/\">jacknotman</a> · <a href=\"https://profiles.wordpress.org/jahidcse/\">Jahid Hasan</a> · <a href=\"https://profiles.wordpress.org/jakariaistauk/\">Jakaria Istauk</a> · <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a> · <a href=\"https://profiles.wordpress.org/james-roberts/\">James Roberts</a> · <a href=\"https://profiles.wordpress.org/james0r/\">james0r</a> · <a href=\"https://profiles.wordpress.org/janboddez/\">Jan Boddez</a> · <a href=\"https://profiles.wordpress.org/jane/\">jane</a> · <a href=\"https://profiles.wordpress.org/jankyz/\">jankyz</a> · <a href=\"https://profiles.wordpress.org/janpaulkleijn/\">janpaulkleijn</a> · <a href=\"https://profiles.wordpress.org/jsnajdr/\">Jarda Snajdr</a> · <a href=\"https://profiles.wordpress.org/pbking/\">Jason Crist</a> · <a href=\"https://profiles.wordpress.org/jsnjohnston/\">Jason Johnston</a> · <a href=\"https://profiles.wordpress.org/madtownlems/\">Jason LeMahieu (MadtownLems)</a> · <a href=\"https://profiles.wordpress.org/javiercasares/\">Javier Casares</a> · <a href=\"https://profiles.wordpress.org/jbcouton/\">jbcouton</a> · <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a> · <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a> · <a href=\"https://profiles.wordpress.org/jeffmora/\">jeffmora</a> · <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a> · <a href=\"https://profiles.wordpress.org/jenmylo/\">Jen</a> · <a href=\"https://profiles.wordpress.org/jenilk/\">Jenil Kanani</a> · <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a> · <a href=\"https://profiles.wordpress.org/jeroenrotty/\">Jeroen Rotty</a> · <a href=\"https://profiles.wordpress.org/jeryj/\">Jerry Jones</a> · <a href=\"https://profiles.wordpress.org/jhnstn/\">jhnstn</a> · <a href=\"https://profiles.wordpress.org/jigar-bhanushali/\">jigar bhanushali</a> · <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a> · <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a> · <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a> · <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a> · <a href=\"https://profiles.wordpress.org/bitmachina/\">John Hooks</a> · <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a> · <a href=\"https://profiles.wordpress.org/jomonthomaslobo1/\">Jomon Thomas Lobo</a> · <a href=\"https://profiles.wordpress.org/akbigdog/\">Jon Bourne</a> · <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> · <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a> · <a href=\"https://profiles.wordpress.org/n2erjo00/\">Joni Erkkil&#228;</a> · <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a> · <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a> · <a href=\"https://profiles.wordpress.org/jordesign/\">jordesign</a> · <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a> · <a href=\"https://profiles.wordpress.org/josklever/\">Jos Klever</a> · <a href=\"https://profiles.wordpress.org/josepmoran/\">Josep Mor&#225;n</a> · <a href=\"https://profiles.wordpress.org/dunhakdis/\">Joseph G.</a> · <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha</a> · <a href=\"https://profiles.wordpress.org/jhabdas/\">Josh Habdas</a> · <a href=\"https://profiles.wordpress.org/shelob9/\">Josh Pollock</a> · <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a> · <a href=\"https://profiles.wordpress.org/jqz/\">jqz</a> · <a href=\"https://profiles.wordpress.org/juanfra/\">Juan Aldasoro</a> · <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a> · <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a> · <a href=\"https://profiles.wordpress.org/juzar/\">Juzar</a> · <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a> · <a href=\"https://profiles.wordpress.org/kafleg/\">KafleG</a> · <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a> · <a href=\"https://profiles.wordpress.org/trepmal/\">Kailey (trepmal)</a> · <a href=\"https://profiles.wordpress.org/kajalgohel/\">Kajal Gohel</a> · <a href=\"https://profiles.wordpress.org/leprincenoir/\">Kantari Samy</a> · <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a> · <a href=\"https://profiles.wordpress.org/karolmanijak/\">Karol Manijak</a> · <a href=\"https://profiles.wordpress.org/thekt12/\">Karthik Thayyil</a> · <a href=\"https://profiles.wordpress.org/zoonini/\">Kathryn P.</a> · <a href=\"https://profiles.wordpress.org/kamplugins/\">Kausar Al Mamun</a> · <a href=\"https://profiles.wordpress.org/kausaralm/\">Kausar Alam</a> · <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/kenwins/\">kenwins</a> · <a href=\"https://profiles.wordpress.org/kevinb/\">Kevin Behrens</a> · <a href=\"https://profiles.wordpress.org/khoipro/\">Khoi Pro</a> · <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a> · <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a> · <a href=\"https://profiles.wordpress.org/koenschipper/\">koenschipper</a> · <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a> · <a href=\"https://profiles.wordpress.org/krishneup/\">Krishna Neupane</a> · <a href=\"https://profiles.wordpress.org/krunal265/\">Krunal Bhimajiyani</a> · <a href=\"https://profiles.wordpress.org/krupajnanda/\">Krupa Nanda</a> · <a href=\"https://profiles.wordpress.org/krupalpanchal/\">Krupal Panchal</a> · <a href=\"https://profiles.wordpress.org/kutsu/\">kutsu</a> · <a href=\"https://profiles.wordpress.org/kzeni/\">KZeni</a> · <a href=\"https://profiles.wordpress.org/leamcaleese/\">L&#233;a McAleese</a> · <a href=\"https://profiles.wordpress.org/lgadzhev/\">Lachezar Gadzhev</a> · <a href=\"https://profiles.wordpress.org/lanacodes/\">Lana Codes</a> · <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a> · <a href=\"https://profiles.wordpress.org/laurlittle/\">Lauren Stein</a> · <a href=\"https://profiles.wordpress.org/wplmillet/\">Laurent MILLET</a> · <a href=\"https://profiles.wordpress.org/laurentmagnin/\">laurentmagnin</a> · <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a> · <a href=\"https://profiles.wordpress.org/leonnugraha/\">Leonardus Nugraha</a> · <a href=\"https://profiles.wordpress.org/lessbloat/\">lessbloat</a> · <a href=\"https://profiles.wordpress.org/levdbas/\">Levdbas</a> · <a href=\"https://profiles.wordpress.org/wplindavantol/\">Linda van Tol</a> · <a href=\"https://profiles.wordpress.org/rudlinkon/\">Linkon Miyan</a> · <a href=\"https://profiles.wordpress.org/lowlydev/\">lowlydev</a> · <a href=\"https://profiles.wordpress.org/lphoumpakka/\">lphk</a> · <a href=\"https://profiles.wordpress.org/gigitux/\">Luigi</a> · <a href=\"https://profiles.wordpress.org/luisherranz/\">luisherranz</a> · <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a> · <a href=\"https://profiles.wordpress.org/madejackson/\">madejackson</a> · <a href=\"https://profiles.wordpress.org/madhudollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/mrdollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a> · <a href=\"https://profiles.wordpress.org/mehdi01/\">Mahdi Hasan</a> · <a href=\"https://profiles.wordpress.org/mahendra0029/\">Mahendra Bishnoi</a> · <a href=\"https://profiles.wordpress.org/nadimcse/\">Mahmudul Haque Nadim</a> · <a href=\"https://profiles.wordpress.org/mai21/\">Mai</a> · <a href=\"https://profiles.wordpress.org/majaloncar/\">Maja Loncar</a> · <a href=\"https://profiles.wordpress.org/malae/\">Malae</a> · <a href=\"https://profiles.wordpress.org/malavvasita/\">Malav Vasita</a> · <a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a> · <a href=\"https://profiles.wordpress.org/maniu/\">maniu</a> · <a href=\"https://profiles.wordpress.org/mdxfr/\">Marc</a> · <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">Marcelo de Moraes Serpa</a> · <a href=\"https://profiles.wordpress.org/marcguay/\">MarcGuay</a> · <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a> · <a href=\"https://profiles.wordpress.org/marekdedic/\">Marek Dědič</a> · <a href=\"https://profiles.wordpress.org/margolisj/\">margolisj</a> · <a href=\"https://profiles.wordpress.org/marianne38/\">marianne38</a> · <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a> · <a href=\"https://profiles.wordpress.org/marineevain/\">Marine EVAIN</a> · <a href=\"https://profiles.wordpress.org/santosguillamot/\">Mario Santos</a> · <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a> · <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a> · <a href=\"https://profiles.wordpress.org/markparnell/\">Mark Parnell</a> · <a href=\"https://profiles.wordpress.org/markdoliner/\">markdoliner</a> · <a href=\"https://profiles.wordpress.org/markoheijnen/\">Marko Heijnen</a> · <a href=\"https://profiles.wordpress.org/markoserb/\">Marko Ivanovic</a> · <a href=\"https://profiles.wordpress.org/flootr/\">Markus</a> · <a href=\"https://profiles.wordpress.org/mkox/\">Markus Kosmal</a> · <a href=\"https://profiles.wordpress.org/martinkrcho/\">martin.krcho</a> · <a href=\"https://profiles.wordpress.org/marybaum/\">marybaum</a> · <a href=\"https://profiles.wordpress.org/masteradhoc/\">masteradhoc</a> · <a href=\"https://profiles.wordpress.org/mastrup/\">mastrup</a> · <a href=\"https://profiles.wordpress.org/mat-lipe/\">Mat Lipe</a> · <a href=\"https://profiles.wordpress.org/mmaattiiaass/\">Matias Benedetto</a> · <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a> · <a href=\"https://profiles.wordpress.org/matmoe/\">matmoe</a> · <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> · <a href=\"https://profiles.wordpress.org/mwtsn/\">Matt Watson</a> · <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a> · <a href=\"https://profiles.wordpress.org/matt_fw/\">matt_fw</a> · <a href=\"https://profiles.wordpress.org/matteoenna/\">Matteo Enna</a> · <a href=\"https://profiles.wordpress.org/mboynes/\">Matthew Boynes</a> · <a href=\"https://profiles.wordpress.org/azouamauriac/\">Mauriac AZOUA</a> · <a href=\"https://profiles.wordpress.org/maurodf/\">maurodf</a> · <a href=\"https://profiles.wordpress.org/cadic/\">Max Lyuchin</a> · <a href=\"https://profiles.wordpress.org/maxcgparis/\">maxcgparis</a> · <a href=\"https://profiles.wordpress.org/maysi/\">maysi</a> · <a href=\"https://profiles.wordpress.org/mayur8991/\">Mayur Prajapati</a> · <a href=\"https://profiles.wordpress.org/mcalyster/\">McAlyster</a> · <a href=\"https://profiles.wordpress.org/mcliwanow/\">mcliwanow</a> · <a href=\"https://profiles.wordpress.org/mahamudur78/\">Md Mahamudur Rahaman</a> · <a href=\"https://profiles.wordpress.org/fencermonir/\">Md Monir Hossain</a> · <a href=\"https://profiles.wordpress.org/shuvo247/\">MD Shakibul Islam</a> · <a href=\"https://profiles.wordpress.org/megane9988/\">megane9988</a> · <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a> · <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/menakas/\">Menaka S.</a> · <a href=\"https://profiles.wordpress.org/mensmaximus/\">mensmaximus</a> · <a href=\"https://profiles.wordpress.org/mgol/\">mgol</a> · <a href=\"https://profiles.wordpress.org/mdawaffe/\">Michael Adams (mdawaffe)</a> · <a href=\"https://profiles.wordpress.org/mburridge/\">Michael Burridge</a> · <a href=\"https://profiles.wordpress.org/mikeday/\">Michael Day</a> · <a href=\"https://profiles.wordpress.org/michaelh/\">MichaelH</a> · <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a> · <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a> · <a href=\"https://profiles.wordpress.org/mikeschinkel/\">Mike Schinkel</a> · <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a> · <a href=\"https://profiles.wordpress.org/mikecho/\">mikecho</a> · <a href=\"https://profiles.wordpress.org/mikeyzm/\">mikeyzm</a> · <a href=\"https://profiles.wordpress.org/mikinc860/\">Mikin Chauhan</a> · <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a> · <a href=\"https://profiles.wordpress.org/gonzomir/\">Milen Petrinski - Gonzo</a> · <a href=\"https://profiles.wordpress.org/studionashvegas/\">Mitch Canter</a> · <a href=\"https://profiles.wordpress.org/mitchellaustin/\">mitchellaustin</a> · <a href=\"https://profiles.wordpress.org/mitchoyoshitaka/\">mitcho (Michael Yoshitaka Erlewine)</a> · <a href=\"https://profiles.wordpress.org/moinrrahmed/\">Moe</a> · <a href=\"https://profiles.wordpress.org/batmoo/\">Mohammad Jangda</a> · <a href=\"https://profiles.wordpress.org/mohanrajp/\">Mohan Raj</a> · <a href=\"https://profiles.wordpress.org/patelmohip/\">Mohip Patel</a> · <a href=\"https://profiles.wordpress.org/mohiuddinomran/\">Mohiuddin Omran</a> · <a href=\"https://profiles.wordpress.org/boemedia/\">Monique Dubbelman</a> · <a href=\"https://profiles.wordpress.org/monzuralam/\">Monzur Alam</a> · <a href=\"https://profiles.wordpress.org/mor10/\">Morten Rand-Hendriksen</a> · <a href=\"https://profiles.wordpress.org/mrinal013/\">Mrinal Haque</a> · <a href=\"https://profiles.wordpress.org/mtxz/\">mtxz</a> · <a href=\"https://profiles.wordpress.org/thisisyeasin/\">Muhammad Yeasin</a> · <a href=\"https://profiles.wordpress.org/mujuonly/\">mujuonly</a> · <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a> · <a href=\"https://profiles.wordpress.org/611shabnam/\">Mushrit Shabnam</a> · <a href=\"https://profiles.wordpress.org/naeemhaque/\">Naeem Haque</a> · <a href=\"https://profiles.wordpress.org/tushar284/\">Nahid Hasan</a> · <a href=\"https://profiles.wordpress.org/narthur/\">Narthur</a> · <a href=\"https://profiles.wordpress.org/nataliat2004/\">nataliat2004</a> · <a href=\"https://profiles.wordpress.org/nateallen/\">Nate Allen</a> · <a href=\"https://profiles.wordpress.org/nazgul/\">Nazgul</a> · <a href=\"https://profiles.wordpress.org/nazmul111/\">Nazmul Hosen</a> · <a href=\"https://profiles.wordpress.org/nazmulhudadev/\">Nazmul Huda</a> · <a href=\"https://profiles.wordpress.org/nendeb55/\">nendeb</a> · <a href=\"https://profiles.wordpress.org/neychok/\">Neycho Kalaydzhiev</a> · <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a> · <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a> · <a href=\"https://profiles.wordpress.org/nickpap/\">nickpap</a> · <a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a> · <a href=\"https://profiles.wordpress.org/nihar007/\">Nihar Ranjan Das</a> · <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a> · <a href=\"https://profiles.wordpress.org/nilovelez/\">Nilo Velez</a> · <a href=\"https://profiles.wordpress.org/dhrupo/\">Niluthpal Purkayastha</a> · <a href=\"https://profiles.wordpress.org/nithi22/\">Nithin John</a> · <a href=\"https://profiles.wordpress.org/nithins53/\">Nithin SreeRaj</a> · <a href=\"https://profiles.wordpress.org/njsamsatli/\">njsamsatli</a> · <a href=\"https://profiles.wordpress.org/nkeller15/\">nkeller15</a> · <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a> · <a href=\"https://profiles.wordpress.org/obliviousharmony/\">obliviousharmony</a> · <a href=\"https://profiles.wordpress.org/hideokamoto/\">Okamoto Hidetaka</a> · <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a> · <a href=\"https://profiles.wordpress.org/olliejones/\">OllieJones</a> · <a href=\"https://profiles.wordpress.org/opr18/\">opr18</a> · <a href=\"https://profiles.wordpress.org/orestissam/\">Orestis Samaras</a> · <a href=\"https://profiles.wordpress.org/ov3rfly/\">Ov3rfly</a> · <a href=\"https://profiles.wordpress.org/owi/\">owi</a> · <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a> · <a href=\"https://profiles.wordpress.org/pamprn/\">Pamela Ribeiro</a> · <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises/\">Paragon Initiative Enterprises</a> · <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a> · <a href=\"https://profiles.wordpress.org/pateljaymin/\">Patel Jaymin</a> · <a href=\"https://profiles.wordpress.org/patriciahillebrandt/\">patriciahillebrandt</a> · <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a> · <a href=\"https://profiles.wordpress.org/paulkevan/\">Paul Kevan</a> · <a href=\"https://profiles.wordpress.org/pschrottky/\">Paul Von Schrottky</a> · <a href=\"https://profiles.wordpress.org/paulopmt1/\">Paulo Trentin</a> · <a href=\"https://profiles.wordpress.org/pavanpatil1/\">Pavan Patil</a> · <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendon&#231;a</a> · <a href=\"https://profiles.wordpress.org/westi/\">Peter Westwood</a> · <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a> · <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walb&#248; Johnsg&#229;rd</a> · <a href=\"https://profiles.wordpress.org/tyrannous/\">Philipp Bammes</a> · <a href=\"https://profiles.wordpress.org/phillsav/\">Phill</a> · <a href=\"https://profiles.wordpress.org/strategio/\">Pierre Sylvestre</a> · <a href=\"https://profiles.wordpress.org/nekojonez/\">Pieterjan Deneys</a> · <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a> · <a href=\"https://profiles.wordpress.org/pitamdey/\">Pitam Dey</a> · <a href=\"https://profiles.wordpress.org/piyushtekwani/\">Piyush Tekwani</a> · <a href=\"https://profiles.wordpress.org/pkbhatt/\">pkbhatt</a> · <a href=\"https://profiles.wordpress.org/platonkristinin/\">Platon Kristinin</a> · <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a> · <a href=\"https://profiles.wordpress.org/pooja1210/\">Pooja N Muchandikar</a> · <a href=\"https://profiles.wordpress.org/pouicpouic/\">pouicpouic</a> · <a href=\"https://profiles.wordpress.org/prashantbhivsane/\">Prashant</a> · <a href=\"https://profiles.wordpress.org/prashantvatsh/\">Prashant Singh</a> · <a href=\"https://profiles.wordpress.org/pravinparmar2404/\">Pravin Parmar</a> · <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a> · <a href=\"https://profiles.wordpress.org/prikari/\">Priyanka Adhikari</a> · <a href=\"https://profiles.wordpress.org/przemekhernik/\">Przemek Hernik</a> · <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a> · <a href=\"https://profiles.wordpress.org/bi0xid/\">Rafa Poveda</a> · <a href=\"https://profiles.wordpress.org/rfischmann/\">Rafael Fischmann</a> · <a href=\"https://profiles.wordpress.org/rajanpanchal2028/\">Rajan Panchal</a> · <a href=\"https://profiles.wordpress.org/rajinsharwar/\">Rajin Sharwar</a> · <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a> · <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon James</a> · <a href=\"https://profiles.wordpress.org/ratneshsonar/\">Ratnesh Sonar</a> · <a href=\"https://profiles.wordpress.org/rehanali/\">Rehan Ali</a> · <a href=\"https://profiles.wordpress.org/rembem/\">rembem</a> · <a href=\"https://profiles.wordpress.org/renyot/\">ren</a> · <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a> · <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian Rietveld</a> · <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> · <a href=\"https://profiles.wordpress.org/richards1052/\">richards1052</a> · <a href=\"https://profiles.wordpress.org/richiecarey/\">Richie Carey</a> · <a href=\"https://profiles.wordpress.org/rjasdfiii/\">rjasdfiii</a> · <a href=\"https://profiles.wordpress.org/rob1n/\">rob1n</a> · <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a> · <a href=\"https://profiles.wordpress.org/sanchothefat/\">Robert O\'Rourke</a> · <a href=\"https://profiles.wordpress.org/robinwpdeveloper/\">Robin</a> · <a href=\"https://profiles.wordpress.org/ravanh/\">Rolf Allard van Hagen</a> · <a href=\"https://profiles.wordpress.org/ronakganatra/\">Ronak Ganatra</a> · <a href=\"https://profiles.wordpress.org/algorithmsunlocks/\">Ruman Ahmed</a> · <a href=\"https://profiles.wordpress.org/rutviksavsani/\">Rutvik Savsani</a> · <a href=\"https://profiles.wordpress.org/ryan/\">Ryan Boren</a> · <a href=\"https://profiles.wordpress.org/bookdude13/\">Ryan Fredlund</a> · <a href=\"https://profiles.wordpress.org/ryankienstra/\">Ryan Kienstra</a> · <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a> · <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a> · <a href=\"https://profiles.wordpress.org/sereedmedia/\">S&#233; Reed</a> · <a href=\"https://profiles.wordpress.org/sebastienserre/\">S&#233;bastien SERRE</a> · <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">S&#233;rgio Gomes</a> · <a href=\"https://profiles.wordpress.org/suleymankenar/\">S&#252;leyman Kenar</a> · <a href=\"https://profiles.wordpress.org/andy786/\">Sahil B.</a> · <a href=\"https://profiles.wordpress.org/sajjad67/\">Sajjad Hossain Sagor</a> · <a href=\"https://profiles.wordpress.org/sakibmd/\">Sakib Mohammed</a> · <a href=\"https://profiles.wordpress.org/salvoaranzulla/\">salvoaranzulla</a> · <a href=\"https://profiles.wordpress.org/samful/\">Sam Fullalove</a> · <a href=\"https://profiles.wordpress.org/samiamnot/\">samiamnot</a> · <a href=\"https://profiles.wordpress.org/samnajian/\">SamNajian</a> · <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a> · <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a> · <a href=\"https://profiles.wordpress.org/sarequl/\">Sarequl Basar</a> · <a href=\"https://profiles.wordpress.org/saxonfletcher/\">Saxon Fletcher</a> · <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a> · <a href=\"https://profiles.wordpress.org/wonderboymusic/\">Scott Taylor</a> · <a href=\"https://profiles.wordpress.org/scribu/\">scribu</a> · <a href=\"https://profiles.wordpress.org/sdavis2702/\">Sean Davis</a> · <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a> · <a href=\"https://profiles.wordpress.org/shailu25/\">Shail Mehta</a> · <a href=\"https://profiles.wordpress.org/sh4lin/\">Shalin Shah</a> · <a href=\"https://profiles.wordpress.org/enchiridion/\">Shannon Little</a> · <a href=\"https://profiles.wordpress.org/shiponkarmakar/\">Shipon Karmakar</a> · <a href=\"https://profiles.wordpress.org/shreyasikhar26/\">Shreyas Ikhar</a> · <a href=\"https://profiles.wordpress.org/shubhamsedani/\">shubhamsedani</a> · <a href=\"https://profiles.wordpress.org/shuvo586/\">shuvo586</a> · <a href=\"https://profiles.wordpress.org/shvv/\">shvv</a> · <a href=\"https://profiles.wordpress.org/shwetabathani2312/\">Shweta Bathani</a> · <a href=\"https://profiles.wordpress.org/siddhantwadhwani/\">Siddhant Wadhwani</a> · <a href=\"https://profiles.wordpress.org/rsiddharth/\">siddharth ravikumar</a> · <a href=\"https://profiles.wordpress.org/nomnom99/\">Siddharth Thevaril</a> · <a href=\"https://profiles.wordpress.org/10upsimon/\">Simon Dowdles</a> · <a href=\"https://profiles.wordpress.org/simonemanfre/\">Simone</a> · <a href=\"https://profiles.wordpress.org/siobhan/\">Siobhan</a> · <a href=\"https://profiles.wordpress.org/sirajummahdi/\">Sirajum Mahdi</a> · <a href=\"https://profiles.wordpress.org/sboerrigter/\">Sjoerd Boerrigter</a> · <a href=\"https://profiles.wordpress.org/sjoerdlinders/\">Sjoerd Linders</a> · <a href=\"https://profiles.wordpress.org/smit08/\">Smit Rathod</a> · <a href=\"https://profiles.wordpress.org/soean/\">Soren Wrede</a> · <a href=\"https://profiles.wordpress.org/enderandpeter/\">Spencer</a> · <a href=\"https://profiles.wordpress.org/sque/\">sque</a> · <a href=\"https://profiles.wordpress.org/srikanthmeenakshi/\">srikanthmeenakshi</a> · <a href=\"https://profiles.wordpress.org/sstoqnov/\">Stanimir Stoyanov</a> · <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a> · <a href=\"https://profiles.wordpress.org/vanaf1979/\">Stephan Nijman</a> · <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a> · <a href=\"https://profiles.wordpress.org/stevenlinx/\">Steven Lin</a> · <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a> · <a href=\"https://profiles.wordpress.org/sudipatel007/\">Sudip Dadhaniya</a> · <a href=\"https://profiles.wordpress.org/sumitbagthariya16/\">Sumit Bagthariya</a> · <a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh</a> · <a href=\"https://profiles.wordpress.org/sunyatasattva/\">sunyatasattva (a11n)</a> · <a href=\"https://profiles.wordpress.org/codemonksuvro/\">Suvro</a> · <a href=\"https://profiles.wordpress.org/suzettefranck/\">Suzette Franck</a> · <a href=\"https://profiles.wordpress.org/mt_suzette/\">Suzette Franck</a> · <a href=\"https://profiles.wordpress.org/syamraj24/\">syamraj24</a> · <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a> · <a href=\"https://profiles.wordpress.org/nuhel/\">Syed Nuhel</a> · <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a> · <a href=\"https://profiles.wordpress.org/tacoverdo/\">Taco Verdonschot</a> · <a href=\"https://profiles.wordpress.org/tahmina1du/\">Tahmina Jahan</a> · <a href=\"https://profiles.wordpress.org/inc2734/\">Takashi Kitajima</a> · <a href=\"https://profiles.wordpress.org/takshil/\">Takshil Kunadia</a> · <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a> · <a href=\"https://profiles.wordpress.org/tanner-m/\">Tanner Moushey</a> · <a href=\"https://profiles.wordpress.org/thakordarshil/\">Thakor Darshil</a> · <a href=\"https://profiles.wordpress.org/thomask/\">thomask</a> · <a href=\"https://profiles.wordpress.org/thunderdw/\">thunder rumbles</a> · <a href=\"https://profiles.wordpress.org/tijmensmit/\">Tijmen Smit</a> · <a href=\"https://profiles.wordpress.org/tillkruess/\">Till Kr&#252;ss</a> · <a href=\"https://profiles.wordpress.org/tb1909/\">Tim Brath&#228;rig</a> · <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> · <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a> · <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a> · <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a> · <a href=\"https://profiles.wordpress.org/thomasdevisser/\">Tom de Visser</a> · <a href=\"https://profiles.wordpress.org/tjnowell/\">Tom J Nowell</a> · <a href=\"https://profiles.wordpress.org/shimotomoki/\">Tomoki Shimomura</a> · <a href=\"https://profiles.wordpress.org/skithund/\">Toni Viemer&#246;</a> · <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a> · <a href=\"https://profiles.wordpress.org/r0uter/\">tonythomas01</a> · <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a> · <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a> · <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul I Chowdhury</a> · <a href=\"https://profiles.wordpress.org/scep/\">Tryon</a> · <a href=\"https://profiles.wordpress.org/twstokes/\">twstokes</a> · <a href=\"https://profiles.wordpress.org/tyb/\">TyB</a> · <a href=\"https://profiles.wordpress.org/ugyensupport/\">Ugyen Dorji</a> · <a href=\"https://profiles.wordpress.org/umesh84/\">Umesh Gupta</a> · <a href=\"https://profiles.wordpress.org/umeshmcakadi/\">Umesh Patel</a> · <a href=\"https://profiles.wordpress.org/upadalavipul/\">Upadala Vipul</a> · <a href=\"https://profiles.wordpress.org/utsav72640/\">Utsav tilava</a> · <a href=\"https://profiles.wordpress.org/uxtremist/\">uxtremist</a> · <a href=\"https://profiles.wordpress.org/eboxnet/\">Vagelis</a> · <a href=\"https://profiles.wordpress.org/valterlorran/\">valterlorran</a> · <a href=\"https://profiles.wordpress.org/vasilism/\">Vasilis Manthos</a> · <a href=\"https://profiles.wordpress.org/victoranto/\">victoranto</a> · <a href=\"https://profiles.wordpress.org/szepeviktor/\">Viktor Sz&#233;pe</a> · <a href=\"https://profiles.wordpress.org/vivekawsm/\">vivekawsm</a> · <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</a> · <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a> · <a href=\"https://profiles.wordpress.org/whaze/\">whaze</a> · <a href=\"https://profiles.wordpress.org/skorasaurus/\">Will Skora</a> · <a href=\"https://profiles.wordpress.org/williampatton/\">williampatton</a> · <a href=\"https://profiles.wordpress.org/wlindley/\">wlindley</a> · <a href=\"https://profiles.wordpress.org/wojtekszkutnik/\">Wojtek Szkutnik</a> · <a href=\"https://profiles.wordpress.org/xerpa43/\">xerpa43</a> · <a href=\"https://profiles.wordpress.org/xmarcos/\">xmarcos</a> · <a href=\"https://profiles.wordpress.org/yaniiliev/\">Yani Iliev</a> · <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a> · <a href=\"https://profiles.wordpress.org/zdrobau/\">Zdrobau</a> · <a href=\"https://profiles.wordpress.org/zebaafiashama/\">Zeba Afia Shama</a> · <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a> · <a href=\"https://profiles.wordpress.org/zenaulislam/\">Zenaul Islam</a> · <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a> · <a href=\"https://profiles.wordpress.org/zunaid321/\">Zunaid Amin</a></p>\n\n\n\n<h3 class=\"wp-block-heading\">WordPress support forums</h3>\n\n\n\n<p>Many thanks to the community volunteers who contribute to the <a href=\"https://wordpress.org/support/\">support forums</a> by answering questions from WordPress users worldwide.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved today</h3>\n\n\n\n<p>If contributing to WordPress appeals to you, learning more and getting involved is easy. Discover the teams that come together to <a href=\"https://make.wordpress.org/\">Make WordPress</a> and explore the product roadmap on the <a href=\"https://make.wordpress.org/core/\">core development blog</a>. You can also use this <a href=\"https://make.wordpress.org/contribute/\">interactive tool</a> to help you decide which team is right for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Looking toward the future</h2>\n\n\n\n<p>20 years ago this past May, <a href=\"https://wordpress.org/news/2003/05/wordpress-now-available/\">WordPress shipped the very first version, 0.7</a>. What started with a blog post from co-founder Matt Mullenweg and a subsequent comment by co-founder Mike Little eventually evolved into the world’s most popular web publishing platform.</p>\n\n\n\n<p>WordPress software continues to evolve and iterate based on the needs and desires of its robust and diverse user community. This release is the capstone of <a href=\"https://make.wordpress.org/core/2023/02/04/phase-2-finale/\">Phase 2</a> along the WordPress <a href=\"https://wordpress.org/about/roadmap/\">development roadmap</a>. As the community looks to the future, all efforts turn to <a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">6.4</a> and, subsequently, the transition into <a href=\"https://make.wordpress.org/core/2023/03/24/phase-3-collaboration/\">Phase 3</a>, which is expected to introduce powerful collaboration tools to the website creation and management experience.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\">6.3 Haiku</h2>\n\n\n\n<p>A capstone release<br>Ships tools for building great sites<br>Collaboration</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:\"15718\";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:63:\"Concerns over the European Union’s Cyber Resilience Act (CRA)\";s:7:\"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:94:\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\";s: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, 02 Aug 2023 14:25:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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:3:\"cra\";s:7:\"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=15686\";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:216:\"\"Our shared goal is to further bolster the security of digital products without compromising the values of freedom, democracy, and innovation.\" Learn more about the Cyber Resilience Act and its impact on 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: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:4334:\"\n<p>As the world’s most popular open source content management system, WordPress acknowledges the European Union&#8217;s initiative to bolster the cybersecurity of digital hardware and software products with the <a href=\"https://www.european-cyber-resilience-act.com/\">Cyber Resilience Act (CRA)</a>. The Act’s effort to counter the increasing threat of cyberattacks and promote informed usage of digital products with increased security updates and transparency is commendable.&nbsp;</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>While we wholly endorse the objectives of the CRA, we are apprehensive about the Act&#8217;s implications on open source software due to unclear terms and definitions. </p>\n</blockquote>\n\n\n\n<p>Specifically, the Act’s prohibition on &#8220;unfinished software&#8221; and ambiguous definition of &#8220;commercial activity&#8221; could inadvertently inhibit innovation and economic participation in the European digital landscape.</p>\n\n\n\n<p>Open source projects, like WordPress, often rely on continual updates and improvements—a process that may technically fall under the label of &#8220;unfinished.&#8221; Furthermore, the ambiguous definition of &#8220;commercial activity&#8221; could unintentionally encompass open source projects that are largely driven by communities and operate on a not-for-profit basis.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Our letter to the EU Commission</h2>\n\n\n\n<p>We have jointly authored an open letter addressing these concerns alongside fellow open source projects Drupal, Joomla!, and TYPO3<sup data-fn=\"eb28afbc-3487-447f-9af9-8b0418310a00\" class=\"fn\"><a href=\"#eb28afbc-3487-447f-9af9-8b0418310a00\" id=\"eb28afbc-3487-447f-9af9-8b0418310a00-link\">1</a></sup>. The letter emphasizes the significant contribution of Free and Open Source Software (FOSS) to the EU&#8217;s economy and how the proposed regulations might undermine these efforts. Our shared goal is to further bolster the security of digital products without compromising the values of freedom, democracy, and innovation inherent to both the open source community and the <a href=\"https://european-union.europa.eu/principles-countries-history/principles-and-values/aims-and-values_en\">EU’s Aims and Values</a>.</p>\n\n\n\n<p>The letter invites the EU Commission and interested parties to participate in a seminar in Brussels to discuss how we can align the objectives of the CRA with the realities and needs of the FOSS community. We are optimistic that, with mutual understanding and cooperation, we can achieve secure digital products without limiting the vital contributions of open source projects.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-9 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-align-center wp-element-button\" href=\"https://wordpress.org/news/files/2023/08/Open_Letter_on_the_Significance_of_Free_and_Open_Source_Software_in_the_EU_s_Proposed_Cyber_Resilience_Act.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">Read the letter</a></div>\n</div>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group has-off-white-background-color has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\"><ol class=\"wp-block-footnotes\"><li id=\"eb28afbc-3487-447f-9af9-8b0418310a00\"><a href=\"https://www.drupal.org/\">Drupal</a>, <a href=\"https://www.joomla.org/\">Joomla!</a>, <a href=\"https://typo3.com/\">TYPO3</a>, and <a href=\"https://wordpress.org/\">WordPress</a> are the most popular FOSS content management systems on the web today. While all are based on the PHP programming language and distributed under the GPL open source license, each platform takes a different approach to website publishing. With strength in diversity, they form the Inter-CMS Working Group, promoting the values and benefits of free and open source software. <a href=\"#eb28afbc-3487-447f-9af9-8b0418310a00-link\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/21a9.png\" alt=\"↩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" />︎</a></li></ol></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:\"15686\";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: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:33:\"WordPress 6.3 Release Candidate 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2023/08/wordpress-6-3-rc3/\";s: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, 01 Aug 2023 16:55:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s: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=15615\";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:226:\"WordPress 6.3 Release Candidate 3 is now available for download and testing.\n\nThe WordPress 6.3 release is scheduled for August 8, 2023—just one week away. Now is your last opportunity to test it before the general 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Jonathan Pantani\";s: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:6221:\"\n<p>WordPress 6.3 RC3 is ready for download and testing.</p>\n\n\n\n<p><strong>This version of the WordPress software is under development.</strong> <strong>Please do not install, run, or test this version on production or mission-critical websites.</strong> Instead, you should evaluate RC3 on a test server and site.&nbsp;</p>\n\n\n\n<p>The WordPress 6.3 release is scheduled for August 8, 2023—just one week away. Now is your last opportunity to test it before the general release.&nbsp;</p>\n\n\n\n<p>For a deeper look into this release, read this overview of the <a href=\"https://make.wordpress.org/core/6-3/\">6.3 release cycle</a>, check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-3/\">6.3-related posts</a>, review <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">new features in WordPress 6.3</a>, or <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\">watch a recorded demo</a>.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s new since RC2</h2>\n\n\n\n<p>Since the RC2 release on July 25, 2023, there have been approximately 14 issues resolved in <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.3\">Github</a> and <a href=\"https://core.trac.wordpress.org/query?status=accepted&amp;status=closed&amp;changetime=07%2F25%2F2023..08%2F01%2F2023&amp;milestone=6.3&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Trac</a>. To prepare for 6.3 general availability, RC3 also addresses several <a href=\"https://github.com/WordPress/gutenberg/pull/53089\">bugs</a> and adds fixes for retrieving templates (<a href=\"https://github.com/WordPress/wordpress-develop/pull/4940\">#4940</a>) and resolving child theme issues (<a href=\"https://github.com/WordPress/gutenberg/issues/53138\">#53138</a>). Thank you for testing, WordPressers!</p>\n\n\n\n<p>Developers and extenders should review the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">comprehensive WordPress 6.3 Field Guide</a> for detailed technical notes regarding new features and improvements.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Ways to contribute</h2>\n\n\n\n<p>WordPress is open source software made possible by the community of people collaborating on and contributing to its development. The resources below outline a variety of ways you can help, regardless of your technical expertise.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Download RC3 for testing</h3>\n\n\n\n<p>You can test WordPress 6.3 RC3 in three ways:</p>\n\n\n\n<ul>\n<li><strong>Option 1:</strong> Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</li>\n\n\n\n<li><strong>Option 2:</strong> Direct download the <a href=\"https://wordpress.org/wordpress-6.3-RC3.zip\">RC3 version (zip)</a>.</li>\n\n\n\n<li><strong>Option 3: </strong>Use the following WP-CLI command:<br><code>wp core update --version=6.3-RC3</code></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Keep WordPress bug-free—help with testing</h3>\n\n\n\n<p>Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute—whether you have experience or not. While testing the upgrade process is essential, trying out new features is too.&nbsp;&nbsp;</p>\n\n\n\n<ul>\n<li>Encountered an issue? Please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</li>\n\n\n\n<li>New to testing? This <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">detailed guide</a> is a great place to start if you’ve never tested a beta/RC release.</li>\n\n\n\n<li>Want to know more about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> in <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Search for vulnerabilities</h3>\n\n\n\n<p>The monetary reward for reporting new, unreleased security vulnerabilities is doubled between the Beta 1 release and the final release candidate (RC). Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Update your theme or plugin</h3>\n\n\n\n<p>Do you build themes or plugins? Your products play an integral role in extending the functionality and value of WordPress for users of all types worldwide.&nbsp;</p>\n\n\n\n<p>This is your final opportunity to test your latest versions against RC3. You will want to continue your testing and update the “<em>Tested up to”</em> version in your plugin’s readme file to 6.3.&nbsp;</p>\n\n\n\n<p>If you find compatibility problems, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Help translate WordPress</h3>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Português? Русский? 日本? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages.</a>&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Release the haiku</h2>\n\n\n\n<p>Phase two, soon complete<br>A monumental release<br>Then onto six-four.</p>\n\n\n\n<p><em>Thank you to the contributors who collaborated on this post: <a href=\"https://profiles.wordpress.org/meher/\">@Meher</a>, <a href=\"https://profiles.wordpress.org/dansoschin/\">@DanSoschin</a>, and <a href=\"https://profiles.wordpress.org/jpantani/\">@jpantani</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:\"15615\";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: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:36:\"People of WordPress: Ihtisham Zahoor\";s:7:\"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/2023/07/people-of-wordpress-ihtisham-zahoor/\";s: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, 31 Jul 2023 20:22: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: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=15589\";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:98:\"People of WordPress features Ihtisham Zahoor, an administrator turned web developer from Pakistan.\";s: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:12176:\"\n<p>From administrator to web developer thanks to the supportive WordPress community. Through learning from other software users in Pakistan, Ihtisham Zahoor knew that his life would change. He moved cities and careers to make his life through open source.</p>\n\n\n\n<p><strong>The&nbsp;<em>People of WordPress</em>&nbsp;series shares inspiring stories of how people’s lives can change for the better through WordPress and its global community of contributors.</strong></p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"768\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?resize=1024%2C768&#038;ssl=1\" alt=\"Ihtisham Zahoor in the moutains.\" class=\"wp-image-15478\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?resize=1536%2C1152&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?w=1900&amp;ssl=1 1900w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Ihtisham, from Haripur, a city in northern Pakistan, said: “The WordPress community made me a firm believer in the power of open source software. This is why I am an enthusiast and one who enjoys contributing back to the community via writing, speaking, and helping organize meetups.”</p>\n\n\n\n<p>When Ihtisham discovered WordPress, his fascination for working with computing grew. He knew he did not want to just work in administration his entire career.</p>\n\n\n\n<p>Ihitsham describes himself as an ‘introvert’ and therefore the idea of remote work appealed as he could still add value to others through technology. He was intrigued by the thought of the freedom to choose his work hours. However, without access to others who had already transformed their careers and lives through web development, he felt he ‘had no path to follow to turn my dream into a reality.’</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Challenges become opportunities to learn when there is an active community&nbsp;&nbsp;</strong></h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"675\" height=\"900\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-4.jpg?resize=675%2C900&#038;ssl=1\" alt=\"Ihtisham Zahoor wearing a sweatshirt with the London tube sign \'Mind the Gap\'.\" class=\"wp-image-15480\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-4.jpg?w=675&amp;ssl=1 675w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-4.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 675px) 100vw, 675px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Lacking any kind of informed support network to advise or guide him, Ihtisham devoted time to online research to find the next steps he could take. Looking back, he believes that for those who are not in a network with others with similar interests, it can be hard to keep learning and experimenting with new things. Isolation can be a barrier to working in web development.&nbsp;&nbsp;</p>\n\n\n\n<p>He said: “I think it is not easy to stay motivated when there aren’t immediate rewards for the hard work we do. Sometimes, weeks would go by when my only focus would be to stay motivated rather than give up.”</p>\n\n\n\n<p>After another two years of combining learning and work, Ihtisham took up using WordPress as a full-time career. He moved to the capital of Pakistan, Islamabad. It was not easy at first. He recalls: “After many failed attempts at getting hired and desperate moments, I finally received an offer from a digital agency as a web developer focused on the WordPress platform.”</p>\n\n\n\n<p>He added: “Moving to work with a bigger agency was one of the best decisions of my life as it helped me with my professional growth by becoming familiar with the whole WordPress ecosystem in a supportive environment. I was valued for my opinions in the web projects in which I was involved. I was also appreciated and encouraged for the open source work I did for the company.” He summarized his enthusiasm for WordPress like this: “It is really interesting figuring out what is happening in the backends. I like problem-solving and finding solutions which you can do with WordPress.”</p>\n\n\n\n<p>During the Covid-19 pandemic, Ihtisham moved to join a start-up which provides web development services to international clients. He works as a developer and has the opportunity to learn more about client communication and project management. “WordPress has opened up so many opportunities for me. It has been an exciting journey for me with lots of learning every day,” he said. In particular, he has discovered an interest in APIs and regularly uses his spare time to follow tickets in the hope of one day contributing even more to topics.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Give back through WordPress community</strong></h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"800\" height=\"599\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-1.jpeg?resize=800%2C599&#038;ssl=1\" alt=\"Ihtisham Zahoor speaking at a meetup.\" class=\"wp-image-15477\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-1.jpeg?w=800&amp;ssl=1 800w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-1.jpeg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-1.jpeg?resize=768%2C575&amp;ssl=1 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>It was not just software that made a difference in Ihtisham’s life. Joining a welcoming and sharing community was transforming for him. Recalling those early days of isolation, he values the WordPress community and is wholly committed to the power of open-source software. He now enjoys writing, speaking, and organizing meetups to give back to the community. He has been involved in developing plugins and themes for the platform, which he describes as a ‘humbling’ experience. He is fond of <a href=\"https://islamabad.wordcamp.org/\">WordCamp Islamabad</a> and in 2023 is on the organizing team to help bring both WordPress and its community to others in Pakistan.</p>\n\n\n\n<p>“My first experience,” he said, “was that everyone was so friendly and open to sharing what they have learned, even though they were all busy working. This really had an impact on me. It really helped me and gave me the confidence that I could work with WordPress…. It was a real step forward for me joining this community.” </p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"512\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-WC-Karachi.jpg?resize=1024%2C512&#038;ssl=1\" alt=\"Ihtisham visited WordCamp Karachi.\" class=\"wp-image-15482\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-WC-Karachi.jpg?resize=1024%2C512&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-WC-Karachi.jpg?resize=300%2C150&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-WC-Karachi.jpg?resize=768%2C384&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-WC-Karachi.jpg?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>A particular meeting in 2018 led to new friendships through the WordPress community. Ihtisham was on a train to Karachi for the first ever Pakistani WordCamp in 2018 and met a group of fellow attendees he now regards as close friends. What impressed him most about the camp was that although he met many people with considerable expertise, they also had a generosity of spirit and humbleness in their willingness to share this knowledge. Now, with this group of friends he is fulfilling another dream of traveling widely across the country. He says these things and other ‘side benefits’ have been made possible by the WordPress community, and for that, he is &#8216;forever grateful&#8217;.<br><br>Ihtisham particularly wanted to share his story through this People of WordPress article to encourage those starting with little or no support to remain persistent. He knows from experience breaking into the tech world can be hard, especially when you may be switching from doing something else and have no ‘track record’ to offer. </p>\n\n\n\n<p>He feels he is a living example of how perseverance can lead to success. He offers these words to anyone thinking of making a move into development using the WordPress platform: “I attribute my success (financial and mental well-being) to the open-source nature of WordPress and its amazing community. It would not be possible to learn and use the plethora of free tools WordPress provides if it weren’t an open-source platform. It is for that reason I feel obligated to contribute back to this platform to the best of my abilities.” To those who are finding getting going difficult, as he did, he adds: “Get yourself a clear learning path and just dive in doing WordPress, and things will get better for you over time as they were for me, I promise. Good Luck!”</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.&nbsp;Meet more WordPressers in the <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series</a>.</p>\n\n\n\n<p>To help you discover more about how to use the WordPress software, there is a free resource from the community, <a href=\"https://learn.wordpress.org/\">Learn.WordPress.org</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Contributors</h2>\n\n\n\n<p>Thanks to Ihtisham Zahoor (<a href=\"https://profiles.wordpress.org/shaampk1/\">@shaampk1</a>) for sharing about his adventures in WordPress.</p>\n\n\n\n<p>Thank you to Abha Thakor (<a href=\"//profiles.wordpress.org/webcommsat/\">@webcommsat</a>), Nalini Thakor (<a href=\"//profiles.wordpress.org/nalininonstopnewsuk/\">@nalininonstopnewsuk</a>), and Meher Bala (<a href=\"//profiles.wordpress.org/meher/\">@meher</a>) for interviews, the feature and collaborating on images. To Chloe Bringmann (<a href=\"//profiles.wordpress.org/cbringmann/\">@cbringmann</a>), Mark Smallman (<a href=\"//profiles.wordpress.org/marks99/\">@marks99</a>), and Mary Baum (<a href=\"//profiles.wordpress.org/marybaum/\">@marybaum</a>) for reviews. Thanks to the late Surendra Thakor (<a href=\"//profiles.wordpress.org/sthakor/\">@sthakor</a>), Maja Loncar (<a href=\"//profiles.wordpress.org/majaloncar/\">@majaloncar</a>), Maedah Bahtool (<a href=\"//profiles.wordpress.org/maedahbatool/\">@maedahbatool</a>) and other members of the Marketing and Polyglots Team for their contributions.</p>\n\n\n\n<p>The People of WordPress series thanks Josepha Haden (<a href=\"//profiles.wordpress.org/chanthaboune/\">@chanthaboune</a>) and Topher DeRosia (<a href=\"//profiles.wordpress.org/topher1kenobe/\">@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\n\n\n<p></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15589\";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: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:49:\"Synced Patterns: The Evolution of Reusable Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2023/07/synced-patterns-the-evolution-of-reusable-blocks/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Jul 2023 14:45: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:3:{i:0;a:5:{s:4:\"data\";s:6:\"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:1;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15541\";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:369:\"Synced patterns are replacing Reusable blocks, offering a unified creation experience for new pattern functionality coming to WordPress 6.3. Patterns, first introduced in WordPress 5.5, are a collection of blocks that make it simple to add complex layouts and designs to any WordPress site without starting from scratch. With WordPress 6.3, set to be released [&#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:8:\"annezazu\";s: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:6153:\"\n<p>Synced patterns are replacing Reusable blocks, offering a unified creation experience for new pattern functionality coming to WordPress 6.3. Patterns, first introduced in WordPress 5.5, are a collection of blocks that make it simple to add complex layouts and designs to any WordPress site without starting from scratch. With WordPress 6.3, set to be released on August 8th, you will be able to arrange blocks in unlimited ways and save them as patterns for use throughout your site, directly within the editing experience. You can also specify whether to sync your patterns, so that one change applies to all parts of your site, or to keep them unsynced, so you can customize each instance.</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/plZIF3jrU7E?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<h2 class=\"wp-block-heading\">Create your own patterns</h2>\n\n\n\n<p>The ability to create your own patterns, on top of using the ones bundled into each WordPress release, opens up a world of possibilities. Need to repeat the same contact information across your site and keep it up to date? Create a synced pattern with all the details, and say goodbye to repeating yourself, with the ability to quickly insert the synced pattern wherever you need it. If you find yourself creating various banners for your site and want them to have the same layout with unique content, creating an unsynced pattern speeds up your workflow and ensures a level of consistency in approach. While themes and plugins have been able to offer patterns to users and <a href=\"https://developer.wordpress.org/block-editor/how-to-guides/curating-the-editor-experience/#utilizing-patterns\">curate the experience</a>, this update allows agencies and site builders to do the same for their clients, directly in the site building process.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Dig into the details</h2>\n\n\n\n<p>Any previously made Reusable blocks will continue to function as they do now, just under the new Synced pattern name. To help adjust to these changes, a few contextual notices will be placed throughout the interface. Specifically, the menu item in the creation flow will show as “Create pattern/reusable block” until the prompt describing the switch is dismissed in one of the various locations, including the naming and syncing modal:&nbsp;</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/fbrhammtn3Y?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>For folks using block themes, all patterns will be listed alongside template parts in the Site Editor &gt; Patterns section, where you can enter a focused editing mode to make changes. For Classic themes, the prior reusable block management page will now house patterns in a list, similar to the Posts &gt; All Posts view.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"590\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Site-Editor-_-All-Patterns-View.png?resize=1024%2C590&#038;ssl=1\" alt=\"Patterns section of the WordPress Site Editor with My Patterns selected\" class=\"wp-image-15569\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Site-Editor-_-All-Patterns-View.png?resize=1024%2C590&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/Site-Editor-_-All-Patterns-View.png?resize=300%2C173&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/Site-Editor-_-All-Patterns-View.png?resize=768%2C443&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/Site-Editor-_-All-Patterns-View.png?resize=1536%2C885&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/07/Site-Editor-_-All-Patterns-View.png?w=2048&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>For a complete overview of patterns on your site, all patterns provided by themes and plugins will be shown in this section but without the option to edit directly.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Go further</h2>\n\n\n\n<p>With the ability to create your own patterns baked into the creation experience, remember that you can copy the patterns available in the <a href=\"https://wordpress.org/patterns/\">Pattern Directory</a> and <a href=\"https://wordpress.org/patterns/about/\">contribute back</a>, an excellent way to democratize design for every WordPress user and the web.</p>\n\n\n\n<p><em>For more exciting features coming to patterns in WordPress 6.3, </em><a href=\"https://make.wordpress.org/core/2023/07/13/core-editor-improvement-advancing-the-power-of-patterns/\"><em>read on in the Advancing the Power of Patterns post</em></a><em>. Thank you to the contributors who collaborated on this post: </em><a href=\"https://profiles.wordpress.org/cbringmann/\"><em>Chloé Bringmann</em></a><em>, </em><a href=\"https://profiles.wordpress.org/jpantani/\"><em>Jonathan Pantani</em></a><em>, </em><a href=\"https://profiles.wordpress.org/chanthaboune/\"><em>Josepha</em></a><em>, </em><a href=\"https://profiles.wordpress.org/kristastevens/\"><em>Krista Stevens</em></a><em>, </em><a href=\"https://profiles.wordpress.org/eidolonnight/\"><em>Nicholas Garofalo</em></a><em>, <a href=\"https://profiles.wordpress.org/provenself/\">Peter Rubin</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:\"15541\";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: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:33:\"WordPress 6.3 Release Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 Jul 2023 16:43:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s: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=15460\";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:246:\"WordPress 6.3 RC2 is ready for download and testing. Reaching this part of the release cycle is a key milestone. While release candidates are considered ready for final release, additional testing and use by the community can only make it better.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Meher Bala\";s: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:7642:\"\n<p>WordPress 6.3 RC2 is ready for download and testing.</p>\n\n\n\n<p><strong>This version of the WordPress software is under development.</strong> <strong>Please do not install, or run, or test this version on production or mission-critical websites.</strong> Instead, you should evaluate RC2 on a test server and site.&nbsp;</p>\n\n\n\n<p>While release candidates are considered ready for final release, additional testing and use by the community can only make it better.</p>\n\n\n\n<p>WordPress 6.3 is scheduled for release on August 8, 2023 – just two weeks from today.</p>\n\n\n\n<p>Get an overview of the <a href=\"https://make.wordpress.org/core/6-3/\">6.3 release cycle</a>, check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-3/\">6.3-related posts</a>, review <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">new features in WordPress 6.3</a>, or <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\">watch a recorded demo</a>.</p>\n\n\n\n<p>Developers and extenders should review the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">comprehensive WordPress 6.3 Field Guide</a> for detailed technical notes regarding new features and improvements.&nbsp;&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">RC2 Highlights</h2>\n\n\n\n<p>Since the RC1 release on July 18, 2023, there have been approximately 15 issues resolved in <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.3\" data-type=\"link\" data-id=\"https://github.com/WordPress/gutenberg/commits/wp/6.3\">Editor</a> and <a href=\"https://core.trac.wordpress.org/query?status=accepted&amp;status=closed&amp;changetime=07%2F18%2F2023..07%2F25%2F2023&amp;milestone=6.3&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Trac</a>.</p>\n\n\n\n<p>Notable updates for this release include:</p>\n\n\n\n<ul>\n<li>Footnotes will be reverted or restored with post revisions (<a href=\"https://github.com/WordPress/gutenberg/pull/52686\">#52686</a>).</li>\n\n\n\n<li>Distraction free adds a missing command in the site editor (<a href=\"https://github.com/WordPress/gutenberg/pull/52868\">#52868</a>).</li>\n\n\n\n<li>Global styles revisions will display text if no revisions are found (<a href=\"https://github.com/WordPress/gutenberg/pull/52865\">#52865</a>).</li>\n\n\n\n<li>The About Page has been completed (<a href=\"https://core.trac.wordpress.org/ticket/58067\">#58067</a>).</li>\n\n\n\n<li>The About Page now includes a “Get Involved” section (<a href=\"https://core.trac.wordpress.org/ticket/23348\">#23348</a>).</li>\n\n\n\n<li>The dark mode option has been restored in the block editor iframe for Twenty Twenty-One (<a href=\"https://core.trac.wordpress.org/ticket/58835\">#58835</a>).</li>\n\n\n\n<li>Max height value was fixed in the image scaling in the Edit Media screen (<a href=\"https://core.trac.wordpress.org/ticket/50523\">#50523</a>).</li>\n\n\n\n<li>Additionally, some issues regarding internationalization were addressed (<a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/58879\" target=\"_blank\">#58879</a>, <a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/58067\" target=\"_blank\">#58067</a> and <a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/58864\" target=\"_blank\">#58864</a>).</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Test features in WordPress 6.3</h2>\n\n\n\n<p>Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute—whether you have experience or not. While testing the upgrade process is essential, trying out new features is too.&nbsp;</p>\n\n\n\n<ul>\n<li>Encountered an issue? Please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</li>\n\n\n\n<li>New to testing? This <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">detailed guide</a> is a great place to start if you’ve never tested a beta/RC release.</li>\n\n\n\n<li>Want to know more about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> in <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Vulnerability bounty doubles during the Beta/RC phases</h2>\n\n\n\n<p>The monetary reward for reporting new, unreleased security vulnerabilities is doubled between the Beta 1 release and the final release candidate (RC). Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Get WordPress 6.3 RC2</h2>\n\n\n\n<p>You can test WordPress 6.3 RC2 in three ways:</p>\n\n\n\n<ul>\n<li><strong>Option 1:</strong> Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</li>\n\n\n\n<li><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.3-RC2.zip\">RC2 version (zip)</a>.</li>\n\n\n\n<li><strong>Option 3:</strong> Use the following WP-CLI command:<br><code>wp core update --version=6.3-RC2</code></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Thanks to WordPress plugin and theme developers</h2>\n\n\n\n<p>Do you build plugins and themes? Your products play an integral role in extending the functionality and value of WordPress for users of all types worldwide.&nbsp;</p>\n\n\n\n<p>Hopefully, you have already tested your themes and plugins with WordPress 6.3 betas by now. With RC2, you will want to continue your testing and update the “<em>Tested up to”</em> version in your plugin’s readme file to 6.3.&nbsp;</p>\n\n\n\n<p>If you find compatibility problems, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Help translate WordPress</h2>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Português? Русский? 日本? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages.</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Haiku for RC2</h2>\n\n\n\n<p>Time is nearly here<br>WordPress shines thanks to you all<br>Let’s get testing, dear</p>\n\n\n\n<p><em>Thank you to the contributors who collaborated on this post: <a href=\"https://profiles.wordpress.org/priethor/\" data-type=\"link\" data-id=\"https://profiles.wordpress.org/priethor/\">@Priethor</a></em>,<em> <a href=\"https://profiles.wordpress.org/audrasjb/\" data-type=\"link\" data-id=\"https://profiles.wordpress.org/audrasjb/\">@AudrasJb</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\" data-type=\"link\" data-id=\"https://profiles.wordpress.org/davidbaumwald/\">@DavidBaumwald</a>, <a href=\"https://profiles.wordpress.org/dansoschin/\">@DanSoschin</a>, <a href=\"https://profiles.wordpress.org/jpantani/\">@JPantani</a></em> and <em><a href=\"https://profiles.wordpress.org/meher/\">@Meher</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:\"15460\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WordPress 6.3 Live Product Demo – Highlights &amp; Recording\";s:7:\"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://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\";s: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, 21 Jul 2023 19:26:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:9:\"live demo\";s:7:\"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=15445\";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:102:\"Watch a demonstration of some of the newest features of WordPress 6.3, recorded live on July 20, 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Jonathan Pantani\";s: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:8111:\"\n<p>WordPress 6.3 ships on August 8th! For a sneak peek of what&#8217;s to come, members of the 6.3 release squad, <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> and <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a>, held a live demo moderated by <a href=\"https://profiles.wordpress.org/njwrigley/\">Nathan Wrigley</a>.&nbsp;</p>\n\n\n\n<p>More than 100 attendees watched as some of the most anticipated product features were demonstrated, from the brand-new Command Palette to new design tools and more.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-4-3 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/I2dvEbBxaqA?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><figcaption class=\"wp-element-caption\">6.3 Live Product Demo</figcaption></figure>\n\n\n\n<p>Here are some of the key takeaways from the 6.3 live product demonstration.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Command Palette’s big debut</h2>\n\n\n\n<p>One of the most anticipated features of 6.3 is the <a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Command Palette</a>. It lets you quickly navigate and open different WordPress functions within the post and Site Editor. Access it using a shortcut command (Command + K or Control + K).</p>\n\n\n\n<h2 class=\"wp-block-heading\">Page creation gets easier in the Site Editor</h2>\n\n\n\n<p>Now you can browse and edit pages within the Site Editor, providing a more cohesive WordPress experience. A new drafting flow debuts, allowing you to create and publish pages directly within the editor.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Synced Patterns set to replace Reusable Blocks</h2>\n\n\n\n<p>You can create and manage all your patterns directly in the Site Editor. Once edited, all synced patterns (previously called Reusable Blocks) will change across a site—a huge time saver when making changes.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Stay on top of design changes with Style Revisions</h2>\n\n\n\n<p>This enhancement offers a visual timeline of your site so you can see all the revisions in your site’s history and restore a previous style with just a click.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">New design tools and blocks</h2>\n\n\n\n<p>Controls for specifying aspect ratios to ensure design integrity, especially when using images in Patterns debut in 6.3, along with new blocks for Footnotes and Details. Easily add footnotes to your content and have them automatically linked to the corresponding text. With the Details block, hide or display content to create spoilers or accordions.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Performance</h2>\n\n\n\n<p>WordPress is getting faster with 6.3 as content with images will see speedier load times. Both theme types (Classic and Block) will also benefit from performance improvements. The upcoming <a href=\"https://make.wordpress.org/core/2023/06/29/hallway-hangout-performance-improvements-for-wordpress-6-3/\">hallway hangout</a> is an excellent opportunity to learn more about performance enhancements directly from the WordPress Performance team.</p>\n\n\n\n<h2 class=\"wp-block-heading\">More from Core</h2>\n\n\n\n<ul>\n<li>Revert to previously installed versions when <a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">manual updates for themes and plugins fail</a>.&nbsp;</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/05/dropping-support-for-php-5/\">Dropping support</a> for PHP 5. The new minimum supported version of PHP will be 7.0.0. The recommended version of PHP remains at 7.4 or greater.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-3-accessibility-improvements/\">Accessibility updates</a>, especially for List View and the broader Site Editor experience.</li>\n\n\n\n<li>Improvements to internationalization <a href=\"https://make.wordpress.org/core/2023/07/14/i18n-improvements-in-6-3/\">just-in-time translation loading</a>.</li>\n</ul>\n\n\n\n<p>These new features and more await you as Phase 2 of the <a href=\"https://wordpress.org/about/roadmap/\">WordPress Roadmap</a> comes to a close with the 6.3 release.</p>\n\n\n\n<p>A <a href=\"https://make.wordpress.org/core/2023/07/21/6-3-live-product-demo-qa/\">question and answer session</a> followed the demo, with attendees asking plenty of great questions. The panelists shared links for additional reading regarding many new features—all conveniently added to the end of this post.&nbsp;</p>\n\n\n\n<p>A big thank you to everyone who helps make WordPress. Contributors power every WordPress release. Without the hundreds of contributors worldwide who help build WordPress, this live product demo wouldn’t have been possible. Thank you for all of your hard work.</p>\n\n\n\n<h2 class=\"wp-block-heading\">References from the Live Demo</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Introducing the WordPress Command Palette API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/core-editor-improvement-advancing-the-power-of-patterns/\">Core Editor Improvement: Advancing the Power of Patterns</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/documentation/article/comparing-patterns-template-parts-and-reusable-blocks/\">Comparing Patterns, Template Parts, and Reusable Blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/image-performance-enhancements-in-wordpress-6-3/\">Image performance enhancements in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">The 6.3 Field Guide</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/05/dropping-support-for-php-5/\">Dropping support for PHP 5</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-3-accessibility-improvements/\">WordPress 6.3 Accessibility Improvements</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/i18n-improvements-in-6-3/\">Internationalization Improvements in 6.3</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/30496\">#30496 Site Editor: MVP Customizer Compatibility/Integration</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/52128\">#52128 Customization Ongoing Roadmap</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/building-sidebars-with-the-site-editor/\">Building sidebars with the Site Editor</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/layout-updates-in-the-editor-for-wordpress-6-3/\">Layout updates in the editor for WordPress 6.3</a></li>\n</ul>\n\n\n\n<p>Props to <a href=\'https://profiles.wordpress.org/richtabor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>richtabor</a> and <a href=\'https://profiles.wordpress.org/annezazu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annezazu</a> for reviewing this post and to <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>, <a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>, and <a href=\'https://profiles.wordpress.org/dansoschin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dansoschin</a> for their logistics support to run the event.</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:\"15445\";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: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:33:\"WordPress 6.3 Release Candidate 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Jul 2023 17:08: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:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s: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=15431\";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:246:\"WordPress 6.3 RC1 is ready for download and testing. Reaching this part of the release cycle is a key milestone. While release candidates are considered ready for final release, additional testing and use by the community can only make it better.\";s: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:\"Dan Soschin\";s: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:11307:\"\n<p>WordPress 6.3 RC1 is ready for download and testing.</p>\n\n\n\n<p><strong>This version of the WordPress software is under development.</strong> <strong>Please do not install, run, or test this version on production or mission-critical websites.</strong> Instead, you should evaluate RC1 on a test server and site.&nbsp;</p>\n\n\n\n<p>Reaching this part of the release cycle is a key milestone. While release candidates are considered ready for final release, additional testing and use by the community can only make it better.</p>\n\n\n\n<p>Get an overview of the <a href=\"https://make.wordpress.org/core/6-3/\">6.3 release cycle</a>, check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-3/\">6.3-related posts</a>, and review the <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">new features in WordPress 6.3</a>. Save the date for a <a href=\"https://wordpress.org/news/2023/07/6-3-live-product-demo/\">live product demo</a> scheduled for Thursday, July 20, 2023, at 16:00 UTC (<a href=\"https://us02web.zoom.us/j/88141234315?pwd=TE1Odk5Wd0hiVlNYWHB5Q2xCYkhSZz09\">Zoom link</a>). This live demo will be a great opportunity to join the WordPress community to celebrate the accomplishments of 6.3 and this final chapter of <a href=\"https://make.wordpress.org/core/2023/02/04/phase-2-finale/\">Phase 2</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">RC1 highlights</h2>\n\n\n\n<p>Thanks to the many WordPress beta testers, this release contains 40+ (Editor) and 80+ (Trac) updates since the <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-beta-4/\">Beta 4 release</a>. Keep it up WordPressers!</p>\n\n\n\n<p>Notable updates for this release include:</p>\n\n\n\n<ul>\n<li>WordPress database error when installing PHPUnit tests (<a href=\"https://core.trac.wordpress.org/ticket/58673\">#58673</a>)</li>\n\n\n\n<li>Use <code>_get_block_template_file</code> function and set $area variable (<a href=\"https://github.com/WordPress/gutenberg/pull/52708\">#52708</a>)</li>\n\n\n\n<li>Indicate when a theme supports the Site editor in the Themes REST API response (<a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/58123\" target=\"_blank\">#58123</a>)</li>\n\n\n\n<li><code>bulk_edit_posts()</code> function needs an action hook (<a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/28112\" target=\"_blank\">#28112</a>)</li>\n\n\n\n<li>Allow editing existing footnote from formats toolbar (<a href=\"https://github.com/WordPress/gutenberg/pull/52506\">#52506</a>)</li>\n\n\n\n<li>Patterns: Add client side pagination to patterns list (<a href=\"https://github.com/WordPress/gutenberg/pull/52538\">#52538</a>)</li>\n\n\n\n<li>Trim footnote anchors from excerpts (<a href=\"https://github.com/WordPress/gutenberg/pull/52518\">#52518</a>)</li>\n</ul>\n\n\n\n<p>Browse the technical details for issues addressed since Beta 4 using these queries:</p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.3\">GitHub commits for 6.3</a></li>\n\n\n\n<li>Closed <a href=\"https://core.trac.wordpress.org/query?status=accepted&amp;status=closed&amp;changetime=07%2F11%2F2023..07%2F18%2F2023&amp;milestone=6.3&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Trac tickets</a> since July 11</li>\n</ul>\n\n\n\n<p>For a recap of what’s coming in 6.3, please refer to the <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">Beta 2 post</a>, which summarizes key features.</p>\n\n\n\n<p>You can also dig into technical information about various components in 6.3:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/core-editor-improvement-advancing-the-power-of-patterns/\">Core Editor Improvement: Advancing the Power of Patterns</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/image-performance-enhancements-in-wordpress-6-3/\">Image performance enhancements in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/improvements-to-the-cache-api-in-wordpress-6-3/\">Improvements to the Cache API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/registering-scripts-with-async-and-defer-attributes-in-wordpress-6-3/\">Registering scripts with `async` and `defer` attributes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/i18n-improvements-in-6-3/\">I18N Improvements in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/configuring-development-mode-in-6-3/\">Configuring development mode in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/layout-updates-in-the-editor-for-wordpress-6-3/\">Layout updates in the editor for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/wp_query-used-internally-in-get_pages/\">WP_Query used internally in get_pages()</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/improved-caching-for-database-queries-in-wp_user_query/\">Improved Caching for Database Queries in WP_User_Query</a>&nbsp;</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/social-icons-block-applied-colors-now-dynamically-update-based-on-theme-json-and-global-styles/\">Social Icons block: Applied colors now dynamically update based on theme.json and Global Styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-block-selectors-api/\">Introducing the Block Selectors API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/improvements-to-the-cache-api-in-wordpress-6-3/\">Improvements to the Cache API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Introducing the WordPress Command Palette API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-editor-changes-in-wordpress-6-3/\">Miscellaneous Editor changes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/bundled-themes-dropping-internet-explorer-scripts-and-styles/\">Bundled themes dropping Internet Explorer scripts and styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-developer-changes-in-wordpress-6-3/\">Miscellaneous developer changes in WordPress 6.3</a></li>\n</ul>\n\n\n\n<p>For a compilation of the dev notes above and more, read the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">comprehensive WordPress 6.3 Field Guide</a>.&nbsp;&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Test the new features in WordPress 6.3</h2>\n\n\n\n<p>Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute—whether you have experience or not. While testing the upgrade process is essential, trying out new features is too.&nbsp;</p>\n\n\n\n<ul>\n<li>Encountered an issue? Please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</li>\n\n\n\n<li>New to testing? This <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">detailed guide</a> is a great place to start if you’ve never tested a beta/RC release.</li>\n\n\n\n<li>Want to know more about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> in the <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Vulnerability bounty doubles during the Beta/RC phases</h2>\n\n\n\n<p>The monetary reward for reporting new, unreleased security vulnerabilities is doubled between the Beta 1 release and the final release candidate (RC). Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Get WordPress 6.3 RC1</h2>\n\n\n\n<p>You can test WordPress 6.3 RC1 in three ways:</p>\n\n\n\n<ul>\n<li><strong>Option 1:</strong> Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</li>\n\n\n\n<li><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.3-RC1.zip\">RC1 version (zip)</a>.</li>\n\n\n\n<li><strong>Option 3:</strong> Use the following WP-CLI command:<br><code>wp core update --version=6.3-RC1</code></li>\n</ul>\n\n\n\n<p>The current target for the final release is <strong>August 8, 2023</strong>, about three weeks away. Your help testing this version ensures everything in this release is the best.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thanks to WordPress plugin and theme developers</h2>\n\n\n\n<p>Do you build plugins and themes? Your products play an integral role in extending the functionality and value of WordPress for users of all types worldwide.&nbsp;</p>\n\n\n\n<p>Chances are, you have already been testing your latest themes and plugins with WordPress 6.3 betas. With RC1, you will want to complete your testing and update the “<em>Tested up to”</em> version in your plugin’s readme file to 6.3.&nbsp;</p>\n\n\n\n<p>If you find compatibility problems, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Help translate WordPress</h2>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Português? Русский? 日本? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages.</a> This release also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a> point of the 6.3 release cycle.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Haiku for RC1</h2>\n\n\n\n<p>RC1 is here<br>Hold your applause ‘til the end<br>Download, test, repeat</p>\n\n\n\n<p><em>Thank you to the contributors who collaborated on this post: </em><a href=\"https://profiles.wordpress.org/dansoschin/\"><em>@DanSoschin</em></a>, <a href=\"https://profiles.wordpress.org/meher/\"><em>@Meher</em></a>, and <a href=\"https://profiles.wordpress.org/jpantani/\"><em>@JPantani</em></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:\"15431\";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: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:87:\"WP Briefing: Episode 60: Sneak a Peek at WordPress 6.3 with Special Guest Mike Schroder\";s:7:\"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:109:\"https://wordpress.org/news/2023/07/episode-60-sneak-a-peek-at-wordpress-6-3-with-special-guest-mike-schroder/\";s: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, 17 Jul 2023 13: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=15398\";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:176:\"Join WordPress Executive Director Josepha Haden Chomphosy and Core Tech Lead Mike Schroder as they discuss their favorite new features and enhancements coming in WordPress 6.3.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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/2023/07/WP-Briefing-060.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:17:\"Nicholas Garofalo\";s: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:31362:\"\n<p>Join WordPress Executive Director Josepha Haden Chomphosy and Core Tech Lead Mike Schroder as they discuss their favorite new features and enhancements coming in WordPress 6.3.</p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to&nbsp;<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>Host: <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br>Guests: <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a><br>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/eidolonnight/\">Nicholas Garofalo</a><br>Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/6-3/\">WordPress 6.3 Development Cycle and Release Team</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3:&nbsp;Rollback&nbsp;for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/core-editor-improvement-advancing-the-power-of-patterns/\">Core Editor Improvement: Advancing the power of Patterns</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/22/core-editor-improvement-smoother-site-editing/\">Core Editor Improvement: Smoother Site Editing</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/29/whats-new-in-gutenberg-16-1-29-june/#text-blocks-now-with-footnotes\">Text blocks: now with footnotes</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/?s=%22details+block%22#details-block\">The Details block is now stable</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a></li>\n\n\n\n<li><strong>A small list of big things</strong>\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/07/05/wcus-2023-contributor-day-help-needed/\">WCUS 2023 Contributor Day: Help Needed!</a> &#8211; The WordCamp US Contributor Team is asking for help with their new approach to organizing this year’s Contributor Day.</li>\n\n\n\n<li>Watch the <a href=\"https://us.wordcamp.org/2023/news/\">WCUS News page</a> for a call for open-source-related art, poetry, and music.</li>\n\n\n\n<li><a href=\"https://wordpress.org/news/category/releases/\">WordPress Releases</a> &#8211; Find WordPress 6.3 RC1 and other releases.</li>\n\n\n\n<li><a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/community/2023/06/16/celebrating-the-completion-of-the-meetup-reactivation-project/\" target=\"_blank\">Celebrating the Completion of the Meetup Reactivation Project</a></li>\n</ul>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/06/22/attention-wordpress-event-organizers-this-important-workshop-on-july-20-2023-is-for-you/\">WP Diversity Workshop for WordPress event organizers</a> &#8211; Join this 2.5-hour interactive watch party online on July 20, 2023, to learn how to create welcoming and diverse WordPress&nbsp;Meetups&nbsp;and WordCamps for your WordPress community.</li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/6-3-live-product-demo/\">6.3 Live Product Demo</a></li>\n</ul>\n</li>\n</ul>\n\n\n\n<span id=\"more-15398\"></span>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<p><em>( Intro music )</em></p>\n\n\n\n<p>[00:00:00] <strong>Josepha:</strong> 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.</p>\n\n\n\n<p>I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p><em>( Intro music continues )</em></p>\n\n\n\n<p>[00:00:39] <strong>Josepha:</strong> We have with us Mike Schroder. They are on the WordPress 6.3 release squad, and I believe, Mike, that your role there is the Core Tech Lead.</p>\n\n\n\n<p>Is that right?</p>\n\n\n\n<p>[00:00:50] <strong>Mike:</strong> Yeah, that&#8217;s correct. I&#8217;m one of the tech leads along with Andrew Ozz and David Baumwald.</p>\n\n\n\n<p>[00:00:56] <strong>Josepha:</strong> Thank you so much for being able to join me today.</p>\n\n\n\n<p>[00:00:58] <strong>Mike:</strong> Thanks for inviting me.</p>\n\n\n\n<p>[00:01:00] <strong>Josepha:</strong> This is our 6.3 sneak peek, and so it has a little bit of a &#8220;What do you wish people knew about the upcoming release?&#8221; aspect to it, but it also has like a &#8220;What do we find most interesting about the work that we&#8217;ve been doing in this release so far?&#8221;</p>\n\n\n\n<p>As the Core Tech Lead, what currently is like your favorite thing that y&#8217;all are getting into the release or the thing that&#8217;s the most interesting or happiest to finally be done with it?</p>\n\n\n\n<p>[00:01:27] <strong>Mike:</strong> Yeah, I think there are a couple of things. So I was playing around with the release in anticipation for this, and one of the favorite sort of user-facing features that I played with was the live preview for Block themes. And it just makes it feel so intuitive to open up a new Block theme and play around with Styles and different designs and see how it looks.</p>\n\n\n\n<p>I really enjoyed it, opened it up on my personal site and started messing around with different color palettes and things like that, and it was a lot of fun.</p>\n\n\n\n<p>[00:01:55] <strong>Josepha:</strong> Like it&#8217;s a live preview, but also with all of the content they already have on your site.</p>\n\n\n\n<p>[00:01:59] <strong>Mike:</strong> It does use the templates and so it, it shows some of the live content from the from the homepage, for instance, and some of those blocks, and some of the other areas are editing the templates rather than the live content. But yes, it was neat to play around with it and see my blog content in the background and yeah, some real-time design. That was really fun.</p>\n\n\n\n<p>[00:02:20] <strong>Josepha:</strong> And has that been a big focus of the release? Was it something that you and the other Tech Leads both for the Core side and the Editor side just had to focus a lot on in this round of the release?</p>\n\n\n\n<p>[00:02:33] <strong>Mike:</strong> So I was not a part of a lot of that work. So I&#8217;m not gonna take credit for it. I think that is the culmination, all of those different things together of a lot of the things that the Editor team has been working on for some time. And it was just, it was really refreshing to see it.</p>\n\n\n\n<p>The other feature that I had in my head, if it&#8217;s okay for me to talk about a second one, is something that has been trying to get landed in Core for quite some time, and that has to do with automatic rollbacks. If plugin updates or theme updates start to happen and then they fail in the middle of that update, then it will automatically restore the previous version of the plugin or theme. And that&#8217;s a pretty big improvement over the previous behavior, which could result not as well.</p>\n\n\n\n<p>[00:03:16] <strong>Josepha:</strong> Right. Where you would just have a site that was like, &#8220;Best of luck to you,&#8221; and emails that told you what kind of probably was broken. I shouldn&#8217;t be sassy about that. The WSOD protection that we put in really was a huge leap forward for the way that we handled that in the past, but this is great news.</p>\n\n\n\n<p>[00:03:34] <strong>Mike:</strong> Yes, I was so excited when that landed, and this is I guess the next part of that. And it&#8217;s been, yeah, it&#8217;s been in the works for a long time, through testing and there was an entire team that did a lot of work on it in a future plugin. And I&#8217;m very excited to see it land.</p>\n\n\n\n<p>[00:03:49] <strong>Josepha:</strong> That&#8217;s great. That&#8217;s one of those things that we hope a WordPress user never has to know exists. Like it&#8217;s always our hope that the plugins work perfectly and the themes work perfectly. And so unless something is going really wrong you won&#8217;t know that&#8217;s a feature. Surely it tells you like, &#8220;This didn&#8217;t update by the way. Go figure that out.&#8221;</p>\n\n\n\n<p>[00:04:08] <strong>Mike:</strong> Yeah, the whole idea of this particular feature is to make it feel more like everything is smooth and one site continues to work, and the underpinning of it has been going in for a couple of releases. The whole idea is to make the experience more smooth for users.</p>\n\n\n\n<p>[00:04:21] <strong>Josepha:</strong> Cool. That auto rollback actually was not on my radar as a thing to keep an eye out for in this release, so that&#8217;s really neat. One of the things that I saw as I was doing, I don&#8217;t do any complicated testing. I mostly do like testing of what users would expect with the workflow with my eyeballs and a mouse.</p>\n\n\n\n<p>[00:04:40] <strong>Mike:</strong> Well, that&#8217;s, that&#8217;s wonderful.</p>\n\n\n\n<p>[00:04:42] <strong>Josepha:</strong> I&#8217;m not doing any of the fancy testing with like code, but one of the things that I saw as I was working through my general, just regular test, my spot check click around test was that it looks like there&#8217;s some consolidation, some consolidation of the navigation in the Editor.</p>\n\n\n\n<p>So, it had I think maybe Pages and Templates in there before, and now there are five things in there. Do you have a bit of a concept of what went into that, what we&#8217;re hoping everybody&#8217;s gonna be able to accomplish there now?</p>\n\n\n\n<p>[00:05:13] <strong>Mike:</strong> So I, I was not involved as much in the later stages of this, but I was in a couple of the first couple iterations of this particular feature, and I think this is, I don&#8217;t want to guess the exact amount of times that this has been sort of reworked so the experience is good for users, there been so much effort that&#8217;s gone into helping navigation be a comfortable experience for people to work with within the site editor.</p>\n\n\n\n<p>And what I have heard is that everyone that&#8217;s worked on it is very excited that it&#8217;s landing and that users will be able to experience it and more easily work with navigation.</p>\n\n\n\n<p>[00:05:46] <strong>Josepha:</strong> Yeah, I think that navigation is one of those things, both like creating good navigation as a software designer, but then also as somebody who&#8217;s like putting together a website. Good navigation is hard to do. And it&#8217;s design where everyone&#8217;s, &#8220;Good design is invisible,&#8221; and we don&#8217;t actually mean that.</p>\n\n\n\n<p>We don&#8217;t mean it&#8217;s invisible. We mean it&#8217;s not intrusive, it doesn&#8217;t get in your way, it acts in the way you think it&#8217;s going to act, and it knows or has a good guess about where you&#8217;re trying to be, what you&#8217;re trying to do in that particular moment on a site. And so like the fact that we&#8217;ve had probably hundreds of people working on navigation inside the software is no surprise to me, but I bet it&#8217;s gonna be a surprise to a lot of people.</p>\n\n\n\n<p>They&#8217;ll be like, &#8220;It&#8217;s like folders, right?&#8221; Turns out it&#8217;s not.</p>\n\n\n\n<p>[00:06:33] <strong>Mike:</strong> Yes, it was, incredibly, incredibly difficult to design. I know there was, the couple instances that I was most involved with, I know there was so much discussion about how folks are used to working with navigation within WordPress and sort of what expectations are for menus and what expectations are for, you know, users both that have been using WordPress for a long time and users who, who are new to WordPress, and the Site Editor. And having all of those considerations from the various stakeholders just makes it a really difficult design problem.</p>\n\n\n\n<p>[00:07:03] <strong>Josepha:</strong> Yeah, absolutely. And I mean, not for nothing like the WP Admin itself, that dashboard inside the WordPress software, like that&#8217;s been due for an update for quite some time. This is the same one that I think we&#8217;ve had since 2008, which was also very disruptive in its way. And so like it was a good disruption, but we really haven&#8217;t made any substantial changes to it since then. And part of it is because there are so many use cases for WordPress, and we don&#8217;t have a good concept of that because we don&#8217;t have a lot of tracking in the software. We don&#8217;t take anyone&#8217;s like data about what field they work in. We don&#8217;t do any of that.</p>\n\n\n\n<p>And so it&#8217;s hard for us to account for all of the use cases and get a really excellent design for a majority of the people that are gonna be using it. Because like we don&#8217;t actually build software for robots around here. Not yet.</p>\n\n\n\n<p>[00:07:54] <strong>Mike:</strong> <em>( laughs )</em> Yeah.</p>\n\n\n\n<p>[00:07:55] <strong>Josepha:</strong> No, I don&#8217;t think we&#8217;ll ever be robot-building software.</p>\n\n\n\n<p>[00:07:57] <strong>Mike:</strong> I doubt it, but I also don&#8217;t wanna predict the future. No, I agree. And I think that is absolutely one of the super tricky things about building WordPress. I&#8217;m really glad that WordPress doesn&#8217;t collect any of that data. And it makes it so that the sort of testing that, that you were talking about, in user studies and things like that, are incredibly helpful for figuring out what the best approaches are.</p>\n\n\n\n<p>[00:08:21] <strong>Josepha:</strong> Yeah, absolutely. Since we&#8217;re just in the zone of like things that Josepha likes and that she saw, I&#8217;m gonna also do this other thing. In one of the last couple of releases, the Style Book came out, which was such an exciting thing for me. It&#8217;s great to be able to see whether or not all of the style choices you&#8217;ve made in various parts of the admin or in the code, depending on how you&#8217;re doing things.</p>\n\n\n\n<p>It&#8217;s nice to make sure, in one big set, that like everything is coherent. Everything that you thought you changed did get changed and it looks the way that you wanted it to look in concert with everything else in there. And it looked like we now have revisions specific to styles, like styling things across the site, have revisions.</p>\n\n\n\n<p>Is that right?</p>\n\n\n\n<p>[00:09:06] <strong>Mike:</strong> That&#8217;s correct.</p>\n\n\n\n<p>[00:09:07] <strong>Josepha:</strong> I think that&#8217;s a super big deal because as somebody who is just, I&#8217;m filled with techno joy. I don&#8217;t always want to look at a manual. I just want to do stuff until it breaks and then hope I can fix it. The hoping you can fix it part <em>( laughs )</em> can sometimes be really nerve-wracking if what you&#8217;re doing is creating a site for a client or you are working on your first big theme and you wanna make sure that&#8217;s all together.</p>\n\n\n\n<p>And so style revisions to go along with some of the Editor revisions I think is a great change.</p>\n\n\n\n<p>[00:09:39] <strong>Mike:</strong> Same. Absolutely. This is not a feature I have, done too much particular playing with, at this point.</p>\n\n\n\n<p>[00:09:44] <strong>Josepha:</strong> You&#8217;re a very skilled developer.</p>\n\n\n\n<p>[00:09:46] <strong>Mike:</strong> I appreciate that. That&#8217;s very kind. I think that adding revisions to anything that folks regularly change in posts or pages is, really important. And making it very easy to get to both make forward changes and also to realize, &#8220;Oh, there was this other change that was, you know, there was three clicks ago that I really loved. How do I get back to that? How do I see the history?&#8221; And that&#8217;s what I love about that sort of feature. Being able to really easily see, &#8220;Okay, when did this happen? In what series? How can I jump back and get to that spot that felt right.&#8221;</p>\n\n\n\n<p>[00:10:19] <strong>Josepha:</strong> Yes. Anytime that we can have that kind of historical layering of things, I think is good. I went to a meetup. I like to go to meetups that are 101 content, because that&#8217;s like the folks that really need new refined processes the most. But I went to a 101 meetup a couple years back, and I remember that the presenter was saying like, take a theme that you pretty much like and make some changes until you have a theme that you love.</p>\n\n\n\n<p>And people kept saying like, &#8220;Yeah, but what if I break everything?&#8221; And he said in the middle of that to everyone, not knowing who I was because who cares? He was like, &#8220;Yeah, WordPress is not gonna let you do anything that will completely destroy a theme or completely destroy your site. There&#8217;s an undo button and you can just undo it. It&#8217;ll be fine.&#8221; And I was like, &#8220;Yeah, that is true now.&#8221;</p>\n\n\n\n<p>[00:11:15] <strong>Mike:</strong> I love that.</p>\n\n\n\n<p>Gosh. I mean, I remember when I was playing with my first WordPress site, and even to make really small changes with navigation or with menus, I had to go in and make changes to the PHP code, and none of that was protected.</p>\n\n\n\n<p>[00:11:31] <strong>Josepha:</strong> You&#8217;re like, &#8220;This is free-range me out here.&#8221;</p>\n\n\n\n<p>[00:11:34] <strong>Mike:</strong> I love, absolutely. I love that is just no longer the case anymore and it&#8217;s super easy to go in and play with a theme and make changes without worrying about any of that. And, I mean, I may be a developer, but that&#8217;s the way I would prefer. That&#8217;s the way I go in and edit my sites now too.</p>\n\n\n\n<p>If I wanna mess with a theme, go in, and it was the Customizer and now it&#8217;s the Site Editor, and it&#8217;s great.</p>\n\n\n\n<p>[00:11:58] <strong>Josepha:</strong> Yeah, it&#8217;s a leap forward, I think, leap forward.</p>\n\n\n\n<p>So another thing that I ran into, I guess it&#8217;s two things that I ran into while I was wandering around in there recently, and it&#8217;s possible that I ran into these two things because I just personally love them the most, but the Footnotes block looks like it is potentially going to land.</p>\n\n\n\n<p>I have been so excited about this block for no reason. I have dreams about it. I wish that were not a true statement. I did recently have a dream about it. I dreamt that it didn&#8217;t land in the release, and that I went to talk to Ella about it and she was like, &#8220;Oh, yeah, publishers have given up on footnotes and they&#8217;re just doing end notes now, and so I decided not to ship it.&#8221; Like this is a dream I had.</p>\n\n\n\n<p>And so I&#8217;m a little worried, but tomorrow I&#8217;m gonna be like, &#8220;Hey, Ella, friend, what&#8217;s happening?&#8221; And she&#8217;s gonna be like, &#8220;Yeah, end notes are where it&#8217;s at.&#8221;</p>\n\n\n\n<p>And then the other block that I&#8217;m personally very excited about is what I like to call the &#8220;Spoilers block.&#8221; I know it is not &#8220;Spoilers&#8221;, it&#8217;s the called &#8220;Details,&#8221; but anytime I&#8217;ve ever used that after like early, early times in my career, early in my career, I used to call them accordions and I don&#8217;t know why, but now I call them &#8220;Spoiler blocks.&#8221; But I know it&#8217;s actually called the &#8220;Details block,&#8221; where you can put in a piece of information at the top, essentially a title, and then expand it to get more information in there.</p>\n\n\n\n<p>So are both of those actually gonna land or am I gonna be heartbroken?</p>\n\n\n\n<p>[00:13:24] <strong>Mike:</strong> As far as I&#8217;m aware, yes. I know that I haven&#8217;t checked recently on the latter, but I was just playing with the Footnotes block, and it&#8217;s really cool. I really like the interface. I think that it makes it really simple to add quick footnotes to, anywhere in the site, and everything feels very automated and simple.</p>\n\n\n\n<p>[00:13:46] <strong>Josepha:</strong> As someone who every, almost everything that I&#8217;ve ever written, I want to have an aside in it, which essentially just becomes a footnote. One of the weirdest parts about Gutenberg at first is that like, the asterisk way of doing it, where you just put one after the word and then put one at the start. The asterisk makes it into a list block, and for a long time you also couldn&#8217;t escape it, and so I had to do a lot of fancy footwork to get my footnotes to work for a while, and so I&#8217;m excited for that.</p>\n\n\n\n<p>[00:14:15] <strong>Mike:</strong> I think I had similar discouraging moments with lists and I was really encouraged by the way the footnotes select, and I&#8217;m sure there are other ways to do it too, but select, right-click, footnote, and they all automatically go to the bottom order, all of it. It&#8217;s a really smooth process.</p>\n\n\n\n<p>[00:14:31] <strong>Josepha:</strong> Yeah. I&#8217;m really excited about it. I know that like for the last two or three major releases, a bulk of what we&#8217;ve been offering to folks is like, design stuff, and we&#8217;re just like, &#8220;It&#8217;s a bunch of design things,&#8221; but this release actually has over 500 different tickets that were marked as features or enhancements that are going into it.</p>\n\n\n\n<p>And so, you and I have talked about seven things so far, but I also understand that there are literally 500 tickets or so that were marked as &#8220;feature&#8221; or &#8220;enhancement.&#8221; And so we are definitely not gonna catch everything that goes in there, but there is kind of a group of another group of enhancements to the design tools because of course this wraps up the bulk of phase two so that we can all move into the collaborative editing phase.</p>\n\n\n\n<p>And so like, do you have a sense for, like is this just mostly polish for those design and like image media management kinds of things? Or are there big features that are coming in those also?</p>\n\n\n\n<p>[00:15:29] <strong>Mike:</strong> My understanding is that it&#8217;s all of the above. I think that there are a lot of new features being added along with polish to those features. And I think the neatest thing is that there are also a lot of enhancements that are focused on bringing all of those things together and making it feel like more of a connected experience. And so I think that&#8217;s my favorite part so far in testing that I&#8217;ve been doing of, the many, as you mentioned, so many additional new features that, that we&#8217;re added this time. And, I have a huge amount of respect for, you know, everyone that works, for the huge amount of folks that work on it across the project.</p>\n\n\n\n<p>[00:16:07] <strong>Josepha:</strong> Yeah. Yeah, you&#8217;ve given a couple of answers where you were like, &#8220;I wasn&#8217;t personally involved in that,&#8221; but on the one hand, I was like, &#8220;Everyone knows that we&#8217;re not all personally involved in it,&#8221; but on the other hand, not everybody knows how many people touch all of these tickets and features and bugs and tests as we get them ready to be put into the release.</p>\n\n\n\n<p>Last year, I was super worried that like, post active fear of Covid, and now everyone just like deciding that they&#8217;ve done their best and they&#8217;re going back out there. Like I was really worried that everyone was gonna be having so much fun out of the house, that they would stop contributing.</p>\n\n\n\n<p>[00:16:43] <strong>Mike: </strong><em>( laughs )</em></p>\n\n\n\n<p>[00:16:44] <strong>Josepha:</strong> I know, but we actually had one of our most active years for contributors last year, which means that especially for the releases that are coming this year, the people who worked all the way through last year, like almost 2000, I think, contributors, just to code, that&#8217;s not even like the contributors who worked on reigniting the community and putting together events, all of those things like all of the other things that we do.</p>\n\n\n\n<p>It&#8217;s, it is remarkable to me that when we look at any feature it is definitely been looked at or worked on, or at least passed through desks of easily a hundred people, even for small little things. And I just love that, the depth of the work we do.</p>\n\n\n\n<p>[00:17:29] <strong>Mike:</strong> Absolutely. Same. I remember wondering about that too, about your same sort of concerns. And it&#8217;s been really great to be a part of the community as it&#8217;s essentially, as it&#8217;s grown together again, I think is maybe the best way I can think of to say it. That&#8217;s been quite wonderful.</p>\n\n\n\n<p>[00:17:46] <strong>Josepha:</strong> Yeah, absolutely. Mike, this has been an absolutely delightful conversation. Is there anything you would like to leave us with before we move on to our small list of big things today?</p>\n\n\n\n<p>[00:17:58] <strong>Mike:</strong> The release candidate for 6.3 comes out tomorrow, and what I would love the most is if anyone in interested in testing, anyone, whether it&#8217;s testing exactly like this sort of testing that you were just talking about, with loading the RC and clicking around and seeing what works the best and what doesn&#8217;t work and what feels good and what doesn&#8217;t, or if it&#8217;s testing, if you&#8217;re like a plugin or a theme developer, testing with those things to see how things work and looking for backwards compatibility breaks that are unexpected so we can fix them before release.</p>\n\n\n\n<p>If you work at a hosting company or you make sites for folks, helping test that to see that it works really well on your platforms for folks that you work with. I think all of those would be super helpful, and there are testing instructions that can be found on the release candidate announcement page.</p>\n\n\n\n<p>[00:18:43] <strong>Josepha:</strong> Perfect. Wonderful. Mike, thank you so much for joining me today.</p>\n\n\n\n<p>[00:18:47] <strong>Mike:</strong> Thank you so much. I&#8217;ve really appreciated the time.</p>\n\n\n\n<p><em>( Musical interlude )</em></p>\n\n\n\n<p>[00:18:49] <strong>Josepha:</strong> That brings us now to our small list of big things. It&#8217;s actually kind of a big list of big things today. So first on the list is that WordCamp US has a Contributor Day and we need your help. So the WordCamp US Contributor Team has contacted all of the team reps asking for help with a new approach to organizing this year&#8217;s Contributor Day.</p>\n\n\n\n<p>The hope is to make the initial steps to contribution easier. And so they&#8217;re asking teams who will be present to help participate with that process. I will have a link in the show notes to the post that has more information.</p>\n\n\n\n<p>Also second thing related also to WordCamp US is that I would like to put out a call for art and music, especially that is related to open source and the freedoms that it brings. So one of the things that makes WordPress so fantastic in the world is not only that like we&#8217;re creating opportunities for folks, we&#8217;re offering economic, and I don&#8217;t know, philosophical freedoms to people, but we frequently do think about that in the vein of, you know, commerce and work and the economy, and we rarely think about it in the obviously related subset of arts and music. And so I also would like to put out a call for any open source related arts or poetry or music that you all have created.</p>\n\n\n\n<p>I would love to be able to display some of that at WordCamp US this year. I don&#8217;t think I have a link quite yet for a call for that, but as soon as I do, I&#8217;ll send it out on social media and other places.</p>\n\n\n\n<p>The third thing on our small list of big things is that, as Mike mentioned, tomorrow is the RC1 release date for WordPress 6. 3, and you can help us to test that.</p>\n\n\n\n<p>It&#8217;s always good for us to test any release as it&#8217;s working its way through the process, but certainly by the time it gets to RC, that&#8217;s when we are pretty sure it&#8217;s going to be as stable as possible. We&#8217;ve done some soft string freezes and feature freezes-ish. And so that&#8217;s about as stable as it&#8217;s going to get. And so I encourage everyone to get out and test that as much as possible. And in all the ways that Mike shared.</p>\n\n\n\n<p>Item number four, we are also reaching a milestone. So, a couple weeks ago, we reached the one year milestone for the start of the Meetup Reactivation Project.</p>\n\n\n\n<p>We have about 50% of our Meetup groups reactivated. If you are listening to this and you are a Meetup organizer and you haven&#8217;t heard from anyone from WordCamp Central or the community team, I&#8217;m going to put a link to the notes, or rather, a link to the post in the notes so that you can also learn more about that.</p>\n\n\n\n<p>You don&#8217;t have to hear from us in order to get your meetup group going again. But, if you are interested to know what has gone into that process, or always just want to know what&#8217;s going on in the community side of things, that&#8217;s a good place to start. So there will be a link to that in the show notes as well.</p>\n\n\n\n<p>Number five, WordPress event organizers in general, but also anyone. So there are two different events coming up on Thursday, on July 20th.</p>\n\n\n\n<p>First, there is the WP Diversity Workshop. This is added workshop for us to help promote the ideas of building diverse and inclusive WordPress events. And so, this is not necessarily one of those events for people who want to increase their skills in speaking so that they are able to, to speak confidently at a WordPress event. These are for people who are organizing WordPress events and want to make them more inclusive and more diverse from the start. I encourage any organizer to go to it, regardless of whether you&#8217;re doing WordPress events or not, but certainly for WordPress events that is something that we care about and want to have included in our entire event series.</p>\n\n\n\n<p>The other thing that&#8217;s happening on Thursday, because like I said, two things happening on Thursday, is that we have a WordPress 6. 3 live product demo. We&#8217;ve been doing these for the last few releases, and you get a couple of people from either the release squad, or like folks who do that kind of developer relations work in WordPress, who sit down and just do a general click-through, a general run through, a public demo of what we expect to land in the release.</p>\n\n\n\n<p>And so that also is on Thursday. I will also have a link for you in the show notes. If you are listening to this not on WordPress.org and you don&#8217;t know where the show notes are, don&#8217;t worry. The show notes are on WordPress.org. You go to WordPress.org/news/podcast and in the transcript there are show notes that have links to all of these things.</p>\n\n\n\n<p>And that, my friends, is your big, small list of big things. Thank you for tuning in today for the WordPress Briefing. Thank you again for my guest, Mike&#8217;s, time. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\n\n\n\n<p><em>( Outtro music )</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:\"15398\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	hourly	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:11:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 23 Aug 2023 04:20:23 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:12:\"max-age=3600\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Thu, 17 Aug 2023 14:54:03 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'),(2514,'category_children','a:0:{}','yes'),(229,'recently_activated','a:1:{s:41:\"password-protected/password-protected.php\";i:1692807786;}','yes'),(2307,'_transient_timeout_avada_studio','1692822478','no'),(2588,'_transient_timeout_feed_bc9fd7f8eaf5e82b6773ce761d04a9c6','1692807614','no');
INSERT INTO `wp_gc2023options` VALUES (2589,'_transient_feed_bc9fd7f8eaf5e82b6773ce761d04a9c6','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:49:\"\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:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Avada Website Builder\";s:7:\"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:17:\"https://avada.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:\"Tue, 22 Aug 2023 11:56: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: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.2.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:85:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"Avada Hosting 2: 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:73:\"https://avada.com/blog/avada-hosting-2-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:81:\"https://avada.com/blog/avada-hosting-2-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:\"Tue, 22 Aug 2023 11:53: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: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: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:\"\";}i:4;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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"https://avada.com/blog//\";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:320:\"Say hello to Avada Web Hosting. This Avada prebuilt website is ideal for beginners, marketers, professionals, and anyone in between. Avada Hosting 2 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 ...\";s: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:\"schanteldwl\";s: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:124631:\"<p><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-1 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-0 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:0px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div><div class=\"fusion-text fusion-text-1\"><p>Say hello to <a href=\"https://avada.website/hosting-2/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Web Hosting</a>. This <a href=\"https://1.envato.market/jrZ2g6\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt website is ideal for beginners, marketers, professionals, and anyone in between. Avada Hosting 2 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 model or venture using the Avada Website Builder.</p>\n<p>In this article, we will explore the header, footer, and homepage layouts that make up the overall website structure to explore how the <a href=\"https://avada.com/features/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> is used to create successful websites. The <a href=\"https://avada.website/hosting-2/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Web Hosting</a> article is a part of a deconstruction series and is the follow-on article that explores the <a href=\"https://avada.com/blog/avada-life-coach-deconstructing-a-prebuilt-website/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Life Coach</a> prebuilt website. It is important to highlight that <a href=\"https://1.envato.market/jrZ2g6\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> gives you total design freedom to create unique layouts for your website that work, with the only limit being your imagination.</p>\n</div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-0 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-xlarge button-custom fusion-button-default button-1 fusion-button-span-yes fusion-button-default-type\" style=\"--button_accent_color:var(--awb-color1);--button_accent_hover_color:var(--awb-color1);--button_border_hover_color:var(--awb-color1);--button_gradient_top_color:var(--awb-color8);--button_gradient_bottom_color:var(--awb-color8);--button_gradient_top_color_hover:hsla(var(--awb-color8-h),var(--awb-color8-s),calc(var(--awb-color8-l) - 16%),var(--awb-color8-a));--button_gradient_bottom_color_hover:hsla(var(--awb-color8-h),var(--awb-color8-s),calc(var(--awb-color8-l) - 16%),var(--awb-color8-a));\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/hosting-2/\"><span class=\"fusion-button-text\">View Live</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-1 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-xlarge button-custom fusion-button-default button-2 fusion-button-span-yes fusion-button-default-type\" style=\"--button_accent_color:var(--awb-color1);--button_accent_hover_color:var(--awb-color1);--button_border_hover_color:var(--awb-color1);--button_gradient_top_color:var(--awb-color8);--button_gradient_bottom_color:var(--awb-color8);--button_gradient_top_color_hover:hsla(var(--awb-color8-h),var(--awb-color8-s),calc(var(--awb-color8-l) - 16%),var(--awb-color8-a));--button_gradient_bottom_color_hover:hsla(var(--awb-color8-h),var(--awb-color8-s),calc(var(--awb-color8-l) - 16%),var(--awb-color8-a));\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/jrZ2g6\"><span class=\"fusion-button-text\">Purchase For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-1 fusion-sep-none fusion-title-text fusion-title-size-two awb-exclude-from-toc\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Overview</h2></div><div class=\"awb-toc-el awb-toc-el--1\" data-awb-toc-id=\"1\" data-awb-toc-options=\"{&quot;allowed_heading_tags&quot;:{&quot;h2&quot;:0,&quot;h3&quot;:1},&quot;ignore_headings&quot;:&quot;&quot;,&quot;ignore_headings_words&quot;:&quot;Overview&quot;,&quot;enable_cache&quot;:&quot;yes&quot;,&quot;highlight_current_heading&quot;:&quot;no&quot;,&quot;hide_hidden_titles&quot;:&quot;yes&quot;,&quot;limit_container&quot;:&quot;post_content&quot;,&quot;select_custom_headings&quot;:&quot;&quot;,&quot;icon&quot;:&quot;fa-angle-right fal&quot;,&quot;counter_type&quot;:&quot;custom_icon&quot;}\" style=\"--awb-item-font-size:var(--awb-typography4-font-size);--awb-item-line-height:var(--awb-typography4-line-height);--awb-item-letter-spacing:var(--awb-typography4-letter-spacing);--awb-item-text-transform:var(--awb-typography4-text-transform);--awb-item-color:var(--awb-color8);--awb-item-color-hover:var(--awb-color5);--awb-item-bg-color-hover:rgba(101,189,125,0);--awb-counter-color:var(--awb-color6);--awb-hover-counter-color:var(--awb-color5);--awb-list-indent:15px;--awb-item-padding-top:3px;--awb-item-padding-right:0;--awb-item-padding-bottom:5px;--awb-item-padding-left:0;--awb-item-font-family:var(--awb-typography4-font-family);--awb-item-font-weight:var(--awb-typography4-font-weight);--awb-item-font-style:var(--awb-typography4-font-style);\"><div class=\"awb-toc-el__content\"></div></div>\n<div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-title title fusion-title-2 fusion-sep-none fusion-title-text fusion-title-size-two\" id=\"features\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Styling and Features</h2></div><div class=\"fusion-text fusion-text-2\"><p>Creating a <a href=\"https://avada.com/blog/how-to-create-a-style-guide-for-your-wordpress-website\" target=\"_blank\" rel=\"noopener noreferrer\">style guide</a> for your website will prove to be invaluable in the future. A style guide will help you to address <a href=\"https://avada.com/documentation/accessibility/\" target=\"_blank\" rel=\"noopener noreferrer\">usability</a>, the user experience, design consistency, and online trends in an organized and consistent manner.</p>\n<p>The <a href=\"https://avada.com/feature/live-visual-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder </a>has a vast array of features and styling options; however, you do not need to use all of them for your website, and this is where your style guide comes in. Decide upfront which styling options align with your brand and which design features are needed to make your website stand out.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-3 fusion-sep-none fusion-title-text fusion-title-size-two\" id=\"performance\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Performance &amp; Optimization</h2></div><div class=\"fusion-text fusion-text-3\"><p><a href=\"https://avada.com/documentation/avada-optimization-guide\" target=\"_blank\" rel=\"noopener noreferrer\">Optimizing</a> your websites for page load speed can be a seemingly complex subject because so many different facets affect how fast a page loads. It can range from the server&#8217;s speed to the options and settings selected, right through to the type and amount of content and even the size of the images added to the page or post.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-4 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\"><h3 class=\"fusion-title-heading title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">The Avada Performance Wizard</h3></div><div class=\"fusion-text fusion-text-4\"><p>The <a href=\"https://avada.com/documentation/how-to-use-the-performance-wizard\" target=\"_blank\" rel=\"noopener noreferrer\">Performance Wizard</a> takes the guesswork out of how to best optimize your <a href=\"https://1.envato.market/jrZ2g6\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> website. To get you started you are presented with a step-by-step interface that will guide you through the process.</p>\n</div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-1 hover-type-none\"><img decoding=\"async\" width=\"1900\" height=\"1345\" alt=\"Performance Wizard Start Screen\" title=\"avada-performance-wizard-start-screen\" src=\"https://avada.com/wp-content/uploads/2022/10/avada-performance-wizard-start-screen.jpg\" class=\"img-responsive wp-image-887419\" srcset=\"https://avada.com/wp-content/uploads/2022/10/avada-performance-wizard-start-screen-200x142.jpg 200w, https://avada.com/wp-content/uploads/2022/10/avada-performance-wizard-start-screen-400x283.jpg 400w, https://avada.com/wp-content/uploads/2022/10/avada-performance-wizard-start-screen-600x425.jpg 600w, https://avada.com/wp-content/uploads/2022/10/avada-performance-wizard-start-screen-800x566.jpg 800w, https://avada.com/wp-content/uploads/2022/10/avada-performance-wizard-start-screen-1200x849.jpg 1200w, https://avada.com/wp-content/uploads/2022/10/avada-performance-wizard-start-screen.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-text fusion-text-5\"><p>What is important to note is that you should build your website first before running the Performance Wizard. Creating your website&#8217;s structure, placing design elements in situ, and formulating content ensures that the system has something to work with when searching for recommendations at each step of the process. The recommendations provided are for options that can be disabled or enabled to enhance overall performance.</p>\n</div><ul style=\"--awb-iconcolor:#ff8b1e;--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-1 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon avada-elements-avada-logo\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><strong>Features</strong><br />\nDisable any features not used on the website, thereby reducing the amount of code that is loaded.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon avada-elements-avada-logo\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><strong>Avada Icons</strong><br />\nScan your website for information about icons that are being used. You can also disable unused icon sets and discover how to optimize existing icons.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon avada-elements-avada-logo\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><strong>Avada Fonts/Typography</strong><br />\nCheck which fonts are being loaded on your website and then optimize how those fonts are served. Fewer variants will mean fewer requests and, therefore, faster loading times.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon avada-elements-avada-logo\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><strong>Avada Elements</strong><br />\nScan your website to discover which Design, Layout, and Form Elements are not used on the website. Disable unused Elements, thereby reducing the amount of code that is loaded.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon avada-elements-avada-logo\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><strong>Optimization</strong><br />\nOptimize how the website&#8217;s CSS and JS assets should be enqueued. These options can have a significant impact on the performance of the page load. However, some of these options can also break functionality if you use a caching plugin, so proceed with caution.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-title title fusion-title-5 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\"><h3 class=\"fusion-title-heading title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Above The Fold Optimization</h3></div><div class=\"fusion-text fusion-text-6\"><p>&#8220;Above the fold&#8221; is the part of a webpage that is immediately visible on your desktop or mobile screen without scrolling down. Traditionally, this digital real estate is where most would choose to display attention-grabbing headlines, important sales/marketing content, images, and even slider plugins as part of the page&#8217;s hero.</p>\n</div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-2 hover-type-none\"><img decoding=\"async\" width=\"1900\" height=\"600\" alt=\"Above The Fold Optimization\" title=\"above-the-fold-compressed\" src=\"https://avada.com/wp-content/uploads/2022/10/above-the-fold-compressed.png\" class=\"img-responsive wp-image-887420\" srcset=\"https://avada.com/wp-content/uploads/2022/10/above-the-fold-compressed-200x63.png 200w, https://avada.com/wp-content/uploads/2022/10/above-the-fold-compressed-400x126.png 400w, https://avada.com/wp-content/uploads/2022/10/above-the-fold-compressed-600x189.png 600w, https://avada.com/wp-content/uploads/2022/10/above-the-fold-compressed-800x253.png 800w, https://avada.com/wp-content/uploads/2022/10/above-the-fold-compressed-1200x379.png 1200w, https://avada.com/wp-content/uploads/2022/10/above-the-fold-compressed.png 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-text fusion-text-7\"><p>The rate of content delivery for a website, and in particular the perceived speed experienced by the end-user on a mobile device, is at the heart of Google&#8217;s <a href=\"https://avada.com/documentation/what-are-google-core-web-vitals-and-why-they-matter\" target=\"_blank\" rel=\"noopener noreferrer\">Core Web Vitals</a>. Thus, passing Core Web Vitals inevitably leads to a delicate balance between good SEO, attention marketing, and page load times for a website owner.</p>\n<p>To assist you with managing your website&#8217;s <a href=\"https://avada.com/documentation/how-to-use-the-performance-wizard\" target=\"_blank\" rel=\"noopener noreferrer\">performance</a> and <a href=\"https://avada.com/documentation/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">optimization</a>, our team introduced purpose-built tools and features for <a href=\"https://1.envato.market/jrZ2g6\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> that can make it possible for you to fine-tune your website&#8217;s performance on mobile &amp; desktop.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-6 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\"><h3 class=\"fusion-title-heading title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Generate Critical CSS</h3></div><div class=\"fusion-text fusion-text-8\"><p>Critical CSS is a convenient performance feature. You can enable Critical CSS by going to the <em><strong>Performance Wizard &gt; Optimization</strong></em> tab. Once it has been enabled, you can access the Critical CSS page from the WordPress sidebar at <em><strong>Avada &gt; Critical CSS or Maintenance &gt; Critical CSS</strong></em> from the Avada Dashboard. Both take you to the Critical CSS page to generate Critical CSS for both pages and posts.</p>\n</div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-3 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><a class=\"fusion-no-lightbox\" href=\"https://avada.com/documentation/how-to-use-critical-css\" target=\"_blank\" aria-label=\"docs_generate_critical_css\" rel=\"noopener noreferrer\"><img decoding=\"async\" width=\"1850\" height=\"1327\" alt=\"Critical CSS\" src=\"https://avada.com/wp-content/uploads/2023/03/docs_generate_critical_css.jpg\" class=\"img-responsive wp-image-891852\" srcset=\"https://avada.com/wp-content/uploads/2023/03/docs_generate_critical_css-200x143.jpg 200w, https://avada.com/wp-content/uploads/2023/03/docs_generate_critical_css-400x287.jpg 400w, https://avada.com/wp-content/uploads/2023/03/docs_generate_critical_css-600x430.jpg 600w, https://avada.com/wp-content/uploads/2023/03/docs_generate_critical_css-800x574.jpg 800w, https://avada.com/wp-content/uploads/2023/03/docs_generate_critical_css-1200x861.jpg 1200w, https://avada.com/wp-content/uploads/2023/03/docs_generate_critical_css.jpg 1850w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1850px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-text fusion-text-9\"><p>Critical CSS is the CSS necessary to style the above-the-fold content. When generated for a page, it will be loaded into the page head, and the rest of the CSS styles moved to the footer, resulting in less render-blocking and a faster page load time.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-7 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\"><h3 class=\"fusion-title-heading title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Resources</h3></div><div class=\"fusion-text fusion-text-10\"><p>Even with all of the performance options provided, <a href=\"https://1.envato.market/jrZ2g6\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> plays a lesser part than you might imagine when it comes to site optimization. Websites running <a href=\"https://1.envato.market/jrZ2g6\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> as the primary WordPress theme can be configured to optimize the layouts and structure that can lead to vastly improved page load scores. Still, ultimately, user content will principally dictate how fast and efficient your website will perform according to <a href=\"https://avada.com/documentation/what-are-google-core-web-vitals-and-why-they-matter\" target=\"_blank\" rel=\"noopener noreferrer\">Google Core Web Vitals</a>.</p>\n</div><ul style=\"--awb-iconcolor:#ff8b1e;--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-2 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon icon-avada-docs\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><a href=\"https://avada.com/documentation/how-to-use-the-performance-wizard\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use The Performance Wizard</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon avada-elements-youtube\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://avada.com/documentation/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: How To Use The Performance Wizard</a></div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon icon-avada-docs\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://avada.com/documentation/avada-optimization-guide\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Optimization Guide</a></div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon avada-elements-youtube\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://avada.com/documentation/how-to-use-critical-css\" target=\"_blank\" rel=\"noopener noreferrer\">Video: Optimize Above The Fold Content For Performance</a></div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon icon-avada-docs\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://avada.com/documentation/avada-speed-performance\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Speed &amp; Performance</a></div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon icon-avada-docs\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://avada.com/documentation/how-to-use-critical-css\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use Critical CSS</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-title title fusion-title-8 fusion-sep-none fusion-title-text fusion-title-size-three\" id=\"palette\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Color Palette</h3></div><div class=\"fusion-fss-swatches fusion-no-small-visibility fusion-no-medium-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:space-between;margin:-5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:5px;padding-top:50px;padding-right:55px;padding-bottom:50px;padding-left:55px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#ff8b1e;border:10px solid var(--awb-color1);border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ff8b1e\">#ff8b1e</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:5px;padding-top:50px;padding-right:55px;padding-bottom:50px;padding-left:55px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#008ee6;border:10px solid var(--awb-color1);border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#008ee6\">#008ee6</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:5px;padding-top:50px;padding-right:55px;padding-bottom:50px;padding-left:55px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#ffffff;border:10px solid var(--awb-color1);border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ffffff\">#ffffff</div></div></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-fss-swatches fusion-no-small-visibility fusion-no-large-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:flex-start;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#ff8b1e;border:5px solid var(--awb-color1);border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ff8b1e\">#ff8b1e</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#008ee6;border:5px solid var(--awb-color1);border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#008ee6\">#008ee6</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#ffffff;border:5px solid var(--awb-color1);border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ffffff\">#ffffff</div></div></div></div><div class=\"fusion-fss-swatches fusion-no-medium-visibility fusion-no-large-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:flex-start;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#ff8b1e;border:5px solid var(--awb-color1);border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ff8b1e\">#ff8b1e</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#008ee6;border:5px solid var(--awb-color1);border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#008ee6\">#008ee6</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#ffffff;border:5px solid var(--awb-color1);border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#ffffff\">#ffffff</div></div></div></div><div class=\"fusion-text fusion-text-11\"><p>The color palette selected for the <a href=\"https://avada.website/hosting-2/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Hosting 2</a> prebuilt website is a set of complementary colors, as seen above. If you would like to change the Avada Hosting 2 color palette, this can be done within the options panel, as explained in this <a href=\"https://avada.com/documentation/how-to-use-the-global-color-palette-in-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">help file and video</a>.</p>\n<p>Color increases brand recognition, and it can influence people in how they feel about a website. Colors produce different emotions in people, making it essential to choose the right colors for your website. The balance of white space, contrast, and well thought out color schemes are vital elements of good web design. If you have not already decided on your brand colors, choosing a color palette for your website can be confusing. However, using a handy tool like the <a href=\"https://color.adobe.com/create/color-wheel\" target=\"_blank\" rel=\"noopener noreferrer\">Adobe Color Wheel</a> or any of the myriad of app choices online, you can undoubtedly make this task effortless.</p>\n<p>We suggest checking out <a href=\"https://www.hubspot.com/\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot&#8217;s</a> article on <a href=\"https://blog.hubspot.com/marketing/color-palette-famous-websites\" target=\"_blank\" rel=\"noopener noreferrer\">color theory</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-9 fusion-sep-none fusion-title-text fusion-title-size-three\" id=\"typography\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Typography</h3></div><div class=\"fusion-text fusion-text-12\"><p>Website Typography can be more important than you realize, from your brand and user perspective to your website&#8217;s overall look and style. It is often underrated and is, in fact, an art form and technique in itself. The following <a href=\"https://blog.hubspot.com/website/website-typography\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot guide to website typography</a> will give you some great insights into the do&#8217;s and dont&#8217;s choosing which fonts work best for your <a href=\"https://1.envato.market/jrZ2g6\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> website.</p>\n<p>The Avada Website Builder has a vast array of Typography controls, options, and font selections to make your job easier. See this detailed <a href=\"https://avada.com/documentation/typography-options-in-avada\" target=\"_blank\" rel=\"noopener noreferrer\">help file and video</a> to get you started.</p>\n<p>Below are the fonts used for the <a href=\"https://avada.website/hosting-2/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Hosting 2</a> prebuilt website:</p>\n</div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-2 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-padding-top:20px;--awb-padding-right:20px;--awb-padding-bottom:20px;--awb-padding-left:20px;--awb-bg-color:#f2f2f2;--awb-bg-color-hover:#f2f2f2;--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-10 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-text-color:#5e5e5e;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Headings</h3></div><div class=\"fusion-title title fusion-title-11 fusion-sep-none fusion-title-text fusion-title-size-div\" style=\"--awb-text-color:#5e5e5e;\"><div class=\"fusion-title-heading title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:16;--minFontSize:16;line-height:1.67;\">H1, H2, Font Family: <span style=\"font-family: Kumbh Sans; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">kumbh Sans</span></div></div><div class=\"fusion-title title fusion-title-12 fusion-sep-none fusion-title-text fusion-title-size-div\" style=\"--awb-text-color:#5e5e5e;\"><div class=\"fusion-title-heading title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:16;--minFontSize:16;line-height:1.67;\">H3, H4, Font Family: <span style=\"font-family: Kumbh Sans; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">kumbh Sans</span></div></div><div class=\"fusion-title title fusion-title-13 fusion-sep-none fusion-title-text fusion-title-size-div\" style=\"--awb-text-color:#5e5e5e;\"><div class=\"fusion-title-heading title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:16;--minFontSize:16;line-height:1.67;\">H5, H6, Font family: <span style=\"font-family: Kumbh Sans; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">kumbh Sans</span></div></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-3 fusion_builder_column_inner_1_2 1_2 fusion-flex-column fusion-flex-align-self-stretch\" style=\"--awb-padding-top:20px;--awb-padding-right:20px;--awb-padding-bottom:20px;--awb-padding-left:20px;--awb-bg-color:#f2f2f2;--awb-bg-color-hover:#f2f2f2;--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-14 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-text-color:#5e5e5e;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Body</h3></div><div class=\"fusion-title title fusion-title-15 fusion-sep-none fusion-title-text fusion-title-size-div\" style=\"--awb-text-color:#5e5e5e;\"><div class=\"fusion-title-heading title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:16;--minFontSize:16;line-height:1.67;\">			Font Family: <span style=\"font-family: Kumbh Sans; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">kumbh Sans</span></div></div></div></div></div><div class=\"fusion-text fusion-text-13\"><p>We suggest checking out HubSpot&#8217;s article on <a href=\"https://blog.hubspot.com/website/web-safe-html-css-fonts\" target=\"_blank\" rel=\"noopener noreferrer\">The Ultimate List of Web-Safe HTML and CSS Fonts</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-16 fusion-sep-none fusion-title-text fusion-title-size-two\" id=\"getstarted\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">To Get Started You Will Need The Following</h2></div><div class=\"fusion-text fusion-text-14\"><p>To get started with the <a href=\"https://avada.com/feature/live-visual-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> and to create your ideal website, there are a few things that you will need;</p>\n</div><ul style=\"--awb-iconcolor:#ff8b1e;--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-3 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-network-wired fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>A trusted <a href=\"https://avada.com/hosting/\" target=\"_blank\" rel=\"noopener noreferrer\">web hosting service</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-wordpress fab\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>The latest version of <a href=\"https://wordpress.org/download/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon avada-elements-avada-logo\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>The <a href=\"https://1.envato.market/jrZ2g6\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-title title fusion-title-17 fusion-sep-none fusion-title-text fusion-title-size-three\" id=\"plugins\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Recommended Plugins</h3></div><div class=\"fusion-text fusion-text-15\"><p>What are recommended plugins, and do you need them? In short, it is not the end of the world if you choose not to install and activate the plugins used with any particular Avada <a href=\"https://avada.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">prebuilt website</a>. Let&#8217;s take the <a href=\"https://avada.website/hosting-2/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Hosting 2</a> prebuilt website as an example: This prebuilt website was built without using any of the Avada bundled plugins.</p>\n<p>When an Avada prebuilt website is built without using bundled plugins, you can still install and activate any of them, should it be needed for your website. Any of the prebuilt websites can be modified to fit your project needs.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-title title fusion-title-18 fusion-sep-none fusion-title-text fusion-title-size-three\" id=\"support\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">World-Class Support And Resources</h3></div><div class=\"fusion-text fusion-text-16\"><p>Many facets set the <a href=\"https://avada.com/feature/live-visual-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> apart from the competition. None more important is that Avada is not reliant on 3rd party builders and tools to deliver a stable and seamless website building experience. No waiting for external developers and toolset creators to deliver the next update for your theme. We take pride in the fact that Avada is 100% maintained, evolved, and developed according to strict WordPress and PHP coding standards. Avada gives you peace of mind and guarantees that what you have to work with will always be ahead of the latest industry requirements.</p>\n</div><ul style=\"--awb-iconcolor:#ff8b1e;--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-4 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon icon-avada-docs\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><a href=\"https://avada.com/documentation/how-to-use-the-performance-wizard\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use The Performance Wizard</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon avada-elements-youtube\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://avada.com/documentation/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: How To Use The Performance Wizard</a></div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon icon-avada-docs\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://avada.com/documentation/avada-optimization-guide\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Optimization Guide</a></div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon avada-elements-youtube\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://avada.com/documentation/how-to-use-critical-css\" target=\"_blank\" rel=\"noopener noreferrer\">Video: Optimize Above The Fold Content For Performance</a></div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon icon-avada-docs\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://avada.com/documentation/avada-speed-performance\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Speed &amp; Performance</a></div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon icon-avada-docs\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://avada.com/documentation/how-to-use-critical-css\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use Critical CSS</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-title title fusion-title-19 fusion-sep-none fusion-title-text fusion-title-size-two\" id=\"prebuiltwebsite\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">What is a Prebuilt Website?</h2></div><div class=\"fusion-text fusion-text-17\"><p>Simply put, <a href=\"https://avada.com/prebuilt-websites/\" target=\" _self\" rel=\"noopener noreferrer\">prebuilt websites</a> are complete websites that have been designed and built to fit an industry niche. Each website comprises pages, posts, content layouts, images, or various media types representing or showcasing an online presence for a target audience or business type.</p>\n<p><a href=\"https://1.envato.market/jrZ2g6\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt websites and prebuilt content layouts (individual page or post content, layout sections, Call-to-actions, etc.) are carefully crafted by our talented team of designers to give you, the Avada user, a way to save time when prototyping a new website.</p>\n<p>Avada&#8217;s prebuilt websites are a fantastic resource for creativity and inspiration. They will make web design a more efficient and productive process for beginners, marketers, and professionals alike. Here are some essential facts:</p>\n</div><ul style=\"--awb-iconcolor:#ff8b1e;--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-5 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">They are created to save you time when building a new website.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">A prebuilt website can be imported with a few clicks.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">Each prebuilt website is mobile and SEO friendly.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">Each prebuilt website is entirely customizable to suit your project and branding needs.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">You can white-label any prebuilt website for client work.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">Prebuilt websites are included with your <a href=\"https://1.envato.market/jrZ2g6\" target=\"_blank\" rel=\"noopener noreferrer\">purchase</a> of the Avada Website Builder.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">Each prebuilt website is <a href=\"https://avada.com/documentation/avada-optimization-guide\" target=\" _self\" rel=\"noopener noreferrer\">optimized</a> for <a href=\"https://avada.com/documentation/how-to-use-the-performance-wizard\" target=\" _self\" rel=\"noopener noreferrer\">performance</a>.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-title title fusion-title-20 fusion-sep-none fusion-title-text fusion-title-size-two\" id=\"install\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Fast One-Click Install</h2></div><div class=\"fusion-text fusion-text-18\"><p>Importing any Avada Prebuilt Website is as simple as clicking a button, with pre-import selections making it highly flexible. You can choose to import a <a href=\"https://avada.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">full </a><a href=\"https://avada.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">website </a>(more than <span class=\"fusion-cs-live-demos\">97</span> to choose from) and parts of any other and anything in between. Choose pages, posts, portfolios, images, sliders, theme options, widgets, or uninstall as you prefer.</p>\n</div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-4 hover-type-none\"><a class=\"fusion-no-lightbox\" href=\"https://avada.com/prebuilt-websites/\" target=\"_blank\" aria-label=\"prebuilt-3step-import-compressed\" rel=\"noopener noreferrer\"><img decoding=\"async\" width=\"1100\" height=\"420\" alt=\"Avada Prebuilt Website Import\" src=\"https://avada.com/wp-content/uploads/2022/10/prebuilt-3step-import-compressed.png\" class=\"img-responsive wp-image-887421\" srcset=\"https://avada.com/wp-content/uploads/2022/10/prebuilt-3step-import-compressed-200x76.png 200w, https://avada.com/wp-content/uploads/2022/10/prebuilt-3step-import-compressed-400x153.png 400w, https://avada.com/wp-content/uploads/2022/10/prebuilt-3step-import-compressed-600x229.png 600w, https://avada.com/wp-content/uploads/2022/10/prebuilt-3step-import-compressed-800x305.png 800w, https://avada.com/wp-content/uploads/2022/10/prebuilt-3step-import-compressed.png 1100w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1100px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-2 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-1 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:10px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-21 fusion-sep-none fusion-title-text fusion-title-size-two\" id=\"structure\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Website Structure</h2></div><div class=\"fusion-text fusion-text-19\"><p>A page or post structure is divided into four main sections: the Header, the Page Title Bar, Content, and the Footer. With the Avada Website Builder, you can independently edit each of these sections to create super flexible and stunning layout designs.</p>\n<p>Below is a list of the <a href=\"https://avada.website/hosting-2/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Hosting 2</a> pages and posts that have been prebuilt just for you. Once installed, you can change all aspects of each Layout, and at any time, add new pages to suit your online business needs.</p>\n</div><ul style=\"--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-6 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><a href=\"https://avada.website/hosting-2/\" target=\"_blank\" rel=\"noopener noreferrer\">Homepage Layout</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><a href=\"https://avada.website/hosting-2/hosting-home-alternate/\" target=\"_blank\" rel=\"noopener noreferrer\">Homepage Alternate Layout</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><a href=\"https://avada.website/hosting-2/domains\" target=\"_blank\" rel=\"noopener noreferrer\">Domains Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><a href=\"https://avada.website/hosting-2/hosting\" target=\"_blank\" rel=\"noopener noreferrer\">Hosting Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><a href=\"https://avada.website/hosting-2/hosting/shared-hosting/\" target=\"_blank\" rel=\"noopener noreferrer\">Hosting &#8211; Shared Hosting Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><a href=\"https://avada.website/hosting-2/hosting/wordpress-hosting/\" target=\"_blank\" rel=\"noopener noreferrer\">Hosting &#8211; WordPress Hosting Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><a href=\"https://avada.website/hosting-2/hosting/dedicated-server/\" target=\"_blank\" rel=\"noopener noreferrer\">Hosting &#8211; Dedicated Server Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><a href=\"https://avada.website/hosting-2/hosting/vps-cloud-hosting/\" target=\"_blank\" rel=\"noopener noreferrer\">Hosting &#8211; VPS / Cloud Hosting Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><a href=\"https://avada.website/hosting-2/hosting/website-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Hosting &#8211; Website Builder Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><a href=\"https://avada.website/hosting-2/hosting/managed-private-server/\" target=\"_blank\" rel=\"noopener noreferrer\">Hosting &#8211; Managed Private Server Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><a href=\"https://avada.website/hosting-2/about\" target=\"_blank\" rel=\"noopener noreferrer\">About Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><a href=\"https://avada.website/hosting-2/blog\" target=\"_blank\" rel=\"noopener noreferrer\">Blog Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><a href=\"https://avada.website/hosting-2/contact\" target=\"_blank\" rel=\"noopener noreferrer\">Contact Page Layout</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-3 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-2 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-22 fusion-sep-none fusion-title-text fusion-title-size-two\" id=\"layouts\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Explaining Layouts &amp; Layout Sections</h2></div><div class=\"fusion-text fusion-text-20\"><p>Before we look at the specific Layouts on the Avada Hosting 2 prebuilt website, the first thing to understand is the Layouts and Layout Sections&#8217; architecture. You can think of Layouts as a container for the page content. In contrast, the actual content comes from the various Layout Sections. There are four Layout Sections on a page – the Header, Page Title Bar, Content, and Footer Layout Sections.</p>\n<p>There is a default Global Layout, and any Layout Sections added to that will be shown on all pages of your website. There are Conditional Layouts with conditional logic to determine how the Layout will be used.</p>\n<p>You can make as many Layouts and Layout Sections as you like, and you can use the Layout Sections in multiple Layouts. But you can only use a specific condition on a single Layout, so the theme knows which one to use.</p>\n<p>See <a href=\"https://avada.com/documentation/understanding-layouts-and-layout-sections\" target=\"_blank\" rel=\"noopener noreferrer\">Understanding Layouts &amp; Layout Sections</a> and <a href=\"https://avada.com/documentation/understanding-conditional-layouts\" target=\"_blank\" rel=\"noopener noreferrer\">Understanding Conditional Layouts</a> for more info.</p>\n</div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-5 hover-type-none\"><img decoding=\"async\" width=\"1050\" height=\"1050\" alt=\"Avada Layout Sections Legend\" title=\"builder-layout-schematic-post-image\" src=\"https://avada.com/wp-content/uploads/2022/10/builder-layout-schematic-post-image.png\" class=\"img-responsive wp-image-887422\" srcset=\"https://avada.com/wp-content/uploads/2022/10/builder-layout-schematic-post-image-200x200.png 200w, https://avada.com/wp-content/uploads/2022/10/builder-layout-schematic-post-image-400x400.png 400w, https://avada.com/wp-content/uploads/2022/10/builder-layout-schematic-post-image-600x600.png 600w, https://avada.com/wp-content/uploads/2022/10/builder-layout-schematic-post-image-800x800.png 800w, https://avada.com/wp-content/uploads/2022/10/builder-layout-schematic-post-image.png 1050w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1050px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-title title fusion-title-23 fusion-sep-none fusion-title-text fusion-title-size-two\" id=\"wordpresspages\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Explaining WordPress Pages vs. Posts</h2></div><div class=\"fusion-text fusion-text-21\"><p>Website pages are allocated for static content such as your website&#8217;s homepage, about, contact page, and so on, and are timeless entities.</p>\n<p>Website posts are allocated to blog content listed in reverse (newest to the oldest) chronological order and are timely. Older posts are archived based on month and year. You can also create content for custom post types or CPT. In Avada, an example of this is the Portfolio post type. Check out this detailed <a href=\"https://wordpress.com/support/post-vs-page/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress article</a> for more information.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-24 fusion-sep-none fusion-title-text fusion-title-size-two\" id=\"change\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">What Can I Change? Is the Design Flexible?</h2></div><div class=\"fusion-text fusion-text-22\"><p>The <a href=\"https://avada.website/hosting-2/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Hosting 2</a> prebuilt website is exactly that, prebuilt, for you. If the design and style suit your website needs, you can use it as a starting point, and you can change as much or as little as you need to.</p>\n<p>The most obvious details that you will want to change at first is the website&#8217;s wording, titles, color scheme, and images. You can choose to leave the overall layouts as is or Drag and Drop to rearrange the content&#8217;s order. Further to that, you can add or remove any of the <a href=\"https://avada.com/elements/\" target=\"_blank\" rel=\"noopener noreferrer\">Design </a><a href=\"https://avada.com/elements/\" target=\"_blank\" rel=\"noopener noreferrer\">Elements </a>to fine-tune your preferred business narrative. In short, you can change every single aspect of the prebuilt website&#8217;s Layout and content.</p>\n<p>Editing a page&#8217;s content and layouts is done using the <a href=\"https://avada.com/feature/live-visual-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Drag and Drop</a> live editor or using the traditional back-end method. The first image below shows the Live visual Drag and Drop editor is used to edit the content:</p>\n</div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-6 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><a href=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Live-Editing-scaled.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[cc599a53ef52248719b]\" data-title=\"Avada Hosting 2 Live Editing\" title=\"Avada Hosting 2 Live Editing\"><img decoding=\"async\" width=\"2560\" height=\"1256\" alt=\"Live Editor\" src=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Live-Editing-scaled.jpg\" class=\"img-responsive wp-image-893003\" srcset=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Live-Editing-200x98.jpg 200w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Live-Editing-400x196.jpg 400w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Live-Editing-600x294.jpg 600w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Live-Editing-800x392.jpg 800w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Live-Editing-1200x589.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Live-Editing-scaled.jpg 2560w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 2560px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-text fusion-text-23\"><p>The image below shows the traditional back-end method is used to edit the content:</p>\n</div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-7 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><a href=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Backend-Editing-scaled.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[ecbac0e820f7f33287a]\" data-title=\"Avada Hosting 2 Backend Editing\" title=\"Avada Hosting 2 Backend Editing\"><img decoding=\"async\" width=\"2560\" height=\"1181\" alt=\"Back-end Editing\" src=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Backend-Editing-scaled.jpg\" class=\"img-responsive wp-image-893004\" srcset=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Backend-Editing-200x92.jpg 200w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Backend-Editing-400x185.jpg 400w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Backend-Editing-600x277.jpg 600w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Backend-Editing-800x369.jpg 800w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Backend-Editing-1200x554.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Backend-Editing-scaled.jpg 2560w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 2560px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-title title fusion-title-25 fusion-sep-none fusion-title-text fusion-title-size-two\" id=\"comparison\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">A Side By Side Comparison (Builder vs. No Builder)</h2></div><div class=\"fusion-text fusion-text-24\"><p>We have created a side by side point of reference that illustrates the differences in building a website using the Avada Website Builder to design custom Layouts vs. not using The Avada Website Builder and only using predefined options. The latter will allow you only to build a basic site, in comparison.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><ul style=\"--awb-iconcolor:#ff8b1e;--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-7 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://avada.website/handmade\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Handmade</a> (Using the Website Builder)</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-times fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://avada.website/handmade-basic/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Handmade Basic</a> (Not using the Website Builder)</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-4 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-3 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-26 fusion-sep-none fusion-title-text fusion-title-size-two\" id=\"homepage\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Exploring The Homepage Layout</h2></div><div class=\"fusion-text fusion-text-25\"><p>Website pages are allocated for static content such as your website&#8217;s homepage, about, contact page, and so on, and are timeless entities.</p>\n<p>Website posts are allocated to blog content listed in reverse (newest to the oldest) chronological order and are timely. Older posts are archived based on month and year. You can also create content for custom post types or CPT. In Avada, an example of this is the Portfolio post type. Check out this detailed <a href=\"https://wordpress.com/support/post-vs-page/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress article</a> for more information.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-27 fusion-sep-none fusion-title-text fusion-title-size-three\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">The Header</h3></div><div class=\"fusion-text fusion-text-26\"><p>For the <a href=\"https://avada.website/hosting-2/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Hosting 2</a> prebuilt website, the Header was created using the Avada <a href=\"https://avada.com/feature/header-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Header Builder</a> and is set globally across the website. This means that every page and post will use the same Header layout without any further conditions set. For example, you can change this if required by creating a unique Header layout for different pages or posts.</p>\n</div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-8 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><a href=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Header.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[c712168785f19b787e9]\" data-title=\"Avada Hosting 2 Header\" title=\"Avada Hosting 2 Header\"><img decoding=\"async\" width=\"1920\" height=\"200\" alt=\"Avada Hosting 2 Header\" src=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Header.jpg\" class=\"img-responsive wp-image-893005\" srcset=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Header-200x21.jpg 200w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Header-400x42.jpg 400w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Header-600x63.jpg 600w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Header-800x83.jpg 800w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Header-1200x125.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Header.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1920px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-title title fusion-title-28 fusion-sep-none fusion-title-text fusion-title-size-three\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">The Page Content</h3></div><div class=\"fusion-text fusion-text-27\"><p>The content part of the homepage, the area between the Header and Footer, does not use a page title bar. You can change this page&#8217;s content in an infinite number of ways to best suit your business marketing and brand requirements.</p>\n<p>Page and Post content is structured using Container and Column Elements, and if required, Nested Columns. Check out the help file links below for detailed information and videos explaining what they are and how to use them:</p>\n</div><ul style=\"--awb-iconcolor:#ff8b1e;--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-8 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">What are Containers, and how to use them? Read more <a href=\"https://avada.com/documentation/container-element\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">What are Columns, and how to use them? Read more <a href=\"https://avada.com/documentation/column-element\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">What are Nested Columns, and how to use them? Read more <a href=\"https://avada.com/documentation/nested-columns-element\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li></ul></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-5 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-margin-top:0px;--awb-margin-bottom:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-4 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-29 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\"><h4 class=\"fusion-title-heading title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:20;--minFontSize:20;line-height:1.42;\">The Hero</h4></div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-9 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><a href=\"https://avada.com/wp-content/uploads/2023/05/Avada-Magazine-Hero.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[b2d899e1c251a5834e9]\" data-title=\"Avada Magazine Hero\" title=\"Avada Hosting 2 Hero\"><img decoding=\"async\" width=\"1920\" height=\"878\" alt=\"Avada Hosting 2 Hero\" src=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hero.jpg\" class=\"img-responsive wp-image-893006\" srcset=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hero-200x91.jpg 200w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hero-400x183.jpg 400w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hero-600x274.jpg 600w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hero-800x366.jpg 800w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hero-1200x549.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hero.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1920px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-text fusion-text-28\"><p>Instead of using a traditional image slider, like the <a href=\"https://avada.com/features/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Slider</a> or <a href=\"https://avada.com/features/\" target=\"_blank\" rel=\"noopener noreferrer\">Slider Revolution</a>, as the above-the-fold hero section, this prebuilt site uses a single <a href=\"https://avada.com/documentation/container-element\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> with a Background Image. The container holds two 1/2 (50% width) <a href=\"https://avada.com/documentation/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a>. The first column contains a <a href=\"https://avada.com/documentation/checklist-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Checklist Element</a>, a <a href=\"https://avada.com/documentation/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, a <a href=\"https://avada.com/documentation/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, and a <a href=\"https://avada.com/documentation/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Element</a>. The second column contains an <a href=\"https://avada.com/documentation/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a>.</p>\n<p>Simply put, Nested Columns are columns within columns. This Nested Columns Element is structured with one 45% width Column and one 2/5 (40% width) Column, collectively holding a <a href=\"https://avada.com/documentation/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a> and two Text Block Elements. </p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-30 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\"><h4 class=\"fusion-title-heading title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:20;--minFontSize:20;line-height:1.42;\">Find Your Domain<br /></h4></div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-10 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><a href=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Find-your-Domain.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[ddb63fe2ae56f00d0be]\" data-title=\"Avada Hosting 2 Find your Domain\" title=\"Avada Hosting 2 Find your Domain\"><img decoding=\"async\" width=\"1920\" height=\"804\" alt=\"Avada Hosting 2 Find Your Domain\" src=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Find-your-Domain.jpg\" class=\"img-responsive wp-image-893007\" srcset=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Find-your-Domain-200x84.jpg 200w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Find-your-Domain-400x168.jpg 400w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Find-your-Domain-600x251.jpg 600w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Find-your-Domain-800x335.jpg 800w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Find-your-Domain-1200x503.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Find-your-Domain.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1920px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-text fusion-text-29\"><p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">This section was built using a <a href=\"https://avada.com/documentation/container-element\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with two 1/6 (16.67% width) <a href=\"https://avada.com/documentation/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a> on either side of one 2/3 (33.33% width) Column for spacing and one holding an <a href=\"https://avada.com/documentation/icon-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Icon Element</a>. The middle column holds a <a href=\"https://avada.com/documentation/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a> and a <a href=\"https://avada.com/documentation/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>.</span></p>\n<p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">Following on, is one 1/1 (100% width) Column holding the <a href=\"https://avada.com/documentation/avada-form-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Form Element</a> and six 1/6 (16.67% width) Columns, each containing three Text Block Elements.<br /></span></p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-31 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\"><h4 class=\"fusion-title-heading title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:20;--minFontSize:20;line-height:1.42;\">Hosting Plans<br /></h4></div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-11 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><a href=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hosting-Plans.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[0a286922a5e64073346]\" data-title=\"Avada Hosting 2 Hosting Plans\" title=\"Avada Hosting 2 Hosting Plans\"><img decoding=\"async\" width=\"1920\" height=\"1572\" alt=\"Avada Hosting 2 Hosting Plans\" src=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hosting-Plans.jpg\" class=\"img-responsive wp-image-893008\" srcset=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hosting-Plans-200x164.jpg 200w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hosting-Plans-400x328.jpg 400w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hosting-Plans-600x491.jpg 600w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hosting-Plans-800x655.jpg 800w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hosting-Plans-1200x983.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hosting-Plans.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1920px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-text fusion-text-30\"><p>This section was built using a <a href=\"https://avada.com/documentation/container-element\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> holding eight 1/2 (50% width) <a href=\"https://avada.com/documentation/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a> distributed over four rows. The first two columns contains a <a href=\"https://avada.com/documentation/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, a <a href=\"https://avada.com/documentation/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, and a <a href=\"https://avada.com/documentation/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>.</p>\n<p>The remaining six columns each hold a <a href=\"https://avada.com/documentation/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Element</a>, that is structured with one 1/3 (33.33% width) Column holding an <a href=\"https://avada.com/documentation/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a> and one 2/3 (66.67% width) Column holding a Title Element and two Text Block Elements.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-32 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\"><h4 class=\"fusion-title-heading title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:20;--minFontSize:20;line-height:1.42;\">Hosting Information<br /></h4></div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-12 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><a href=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hosting-Information.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[156f798ca2a1d86798c]\" data-title=\"Avada Hosting 2 Hosting Information\" title=\"Avada Hosting 2 Hosting Information\"><img decoding=\"async\" width=\"1920\" height=\"870\" alt=\"Avada Hosting 2 Hosting Information\" src=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hosting-Information.jpg\" class=\"img-responsive wp-image-893009\" srcset=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hosting-Information-200x91.jpg 200w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hosting-Information-400x181.jpg 400w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hosting-Information-600x272.jpg 600w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hosting-Information-800x363.jpg 800w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hosting-Information-1200x544.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hosting-Information.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1920px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-text fusion-text-31\"><p>To create this layout, a <a href=\"https://avada.com/documentation/container-element\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> with a Background Image two 1/2 (50% width) <a href=\"https://avada.com/documentation/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a> with the left holding an <a href=\"https://avada.com/documentation/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a> and the right holding a <a href=\"https://avada.com/documentation/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, two <a href=\"https://avada.com/documentation/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Elements</a>, and a <a href=\"https://avada.com/documentation/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Element</a>. </p>\n<p>The Nested Columns Element is structured with two 45% width Columns, each holding a Title Element and two Text Block Elements.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-33 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\"><h4 class=\"fusion-title-heading title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:20;--minFontSize:20;line-height:1.42;\">Hosting Features<br /></h4></div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-13 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><a href=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hosting-Features.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[2ee5784462c0e91b495]\" data-title=\"Avada Hosting 2 Hosting Features\" title=\"Avada Hosting 2 Hosting Features\"><img decoding=\"async\" width=\"1920\" height=\"1680\" alt=\"Avada Hosting 2 Hosting Features\" src=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hosting-Features.jpg\" class=\"img-responsive wp-image-893010\" srcset=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hosting-Features-200x175.jpg 200w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hosting-Features-400x350.jpg 400w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hosting-Features-600x525.jpg 600w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hosting-Features-800x700.jpg 800w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hosting-Features-1200x1050.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hosting-Features.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1920px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-text fusion-text-32\"><p>This section was built using a <a href=\"https://avada.com/documentation/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> with two 1/6 (16.67% width) <a href=\"https://avada.com/documentation/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a> on either side of one 2/3 (33.33% width) Column for spacing and one holding an <a href=\"https://avada.com/documentation/icon-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Icon Element</a>. The middle column holds a <a href=\"https://avada.com/documentation/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a> and a <a href=\"https://avada.com/documentation/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>.</p>\n<p>This is followed by six 1/3 (33.33% width) Columns over two rows, each containing an Icon Element, a Title Element, and a Text Block Element.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-34 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\"><h4 class=\"fusion-title-heading title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:20;--minFontSize:20;line-height:1.42;\">Pricing Plans<br /></h4></div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-14 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><a href=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Pricing-Plans.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[f5113981458ccd9043c]\" data-title=\"Avada Hosting 2 Pricing Plans\" title=\"Avada Hosting 2 Pricing Plans\"><img decoding=\"async\" width=\"1920\" height=\"1420\" alt=\"Avada Life Coach More Information\" src=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Pricing-Plans.jpg\" class=\"img-responsive wp-image-893011\" srcset=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Pricing-Plans-200x148.jpg 200w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Pricing-Plans-400x296.jpg 400w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Pricing-Plans-600x444.jpg 600w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Pricing-Plans-800x592.jpg 800w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Pricing-Plans-1200x888.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Pricing-Plans.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1920px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-text fusion-text-33\"><p>This section was built using a <a href=\"https://avada.com/documentation/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> holding one two 1/2 (50% width) <a href=\"https://avada.com/documentation/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a>, collectively containing a <a href=\"https://avada.com/documentation/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, a <a href=\"https://avada.com/documentation/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, and a <a href=\"https://avada.com/documentation/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>.</p>\n<p>This is followed by three 1/3 (33.33% width) Columns, each containing two <a href=\"https://avada.com/documentation/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Elements</a> that is structured with one 1/1 (100% width) Column. These inner columns each hold a Title Element, two Text Block Elements, and two Button Elements.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-35 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\"><h4 class=\"fusion-title-heading title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:20;--minFontSize:20;line-height:1.42;\">Call To Action &#8211; CTA<br /></h4></div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-15 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><a href=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-CTA.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[9b11a7043824af25abb]\" data-title=\"Avada Hosting 2 CTA\" title=\"Avada Hosting 2 CTA\"><img decoding=\"async\" width=\"1920\" height=\"212\" alt=\"Avada Hosting 2 CTA\" src=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-CTA.jpg\" class=\"img-responsive wp-image-893012\" srcset=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-CTA-200x22.jpg 200w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-CTA-400x44.jpg 400w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-CTA-600x66.jpg 600w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-CTA-800x88.jpg 800w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-CTA-1200x133.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-CTA.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1920px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-text fusion-text-34\"><p>This section was built using a <a href=\"https://avada.com/documentation/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> holding one 1/1 (100% width) <a href=\"https://avada.com/documentation/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column</a> with a <a href=\"https://avada.com/documentation/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-36 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\"><h4 class=\"fusion-title-heading title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:20;--minFontSize:20;line-height:1.42;\">Hosting FAQs<br /></h4></div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-16 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><a href=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hosting-FAQs.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[3c174a9da63e0aab651]\" data-title=\"Avada Hosting 2 Hosting FAQs\" title=\"Avada Hosting 2 Hosting FAQs\"><img decoding=\"async\" width=\"1920\" height=\"1778\" alt=\"Avada Hosting 2 Hosting FAQs\" src=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hosting-FAQs.jpg\" class=\"img-responsive wp-image-893013\" srcset=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hosting-FAQs-200x185.jpg 200w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hosting-FAQs-400x370.jpg 400w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hosting-FAQs-600x556.jpg 600w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hosting-FAQs-800x741.jpg 800w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hosting-FAQs-1200x1111.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Hosting-FAQs.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1920px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-text fusion-text-35\"><p>This section was built using a <a href=\"https://avada.com/documentation/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> holding one 1/1 (100% width) <a href=\"https://avada.com/documentation/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column</a> holding an <a href=\"https://avada.com/documentation/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a>. This is followed by two 1/5 (20% width) Columns used for spacing on either side of one 3/5 (60% width) Column holding a <a href=\"https://avada.com/documentation/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a> and a <a href=\"https://avada.com/documentation/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>.</p>\n<p>To complete the section, another 1/1 (100% width) Column is added using the <a href=\"https://avada.com/documentation/toggles-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Toggles Element</a> to display the FAQs.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-37 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\"><h4 class=\"fusion-title-heading title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:20;--minFontSize:20;line-height:1.42;\">Logos<br /></h4></div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-17 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><a href=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Logos.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[ea10d0dd7db1bcbaccd]\" data-title=\"Avada Hosting 2 Logos\" title=\"Avada Hosting 2 Logos\"><img decoding=\"async\" width=\"1920\" height=\"256\" alt=\"Avada Hosting 2 Logos\" src=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Logos.jpg\" class=\"img-responsive wp-image-893014\" srcset=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Logos-200x27.jpg 200w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Logos-400x53.jpg 400w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Logos-600x80.jpg 600w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Logos-800x107.jpg 800w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Logos-1200x160.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Logos.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1920px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-text fusion-text-36\"><p>This section was built using a <a href=\"https://avada.com/documentation/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> holding 4 1/5 (20% width) <a href=\"https://avada.com/documentation/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a> and one 1/6 (33.33% width) Column, each containing an <a href=\"https://avada.com/documentation/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-38 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\"><h4 class=\"fusion-title-heading title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:20;--minFontSize:20;line-height:1.42;\">Contact</h4></div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-18 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><a href=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Contact.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[890684c321f5b7499e2]\" data-title=\"Avada Hosting 2 Contact\" title=\"Avada Hosting 2 Contact\"><img decoding=\"async\" width=\"1920\" height=\"228\" alt=\"Avada Hosting 2 Contact\" src=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Contact.jpg\" class=\"img-responsive wp-image-893015\" srcset=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Contact-200x24.jpg 200w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Contact-400x48.jpg 400w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Contact-600x71.jpg 600w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Contact-800x95.jpg 800w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Contact-1200x143.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Contact.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1920px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-text fusion-text-37\"><p>This section was built using a <a href=\"https://avada.com/documentation/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> holding one 2/5 (40% width) <a href=\"https://avada.com/documentation/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column</a> containing a <a href=\"https://avada.com/documentation/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a> and a <a href=\"https://avada.com/documentation/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a> and two 1/4 (25% width) Columns, each containing a <a href=\"https://avada.com/documentation/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Element</a>.</p>\n<p>The nested columns are each structured with one 1/4 (25% width) Column holding an <a href=\"https://avada.com/documentation/icon-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Icon Element</a> and one 3/4 (75% width) Column holding two Text Block Elements.</p>\n</div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-6 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-margin-top:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-5 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-39 fusion-sep-none fusion-title-text fusion-title-size-two\" id=\"footer\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">The Footer</h2></div><div class=\"fusion-text fusion-text-38\"><p>A website footer aims to help visitors by providing appropriate information and navigation options at the bottom of website pages. Website footer design is underrated and more valuable to your website than you may think and is essential to the overall end-user experience. Three key points stand out, namely:</p>\n</div><ul style=\"--awb-iconcolor:#ff8b1e;--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-9 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">A footer should provide a website visitor with additional choices. If you want people to sign up for your mailing list, view a product demo, or contact you, inviting them at the end of a scroll is a compelling call to action.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">A footer should create a path for continued engagement by including navigation links to products, services, or other parts of your website.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">A footer can access essential information like ways to contact your company and customer services, privacy statements, and potential legal disclaimers.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-text fusion-text-39\"><p>For the <a href=\"https://avada.website/hosting-2/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Hosting 2</a> prebuilt website, the Footer was created using the Avada <a href=\"https://avada.com/feature/footer-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Footer Builder</a> and this particular Footer content and Layout is set to display globally across the website. This means that every page and post will use the same Footer layout without any further conditions set. For example, you can change this if required by creating a unique Footer layout for different pages or posts. Let us take a closer look below:</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-40 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\"><h4 class=\"fusion-title-heading title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:20;--minFontSize:20;line-height:1.42;\">Footer Content</h4></div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-19 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><a href=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Footer.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[cc4aaca01c3523a9433]\" data-title=\"Avada Hosting 2 Footer\" title=\"Avada Hosting 2 Footer\"><img decoding=\"async\" width=\"1920\" height=\"1206\" alt=\"Avada Hosting 2 Footer\" src=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Footer.jpg\" class=\"img-responsive wp-image-893016\" srcset=\"https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Footer-200x126.jpg 200w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Footer-400x251.jpg 400w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Footer-600x377.jpg 600w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Footer-800x503.jpg 800w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Footer-1200x754.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/Avada-Hosting-2-Footer.jpg 1920w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1920px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-text fusion-text-40\"><p>The Footer section is created using a <a href=\"https://avada.com/documentation/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> and multiple <a href=\"https://avada.com/documentation/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a>. These columns contain <a href=\"https://avada.com/documentation/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Elements</a>, <a href=\"https://avada.com/documentation/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, <a href=\"https://avada.com/documentation/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Elements</a>, Menu Elements, <a href=\"https://avada.com/documentation/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Elements,</a> <a href=\"https://avada.com/documentation/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Elements</a>, and a Social Links Element, with the use of the <a href=\"https://avada.com/documentation/how-to-use-dynamic-content-options-in-avada\" target=\"_blank\" rel=\"noopener noreferrer\">Dynamic Data Options</a> to display the website information.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-41 fusion-sep-none fusion-title-text fusion-title-size-two\" id=\"summary\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">In Summary</h2></div><div class=\"fusion-text fusion-text-41\"><p>There are <span class=\"fusion-cs-live-demos\">97</span> <a href=\"https://1.envato.market/jrZ2g6\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt websites to choose from, with more being added regularly. Our amazing design team created these prebuilt websites as a way to give you a head start when building your <a href=\"https://1.envato.market/jrZ2g6\" target=\"_blank\" rel=\"noopener noreferrer\">next</a> website.</p>\n<p>You can change the styling, Layouts, content as much or as little as you need to quickly adapt any individual prebuilt site to suit your chosen niche. Get started with the Avada Website Builder today and launch your business online; Fast.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-xlarge button-custom fusion-button-default button-3 fusion-button-span-yes fusion-button-default-type\" style=\"--button_accent_color:var(--awb-color1);--button_accent_hover_color:var(--awb-color1);--button_border_hover_color:var(--awb-color1);--button_gradient_top_color:var(--awb-color8);--button_gradient_bottom_color:var(--awb-color8);--button_gradient_top_color_hover:hsla(var(--awb-color8-h),var(--awb-color8-s),calc(var(--awb-color8-l) - 16%),var(--awb-color8-a));--button_gradient_bottom_color_hover:hsla(var(--awb-color8-h),var(--awb-color8-s),calc(var(--awb-color8-l) - 16%),var(--awb-color8-a));\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/jrZ2g6\"><span class=\"fusion-button-text\">Buy Avada Hosting 2 For Only $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://avada.com/blog/avada-hosting-2-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:88:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"The 10 Best Avada Foodie Websites For 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://avada.com/blog/the-10-best-avada-foodie-websites-for-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://avada.com/blog/the-10-best-avada-foodie-websites-for-wordpress/#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:\"Tue, 15 Aug 2023 10:00:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:4:\"Food\";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:\"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:2;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:3;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:\"\";}i:4;a:5:{s:4:\"data\";s:14:\"Prebuilt Sites\";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: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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://theme-fusion.com/?p=865395\";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:323:\"Are you looking for the best Foodie website for WordPress? Or do you want to rebrand your existing website? Avada is a Website Builder for WordPress with flexible and intuitive website design tools that will empower you to create websites of any style. And the best part is that no coding knowledge is required. Whether ...\";s: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:\"schanteldwl\";s: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:63089:\"<p><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-7 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-6 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-text fusion-text-42\"><p>Are you looking for the best Foodie website for WordPress? Or do you want to rebrand your existing website? <a href=\"https://1.envato.market/jKdLZ\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> is a <a href=\"https://avada.com/features/\" target=\"_blank\" rel=\"noopener noreferrer\">Website Builder</a> for WordPress with flexible and intuitive website design tools that will empower you to create <a href=\"https://avada.website/\" target=\"_blank\" rel=\"noopener noreferrer\">websites</a> of any style. And the best part is that no coding knowledge is required. Whether you are <a href=\"https://avada.com/for-beginners/\" target=\"_blank\" rel=\"noopener noreferrer\">a beginner</a>, <a href=\"https://avada.com/for-marketers/\" target=\"_blank\" rel=\"noopener noreferrer\">a marketer</a>, or <a href=\"https://avada.com/for-professionals/\" target=\"_blank\" rel=\"noopener noreferrer\">a professional</a>, Avada will give you the confidence to manage your website stress-free.</p>\n<p>The 15 websites that are showcased in this article are popular downloads in the Avada <a href=\"https://avada.website/#fps_creative\" target=\"_blank\" rel=\"noopener noreferrer\">Creative</a> category. Avada&#8217;s prebuilt content and websites are fully customizable and adapted to suit any website type. Also feel free to check out these <a href=\"https://avada.com/blog/the-15-best-creative-avada-websites-for-wordpress/\" target=\"_blank\" rel=\"noopener noreferrer\">15 Creative</a> websites.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-42 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Overview</h2></div><div class=\"awb-toc-el awb-toc-el--2\" data-awb-toc-id=\"2\" data-awb-toc-options=\"{&quot;allowed_heading_tags&quot;:{&quot;h2&quot;:0,&quot;h3&quot;:1},&quot;ignore_headings&quot;:&quot;&quot;,&quot;ignore_headings_words&quot;:&quot;Overview&quot;,&quot;enable_cache&quot;:&quot;yes&quot;,&quot;highlight_current_heading&quot;:&quot;no&quot;,&quot;hide_hidden_titles&quot;:&quot;yes&quot;,&quot;limit_container&quot;:&quot;post_content&quot;,&quot;select_custom_headings&quot;:&quot;&quot;,&quot;icon&quot;:&quot;fa-angle-right fal&quot;,&quot;counter_type&quot;:&quot;custom_icon&quot;}\" style=\"--awb-item-font-size:var(--awb-typography4-font-size);--awb-item-line-height:var(--awb-typography4-line-height);--awb-item-letter-spacing:var(--awb-typography4-letter-spacing);--awb-item-text-transform:var(--awb-typography4-text-transform);--awb-item-color:var(--awb-color8);--awb-item-color-hover:var(--awb-color5);--awb-item-bg-color-hover:rgba(101,189,125,0);--awb-counter-color:var(--awb-color6);--awb-hover-counter-color:var(--awb-color5);--awb-list-indent:15px;--awb-item-padding-top:3px;--awb-item-padding-right:0;--awb-item-padding-bottom:5px;--awb-item-padding-left:0;--awb-item-font-family:var(--awb-typography4-font-family);--awb-item-font-weight:var(--awb-typography4-font-weight);--awb-item-font-style:var(--awb-typography4-font-style);\"><div class=\"awb-toc-el__content\"></div></div>\n</div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-8 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-7 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-43 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Caterer</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-20 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1900\" alt=\"Avada Caterer\" title=\"Avada Caterer Post Image\" src=\"https://avada.com/wp-content/uploads/2023/08/Avada-Caterer-Post-Image.jpg\" class=\"img-responsive wp-image-892985\" srcset=\"https://avada.com/wp-content/uploads/2023/08/Avada-Caterer-Post-Image-200x200.jpg 200w, https://avada.com/wp-content/uploads/2023/08/Avada-Caterer-Post-Image-400x400.jpg 400w, https://avada.com/wp-content/uploads/2023/08/Avada-Caterer-Post-Image-600x600.jpg 600w, https://avada.com/wp-content/uploads/2023/08/Avada-Caterer-Post-Image-800x800.jpg 800w, https://avada.com/wp-content/uploads/2023/08/Avada-Caterer-Post-Image-1200x1200.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/Avada-Caterer-Post-Image.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-4 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-4 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/caterer\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-5 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-5 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/ANkZJ\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-9 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-8 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-44 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Country Butcher</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-21 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1897\" height=\"1950\" alt=\"Avada Country Butcher\" title=\"Avada-Country-Butcher-Featured\" src=\"https://avada.com/wp-content/uploads/2021/04/Avada-Country-Butcher-Featured.jpg\" class=\"img-responsive wp-image-888434\" srcset=\"https://avada.com/wp-content/uploads/2021/04/Avada-Country-Butcher-Featured-200x206.jpg 200w, https://avada.com/wp-content/uploads/2021/04/Avada-Country-Butcher-Featured-400x411.jpg 400w, https://avada.com/wp-content/uploads/2021/04/Avada-Country-Butcher-Featured-600x617.jpg 600w, https://avada.com/wp-content/uploads/2021/04/Avada-Country-Butcher-Featured-800x822.jpg 800w, https://avada.com/wp-content/uploads/2021/04/Avada-Country-Butcher-Featured-1200x1234.jpg 1200w, https://avada.com/wp-content/uploads/2021/04/Avada-Country-Butcher-Featured.jpg 1897w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1897px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-6 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-6 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/country-butcher\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-7 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-7 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/3NXvy\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-10 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-9 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-45 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Winery</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-22 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1900\" alt=\"Avada Winery\" title=\"Avada Winery Post Image\" src=\"https://avada.com/wp-content/uploads/2023/08/Avada-Winery-Post-Image.jpg\" class=\"img-responsive wp-image-892986\" srcset=\"https://avada.com/wp-content/uploads/2023/08/Avada-Winery-Post-Image-200x200.jpg 200w, https://avada.com/wp-content/uploads/2023/08/Avada-Winery-Post-Image-400x400.jpg 400w, https://avada.com/wp-content/uploads/2023/08/Avada-Winery-Post-Image-600x600.jpg 600w, https://avada.com/wp-content/uploads/2023/08/Avada-Winery-Post-Image-800x800.jpg 800w, https://avada.com/wp-content/uploads/2023/08/Avada-Winery-Post-Image-1200x1200.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/Avada-Winery-Post-Image.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-8 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-8 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/winery\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-9 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-9 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/jWLrMZ\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-11 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-10 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-46 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Nutritionist</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-23 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1900\" alt=\"Avada Nutritionist\" title=\"3-Avada-Nutritionist\" src=\"https://avada.com/wp-content/uploads/2021/05/3-Avada-Nutritionist.jpg\" class=\"img-responsive wp-image-888376\" srcset=\"https://avada.com/wp-content/uploads/2021/05/3-Avada-Nutritionist-200x200.jpg 200w, https://avada.com/wp-content/uploads/2021/05/3-Avada-Nutritionist-400x400.jpg 400w, https://avada.com/wp-content/uploads/2021/05/3-Avada-Nutritionist-600x600.jpg 600w, https://avada.com/wp-content/uploads/2021/05/3-Avada-Nutritionist-800x800.jpg 800w, https://avada.com/wp-content/uploads/2021/05/3-Avada-Nutritionist-1200x1200.jpg 1200w, https://avada.com/wp-content/uploads/2021/05/3-Avada-Nutritionist.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-10 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-10 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/nutritionist\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-11 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-11 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/Nn0QK\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-12 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-11 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-47 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Takeout</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-24 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1900\" alt=\"Avada Takeout\" title=\"4-Avada-Takeout\" src=\"https://avada.com/wp-content/uploads/2021/05/4-Avada-Takeout.jpg\" class=\"img-responsive wp-image-888377\" srcset=\"https://avada.com/wp-content/uploads/2021/05/4-Avada-Takeout-200x200.jpg 200w, https://avada.com/wp-content/uploads/2021/05/4-Avada-Takeout-400x400.jpg 400w, https://avada.com/wp-content/uploads/2021/05/4-Avada-Takeout-600x600.jpg 600w, https://avada.com/wp-content/uploads/2021/05/4-Avada-Takeout-800x800.jpg 800w, https://avada.com/wp-content/uploads/2021/05/4-Avada-Takeout-1200x1200.jpg 1200w, https://avada.com/wp-content/uploads/2021/05/4-Avada-Takeout.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-12 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-12 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/takeout\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-13 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-13 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/QO9BMM\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-13 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-12 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-48 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Restaurant</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-25 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1900\" alt=\"Avada Restaurant\" title=\"2-Avada-Restaurant\" src=\"https://avada.com/wp-content/uploads/2022/08/2-Avada-Restaurant.jpg\" class=\"img-responsive wp-image-887503\" srcset=\"https://avada.com/wp-content/uploads/2022/08/2-Avada-Restaurant-200x200.jpg 200w, https://avada.com/wp-content/uploads/2022/08/2-Avada-Restaurant-400x400.jpg 400w, https://avada.com/wp-content/uploads/2022/08/2-Avada-Restaurant-600x600.jpg 600w, https://avada.com/wp-content/uploads/2022/08/2-Avada-Restaurant-800x800.jpg 800w, https://avada.com/wp-content/uploads/2022/08/2-Avada-Restaurant-1200x1200.jpg 1200w, https://avada.com/wp-content/uploads/2022/08/2-Avada-Restaurant.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-14 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-14 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/restaurant\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-15 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-15 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/ORxrGZ\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-14 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-13 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-49 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Bakery</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-26 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1900\" alt=\"Avada Bakery\" title=\"Avada Bakery Post Image\" src=\"https://avada.com/wp-content/uploads/2023/08/Avada-Bakery-Post-Image.jpg\" class=\"img-responsive wp-image-892983\" srcset=\"https://avada.com/wp-content/uploads/2023/08/Avada-Bakery-Post-Image-200x200.jpg 200w, https://avada.com/wp-content/uploads/2023/08/Avada-Bakery-Post-Image-400x400.jpg 400w, https://avada.com/wp-content/uploads/2023/08/Avada-Bakery-Post-Image-600x600.jpg 600w, https://avada.com/wp-content/uploads/2023/08/Avada-Bakery-Post-Image-800x800.jpg 800w, https://avada.com/wp-content/uploads/2023/08/Avada-Bakery-Post-Image-1200x1200.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/Avada-Bakery-Post-Image.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-16 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-16 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/bakery\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-17 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-17 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/15Nrrd\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-15 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-14 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-50 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Food</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-27 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1900\" alt=\"Avada Food\" title=\"1-Avada-Food\" src=\"https://avada.com/wp-content/uploads/2021/05/1-Avada-Food.jpg\" class=\"img-responsive wp-image-888375\" srcset=\"https://avada.com/wp-content/uploads/2021/05/1-Avada-Food-200x200.jpg 200w, https://avada.com/wp-content/uploads/2021/05/1-Avada-Food-400x400.jpg 400w, https://avada.com/wp-content/uploads/2021/05/1-Avada-Food-600x600.jpg 600w, https://avada.com/wp-content/uploads/2021/05/1-Avada-Food-800x800.jpg 800w, https://avada.com/wp-content/uploads/2021/05/1-Avada-Food-1200x1200.jpg 1200w, https://avada.com/wp-content/uploads/2021/05/1-Avada-Food.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-18 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-18 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/food\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-19 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-19 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/955vQ\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-16 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-15 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-51 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Beer</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-28 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1900\" alt=\"Avada Beer\" title=\"Avada Beer Post Image\" src=\"https://avada.com/wp-content/uploads/2023/08/Avada-Beer-Post-Image.jpg\" class=\"img-responsive wp-image-892984\" srcset=\"https://avada.com/wp-content/uploads/2023/08/Avada-Beer-Post-Image-200x200.jpg 200w, https://avada.com/wp-content/uploads/2023/08/Avada-Beer-Post-Image-400x400.jpg 400w, https://avada.com/wp-content/uploads/2023/08/Avada-Beer-Post-Image-600x600.jpg 600w, https://avada.com/wp-content/uploads/2023/08/Avada-Beer-Post-Image-800x800.jpg 800w, https://avada.com/wp-content/uploads/2023/08/Avada-Beer-Post-Image-1200x1200.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/Avada-Beer-Post-Image.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-20 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-20 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/beer\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-21 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-21 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/BZZm9\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-17 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-16 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-52 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Cafe</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-29 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1900\" alt=\"Avada Cafe\" title=\"7-Avada-Cafe\" src=\"https://avada.com/wp-content/uploads/2021/05/7-Avada-Cafe.jpg\" class=\"img-responsive wp-image-888380\" srcset=\"https://avada.com/wp-content/uploads/2021/05/7-Avada-Cafe-200x200.jpg 200w, https://avada.com/wp-content/uploads/2021/05/7-Avada-Cafe-400x400.jpg 400w, https://avada.com/wp-content/uploads/2021/05/7-Avada-Cafe-600x600.jpg 600w, https://avada.com/wp-content/uploads/2021/05/7-Avada-Cafe-800x800.jpg 800w, https://avada.com/wp-content/uploads/2021/05/7-Avada-Cafe-1200x1200.jpg 1200w, https://avada.com/wp-content/uploads/2021/05/7-Avada-Cafe.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-22 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-22 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/cafe\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-23 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-23 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/LkZWa\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-18 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-17 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-53 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Summary</h2></div><div class=\"fusion-text fusion-text-43\"><p>To get started designing your dream website there are a few things that you will need;</p>\n</div><ul style=\"--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-10 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-network-wired fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>A trusted <a href=\"https://avada.com/hosting/\" target=\"_blank\" rel=\"noopener noreferrer\">web hosting service</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-wordpress-simple fab\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>The latest version of <a href=\"https://wordpress.org/download/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon avada-elements-avada-logo\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>The <a href=\"https://1.envato.market/jKdLZ\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-44\"><p>These prebuilt websites are created as a way to give you a head start. You can change the styling, Layouts, content as much or as little as you need to quickly adapt any individual prebuilt site to suit your chosen niche. Get started with the Avada today and launch your business online; Fast.</p>\n<p>With your purchase of Avada, a host of resources are available for you to take advantage of. Resources include access to <span class=\"fusion-cs-live-demos\">97</span> professionally designed <a href=\"https://avada.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">prebuilt websites</a>, 450+ individual <a href=\"https://avada.studio/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Studio</a> prebuilt content blocks, 200+ <a href=\"https://avada.com/help-center/videos/\" target=\"_blank\" rel=\"noopener noreferrer\">tutorial videos</a>, 600+ <a href=\"https://avada.com/help-center/\" target=\"_blank\" rel=\"noopener noreferrer\">help files</a>, and a 24/7 world-class support team to assist and guide you.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-xlarge button-default fusion-button-default button-24 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/jKdLZ\"><i class=\"fa-cloud-download-alt fas button-icon-left\" aria-hidden=\"true\"></i><span class=\"fusion-button-text\">Start Your Next Avada Website Today</span></a></div></div></div></div></div></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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://avada.com/blog/the-10-best-avada-foodie-websites-for-wordpress/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:88:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"The 15 Best Creative Avada Websites For 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://avada.com/blog/the-15-best-creative-avada-websites-for-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://avada.com/blog/the-15-best-creative-avada-websites-for-wordpress/#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, 11 Aug 2023 10:05: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:8:\"Creative\";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:\"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:2;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:3;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:\"\";}i:4;a:5:{s:4:\"data\";s:14:\"Prebuilt Sites\";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: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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://theme-fusion.com/?p=865397\";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:325:\"Are you looking for the best Creative website for WordPress? Or do you want to rebrand your existing website? Avada is a Website Builder for WordPress with flexible and intuitive website design tools that will empower you to create websites of any style. And the best part is that no coding knowledge is required. Whether ...\";s: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:\"schanteldwl\";s: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:90513:\"<p><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-19 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-18 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-text fusion-text-45\"><p>Are you looking for the best Creative website for WordPress? Or do you want to rebrand your existing website? <a href=\"https://1.envato.market/jKdLZ\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> is a <a href=\"https://avada.com/features/\" target=\"_blank\" rel=\"noopener noreferrer\">Website Builder</a> for WordPress with flexible and intuitive website design tools that will empower you to create <a href=\"https://avada.website/\" target=\"_blank\" rel=\"noopener noreferrer\">websites</a> of any style. And the best part is that no coding knowledge is required. Whether you are <a href=\"https://avada.com/for-beginners/\" target=\"_blank\" rel=\"noopener noreferrer\">a beginner</a>, <a href=\"https://avada.com/for-marketers/\" target=\"_blank\" rel=\"noopener noreferrer\">a marketer</a>, or <a href=\"https://avada.com/for-professionals/\" target=\"_blank\" rel=\"noopener noreferrer\">a professional</a>, Avada will give you the confidence to manage your website stress-free.</p>\n<p>The 15 websites that are showcased in this article are popular downloads in the Avada <a href=\"https://avada.website/#fps_creative\" target=\"_blank\" rel=\"noopener noreferrer\">Creative</a> category. Avada&#8217;s prebuilt content and websites are fully customizable and adapted to suit any website type. Also feel free to check out these <a href=\"https://avada.com/blog/the-15-best-avada-corporate-websites-for-wordpress/\" target=\"_blank\" rel=\"noopener noreferrer\">15 Corporate</a> websites.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-54 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Overview</h2></div><div class=\"awb-toc-el awb-toc-el--3\" data-awb-toc-id=\"3\" data-awb-toc-options=\"{&quot;allowed_heading_tags&quot;:{&quot;h2&quot;:0,&quot;h3&quot;:1},&quot;ignore_headings&quot;:&quot;&quot;,&quot;ignore_headings_words&quot;:&quot;Overview&quot;,&quot;enable_cache&quot;:&quot;yes&quot;,&quot;highlight_current_heading&quot;:&quot;no&quot;,&quot;hide_hidden_titles&quot;:&quot;yes&quot;,&quot;limit_container&quot;:&quot;post_content&quot;,&quot;select_custom_headings&quot;:&quot;&quot;,&quot;icon&quot;:&quot;fa-angle-right fal&quot;,&quot;counter_type&quot;:&quot;custom_icon&quot;}\" style=\"--awb-item-font-size:var(--awb-typography4-font-size);--awb-item-line-height:var(--awb-typography4-line-height);--awb-item-letter-spacing:var(--awb-typography4-letter-spacing);--awb-item-text-transform:var(--awb-typography4-text-transform);--awb-item-color:var(--awb-color8);--awb-item-color-hover:var(--awb-color5);--awb-item-bg-color-hover:rgba(101,189,125,0);--awb-counter-color:var(--awb-color6);--awb-hover-counter-color:var(--awb-color5);--awb-list-indent:15px;--awb-item-padding-top:3px;--awb-item-padding-right:0;--awb-item-padding-bottom:5px;--awb-item-padding-left:0;--awb-item-font-family:var(--awb-typography4-font-family);--awb-item-font-weight:var(--awb-typography4-font-weight);--awb-item-font-style:var(--awb-typography4-font-style);\"><div class=\"awb-toc-el__content\"></div></div>\n</div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-20 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-19 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-55 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Programmer</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-30 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1900\" alt=\"Avada Programmer\" title=\"Avada Programmer Post Image\" src=\"https://avada.com/wp-content/uploads/2023/08/Avada-Programmer-Post-Image.jpg\" class=\"img-responsive wp-image-892963\" srcset=\"https://avada.com/wp-content/uploads/2023/08/Avada-Programmer-Post-Image-200x200.jpg 200w, https://avada.com/wp-content/uploads/2023/08/Avada-Programmer-Post-Image-400x400.jpg 400w, https://avada.com/wp-content/uploads/2023/08/Avada-Programmer-Post-Image-600x600.jpg 600w, https://avada.com/wp-content/uploads/2023/08/Avada-Programmer-Post-Image-800x800.jpg 800w, https://avada.com/wp-content/uploads/2023/08/Avada-Programmer-Post-Image-1200x1200.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/Avada-Programmer-Post-Image.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-24 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-25 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/programmer\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-25 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-26 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/ANkZJ\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-21 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-20 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-56 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Retro</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-31 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1900\" alt=\"Avada Retro\" title=\"Avada Retro Post Image\" src=\"https://avada.com/wp-content/uploads/2023/08/Avada-Retro-Post-Image.jpg\" class=\"img-responsive wp-image-892958\" srcset=\"https://avada.com/wp-content/uploads/2023/08/Avada-Retro-Post-Image-200x200.jpg 200w, https://avada.com/wp-content/uploads/2023/08/Avada-Retro-Post-Image-400x400.jpg 400w, https://avada.com/wp-content/uploads/2023/08/Avada-Retro-Post-Image-600x600.jpg 600w, https://avada.com/wp-content/uploads/2023/08/Avada-Retro-Post-Image-800x800.jpg 800w, https://avada.com/wp-content/uploads/2023/08/Avada-Retro-Post-Image-1200x1200.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/Avada-Retro-Post-Image.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-26 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-27 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/retro\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-27 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-28 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/3NXvy\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-22 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-21 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-57 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Handmade</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-32 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1962\" alt=\"Avada Handmade\" title=\"avada-handmade-post-image\" src=\"https://avada.com/wp-content/uploads/2022/08/avada-handmade-post-image.jpg\" class=\"img-responsive wp-image-887469\" srcset=\"https://avada.com/wp-content/uploads/2022/08/avada-handmade-post-image-200x207.jpg 200w, https://avada.com/wp-content/uploads/2022/08/avada-handmade-post-image-400x413.jpg 400w, https://avada.com/wp-content/uploads/2022/08/avada-handmade-post-image-600x620.jpg 600w, https://avada.com/wp-content/uploads/2022/08/avada-handmade-post-image-800x826.jpg 800w, https://avada.com/wp-content/uploads/2022/08/avada-handmade-post-image-1200x1239.jpg 1200w, https://avada.com/wp-content/uploads/2022/08/avada-handmade-post-image.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-28 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-29 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/handmade\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-29 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-30 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/jWLrMZ\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-23 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-22 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-58 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Virtual Assistant</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-33 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1900\" alt=\"Avada Virtual Assistant\" title=\"7-Avada-Virtual-Assistant\" src=\"https://avada.com/wp-content/uploads/2021/04/7-Avada-Virtual-Assistant.jpg\" class=\"img-responsive wp-image-888417\" srcset=\"https://avada.com/wp-content/uploads/2021/04/7-Avada-Virtual-Assistant-200x200.jpg 200w, https://avada.com/wp-content/uploads/2021/04/7-Avada-Virtual-Assistant-400x400.jpg 400w, https://avada.com/wp-content/uploads/2021/04/7-Avada-Virtual-Assistant-600x600.jpg 600w, https://avada.com/wp-content/uploads/2021/04/7-Avada-Virtual-Assistant-800x800.jpg 800w, https://avada.com/wp-content/uploads/2021/04/7-Avada-Virtual-Assistant-1200x1200.jpg 1200w, https://avada.com/wp-content/uploads/2021/04/7-Avada-Virtual-Assistant.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-30 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-31 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/virtual-assistant\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-31 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-32 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/Nn0QK\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-24 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-23 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-59 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Videographer</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-34 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1900\" alt=\"Avada Videographer\" title=\"10-Avada-Videographer\" src=\"https://avada.com/wp-content/uploads/2021/04/10-Avada-Videographer.jpg\" class=\"img-responsive wp-image-888420\" srcset=\"https://avada.com/wp-content/uploads/2021/04/10-Avada-Videographer-200x200.jpg 200w, https://avada.com/wp-content/uploads/2021/04/10-Avada-Videographer-400x400.jpg 400w, https://avada.com/wp-content/uploads/2021/04/10-Avada-Videographer-600x600.jpg 600w, https://avada.com/wp-content/uploads/2021/04/10-Avada-Videographer-800x800.jpg 800w, https://avada.com/wp-content/uploads/2021/04/10-Avada-Videographer-1200x1200.jpg 1200w, https://avada.com/wp-content/uploads/2021/04/10-Avada-Videographer.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-32 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-33 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/videographer\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-33 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-34 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/QO9BMM\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-25 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-24 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-60 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Interior Design</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-35 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1900\" alt=\"Avada Interior Design\" title=\"6-Avada-Interior-Design\" src=\"https://avada.com/wp-content/uploads/2022/08/6-Avada-Interior-Design.jpg\" class=\"img-responsive wp-image-887501\" srcset=\"https://avada.com/wp-content/uploads/2022/08/6-Avada-Interior-Design-200x200.jpg 200w, https://avada.com/wp-content/uploads/2022/08/6-Avada-Interior-Design-400x400.jpg 400w, https://avada.com/wp-content/uploads/2022/08/6-Avada-Interior-Design-600x600.jpg 600w, https://avada.com/wp-content/uploads/2022/08/6-Avada-Interior-Design-800x800.jpg 800w, https://avada.com/wp-content/uploads/2022/08/6-Avada-Interior-Design-1200x1200.jpg 1200w, https://avada.com/wp-content/uploads/2022/08/6-Avada-Interior-Design.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-34 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-35 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/interior-design\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-35 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-36 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/ORxrGZ\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-26 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-25 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-61 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Author</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-36 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1900\" alt=\"Avada Author\" title=\"8-Avada-Author\" src=\"https://avada.com/wp-content/uploads/2021/04/8-Avada-Author.jpg\" class=\"img-responsive wp-image-888418\" srcset=\"https://avada.com/wp-content/uploads/2021/04/8-Avada-Author-200x200.jpg 200w, https://avada.com/wp-content/uploads/2021/04/8-Avada-Author-400x400.jpg 400w, https://avada.com/wp-content/uploads/2021/04/8-Avada-Author-600x600.jpg 600w, https://avada.com/wp-content/uploads/2021/04/8-Avada-Author-800x800.jpg 800w, https://avada.com/wp-content/uploads/2021/04/8-Avada-Author-1200x1200.jpg 1200w, https://avada.com/wp-content/uploads/2021/04/8-Avada-Author.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-36 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-37 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/author\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-37 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-38 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/15Nrrd\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-27 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-26 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-62 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Influencer</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-37 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1900\" alt=\"Avada Influencer\" title=\"2-Avada-Influencer\" src=\"https://avada.com/wp-content/uploads/2021/04/2-Avada-Influencer.jpg\" class=\"img-responsive wp-image-888412\" srcset=\"https://avada.com/wp-content/uploads/2021/04/2-Avada-Influencer-200x200.jpg 200w, https://avada.com/wp-content/uploads/2021/04/2-Avada-Influencer-400x400.jpg 400w, https://avada.com/wp-content/uploads/2021/04/2-Avada-Influencer-600x600.jpg 600w, https://avada.com/wp-content/uploads/2021/04/2-Avada-Influencer-800x800.jpg 800w, https://avada.com/wp-content/uploads/2021/04/2-Avada-Influencer-1200x1200.jpg 1200w, https://avada.com/wp-content/uploads/2021/04/2-Avada-Influencer.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-38 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-39 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/influencer\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-39 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-40 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/955vQ\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-28 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-27 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-63 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Podcasts</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-38 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1900\" alt=\"Avada Podcast\" title=\"6-Avada-Podcasts\" src=\"https://avada.com/wp-content/uploads/2021/04/6-Avada-Podcasts.jpg\" class=\"img-responsive wp-image-888416\" srcset=\"https://avada.com/wp-content/uploads/2021/04/6-Avada-Podcasts-200x200.jpg 200w, https://avada.com/wp-content/uploads/2021/04/6-Avada-Podcasts-400x400.jpg 400w, https://avada.com/wp-content/uploads/2021/04/6-Avada-Podcasts-600x600.jpg 600w, https://avada.com/wp-content/uploads/2021/04/6-Avada-Podcasts-800x800.jpg 800w, https://avada.com/wp-content/uploads/2021/04/6-Avada-Podcasts-1200x1200.jpg 1200w, https://avada.com/wp-content/uploads/2021/04/6-Avada-Podcasts.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-40 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-41 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/podcasts\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-41 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-42 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/BZZm9\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-29 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-28 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-64 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Nightclub</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-39 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1900\" alt=\"Avada Night Club\" title=\"Avada Nightclub Post Image\" src=\"https://avada.com/wp-content/uploads/2023/08/Avada-Nightclub-Post-Image.jpg\" class=\"img-responsive wp-image-892961\" srcset=\"https://avada.com/wp-content/uploads/2023/08/Avada-Nightclub-Post-Image-200x200.jpg 200w, https://avada.com/wp-content/uploads/2023/08/Avada-Nightclub-Post-Image-400x400.jpg 400w, https://avada.com/wp-content/uploads/2023/08/Avada-Nightclub-Post-Image-600x600.jpg 600w, https://avada.com/wp-content/uploads/2023/08/Avada-Nightclub-Post-Image-800x800.jpg 800w, https://avada.com/wp-content/uploads/2023/08/Avada-Nightclub-Post-Image-1200x1200.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/Avada-Nightclub-Post-Image.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-42 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-43 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/nightclub\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-43 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-44 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/LkZWa\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-30 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-29 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-65 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Galerie</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-40 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1900\" alt=\"Avada Galerie\" title=\"Avada Galerie Post Image\" src=\"https://avada.com/wp-content/uploads/2023/08/Avada-Galerie-Post-Image.jpg\" class=\"img-responsive wp-image-892959\" srcset=\"https://avada.com/wp-content/uploads/2023/08/Avada-Galerie-Post-Image-200x200.jpg 200w, https://avada.com/wp-content/uploads/2023/08/Avada-Galerie-Post-Image-400x400.jpg 400w, https://avada.com/wp-content/uploads/2023/08/Avada-Galerie-Post-Image-600x600.jpg 600w, https://avada.com/wp-content/uploads/2023/08/Avada-Galerie-Post-Image-800x800.jpg 800w, https://avada.com/wp-content/uploads/2023/08/Avada-Galerie-Post-Image-1200x1200.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/Avada-Galerie-Post-Image.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-44 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-45 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/galerie\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-45 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-46 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/JNaya\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-31 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-30 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-66 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Promote</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-41 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1900\" alt=\"Avada Promote\" title=\"Avada Promote Post Image\" src=\"https://avada.com/wp-content/uploads/2023/08/Avada-Promote-Post-Image.jpg\" class=\"img-responsive wp-image-892957\" srcset=\"https://avada.com/wp-content/uploads/2023/08/Avada-Promote-Post-Image-200x200.jpg 200w, https://avada.com/wp-content/uploads/2023/08/Avada-Promote-Post-Image-400x400.jpg 400w, https://avada.com/wp-content/uploads/2023/08/Avada-Promote-Post-Image-600x600.jpg 600w, https://avada.com/wp-content/uploads/2023/08/Avada-Promote-Post-Image-800x800.jpg 800w, https://avada.com/wp-content/uploads/2023/08/Avada-Promote-Post-Image-1200x1200.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/Avada-Promote-Post-Image.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-46 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-47 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/promote\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-47 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-48 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/3Nz2B\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-32 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-31 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-67 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Freelancer</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-42 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1900\" alt=\"Avada Freelancer\" title=\"4-Avada-Freelancer\" src=\"https://avada.com/wp-content/uploads/2021/04/4-Avada-Freelancer.jpg\" class=\"img-responsive wp-image-888414\" srcset=\"https://avada.com/wp-content/uploads/2021/04/4-Avada-Freelancer-200x200.jpg 200w, https://avada.com/wp-content/uploads/2021/04/4-Avada-Freelancer-400x400.jpg 400w, https://avada.com/wp-content/uploads/2021/04/4-Avada-Freelancer-600x600.jpg 600w, https://avada.com/wp-content/uploads/2021/04/4-Avada-Freelancer-800x800.jpg 800w, https://avada.com/wp-content/uploads/2021/04/4-Avada-Freelancer-1200x1200.jpg 1200w, https://avada.com/wp-content/uploads/2021/04/4-Avada-Freelancer.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-48 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-49 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/freelancer\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-49 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-50 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/9Yj3y\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-33 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-32 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-68 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Photography Light</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-43 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1900\" alt=\"Photography Light\" title=\"Avada Photography Light Post Image\" src=\"https://avada.com/wp-content/uploads/2023/08/Avada-Photography-Light-Post-Image.jpg\" class=\"img-responsive wp-image-892962\" srcset=\"https://avada.com/wp-content/uploads/2023/08/Avada-Photography-Light-Post-Image-200x200.jpg 200w, https://avada.com/wp-content/uploads/2023/08/Avada-Photography-Light-Post-Image-400x400.jpg 400w, https://avada.com/wp-content/uploads/2023/08/Avada-Photography-Light-Post-Image-600x600.jpg 600w, https://avada.com/wp-content/uploads/2023/08/Avada-Photography-Light-Post-Image-800x800.jpg 800w, https://avada.com/wp-content/uploads/2023/08/Avada-Photography-Light-Post-Image-1200x1200.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/Avada-Photography-Light-Post-Image.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-50 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-51 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/photography-light\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-51 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-52 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/vdbGe\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-34 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-33 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-69 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Music</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-44 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1900\" alt=\"Avada Music Post Image\" title=\"Avada Music Post Image\" src=\"https://avada.com/wp-content/uploads/2023/08/Avada-Music-Post-Image.jpg\" class=\"img-responsive wp-image-892960\" srcset=\"https://avada.com/wp-content/uploads/2023/08/Avada-Music-Post-Image-200x200.jpg 200w, https://avada.com/wp-content/uploads/2023/08/Avada-Music-Post-Image-400x400.jpg 400w, https://avada.com/wp-content/uploads/2023/08/Avada-Music-Post-Image-600x600.jpg 600w, https://avada.com/wp-content/uploads/2023/08/Avada-Music-Post-Image-800x800.jpg 800w, https://avada.com/wp-content/uploads/2023/08/Avada-Music-Post-Image-1200x1200.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/Avada-Music-Post-Image.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-52 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-53 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/music\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-53 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-54 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/2NL3O\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-35 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-34 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-70 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Summary</h2></div><div class=\"fusion-text fusion-text-46\"><p>To get started designing your dream website there are a few things that you will need;</p>\n</div><ul style=\"--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-11 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-network-wired fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>A trusted <a href=\"https://avada.com/hosting/\" target=\"_blank\" rel=\"noopener noreferrer\">web hosting service</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-wordpress-simple fab\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>The latest version of <a href=\"https://wordpress.org/download/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon avada-elements-avada-logo\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>The <a href=\"https://1.envato.market/jKdLZ\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-47\"><p>These prebuilt websites are created as a way to give you a head start. You can change the styling, Layouts, content as much or as little as you need to quickly adapt any individual prebuilt site to suit your chosen niche. Get started with the Avada today and launch your business online; Fast.</p>\n<p>With your purchase of Avada, a host of resources are available for you to take advantage of. Resources include access to <span class=\"fusion-cs-live-demos\">97</span> professionally designed <a href=\"https://avada.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">prebuilt websites</a>, 450+ individual <a href=\"https://avada.studio/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Studio</a> prebuilt content blocks, 200+ <a href=\"https://avada.com/help-center/videos/\" target=\"_blank\" rel=\"noopener noreferrer\">tutorial videos</a>, 600+ <a href=\"https://avada.com/help-center/\" target=\"_blank\" rel=\"noopener noreferrer\">help files</a>, and a 24/7 world-class support team to assist and guide you.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-xlarge button-default fusion-button-default button-55 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/jKdLZ\"><i class=\"fa-cloud-download-alt fas button-icon-left\" aria-hidden=\"true\"></i><span class=\"fusion-button-text\">Start Your Next Avada Website Today</span></a></div></div></div></div></div></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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://avada.com/blog/the-15-best-creative-avada-websites-for-wordpress/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:3;a:6:{s:4:\"data\";s:88:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"10 Avada One-Page Websites For 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://avada.com/blog/10-avada-one-page-websites-for-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://avada.com/blog/10-avada-one-page-websites-for-wordpress/#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:\"Mon, 07 Aug 2023 14:27:58 +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:8:\"One-Page\";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:\"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:2;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:3;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: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:\"\";}i:5;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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"https://avada.com/blog//\";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:359:\"Building a one-page website can be advantageous for various reasons, depending on your marketing objectives or business needs. For a detailed deep dive into why a one-page website may be a compelling choice, read this blog post. Here are some compelling reasons to consider a one-page design:  Simplicity: One-page websites usually offer a straightforward ...\";s: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:\"michaelb\";s: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:67538:\"<p><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-36 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-35 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-text fusion-text-48\"><p>Building a one-page website can be advantageous for various reasons, depending on your marketing objectives or business needs. For a detailed deep dive into why a one-page website may be a compelling choice, read this <a href=\"https://avada.com/blog/what-is-a-one-page-website-and-why-do-you-need-one/\" target=\"_blank\" rel=\"noopener noreferrer\">blog post</a>. Here are some compelling reasons to consider a one-page design:</p>\n</div><ul style=\"--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-12 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><strong>Simplicity:</strong> One-page websites usually offer a straightforward and concise user experience. Visitors find all the information they need on a single page, reducing the need to navigate multiple pages or sections.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><strong>Easy Maintenance:</strong> With only one page to manage, updates and maintenance become simpler. There are fewer pages to monitor for broken links or outdated information.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><strong>Focused Content:</strong> A single page forces the content creator to be concise and prioritize the most critical information. This can lead to more focused and effective communication.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><strong>Smooth User Experience:</strong> Many one-page websites utilize smooth scrolling, fluidly guiding the user through different sections of the site. This can be a delightful experience on both desktop and mobile devices.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><strong>Mobile-Friendly:</strong> Due to their simplicity, one-page websites often perform well on mobile devices, providing mobile users with a responsive and efficient experience.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><strong>Higher Conversion Rates:</strong> By eliminating unnecessary distractions and presenting a focused message or call to action, one-page designs can often lead to higher conversion rates.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><strong>Ideal for Marketing:</strong> One-page websites are perfect for portfolios, event announcements, product launches, landing pages for specific campaigns, or personal resumes.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><strong>Cost-Effective:</strong> Building, hosting, and maintaining a one-page website can be more affordable than managing a multi-page site.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><strong>Quick Load Times:</strong> With optimized content and fewer assets, one-page websites often load faster, which benefits user experience and SEO.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><strong>Storytelling:</strong> The linear format of a one-page website is ideal for guiding visitors through a narrative or a specific sequence, creating a compelling storytelling experience.</p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-49\"><p><a href=\"https://1.envato.market/jKdLZ\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> is a <a href=\"https://avada.com/features/\" target=\"_blank\" rel=\"noopener noreferrer\">Website Builder</a> for WordPress with flexible and intuitive website design tools that will empower you to create <a href=\"https://avada.website/\" target=\"_blank\" rel=\"noopener noreferrer\">websites</a> of any style. And the best part is that no coding knowledge is required. Whether you are <a href=\"https://avada.com/for-beginners/\" target=\"_blank\" rel=\"noopener noreferrer\">a beginner</a>, <a href=\"https://avada.com/for-marketers/\" target=\"_blank\" rel=\"noopener noreferrer\">a marketer</a>, or <a href=\"https://avada.com/for-professionals/\" target=\"_blank\" rel=\"noopener noreferrer\">a professional</a>, Avada will give you the confidence to manage your online store stress-free.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-71 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Overview</h2></div><div class=\"awb-toc-el awb-toc-el--4\" data-awb-toc-id=\"4\" data-awb-toc-options=\"{&quot;allowed_heading_tags&quot;:{&quot;h2&quot;:0,&quot;h3&quot;:1},&quot;ignore_headings&quot;:&quot;&quot;,&quot;ignore_headings_words&quot;:&quot;Overview&quot;,&quot;enable_cache&quot;:&quot;yes&quot;,&quot;highlight_current_heading&quot;:&quot;no&quot;,&quot;hide_hidden_titles&quot;:&quot;yes&quot;,&quot;limit_container&quot;:&quot;post_content&quot;,&quot;select_custom_headings&quot;:&quot;&quot;,&quot;icon&quot;:&quot;fa-angle-right fal&quot;,&quot;counter_type&quot;:&quot;custom_icon&quot;}\" style=\"--awb-item-font-size:var(--awb-typography4-font-size);--awb-item-line-height:var(--awb-typography4-line-height);--awb-item-letter-spacing:var(--awb-typography4-letter-spacing);--awb-item-text-transform:var(--awb-typography4-text-transform);--awb-item-color:var(--awb-color8);--awb-item-color-hover:var(--awb-color5);--awb-item-bg-color-hover:rgba(101,189,125,0);--awb-counter-color:var(--awb-color6);--awb-hover-counter-color:var(--awb-color5);--awb-list-indent:15px;--awb-item-padding-top:3px;--awb-item-padding-right:0;--awb-item-padding-bottom:5px;--awb-item-padding-left:0;--awb-item-font-family:var(--awb-typography4-font-family);--awb-item-font-weight:var(--awb-typography4-font-weight);--awb-item-font-style:var(--awb-typography4-font-style);\"><div class=\"awb-toc-el__content\"></div></div>\n</div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-37 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-36 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-72 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Cleaning Services</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-45 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1807\" alt=\"Avada Cleaning Services\" title=\"Avada Cleaning Services\" src=\"https://avada.com/wp-content/uploads/2023/08/avada-cleaning-onepage-post.jpg\" class=\"img-responsive wp-image-892935\" srcset=\"https://avada.com/wp-content/uploads/2023/08/avada-cleaning-onepage-post-200x190.jpg 200w, https://avada.com/wp-content/uploads/2023/08/avada-cleaning-onepage-post-400x380.jpg 400w, https://avada.com/wp-content/uploads/2023/08/avada-cleaning-onepage-post-600x571.jpg 600w, https://avada.com/wp-content/uploads/2023/08/avada-cleaning-onepage-post-800x761.jpg 800w, https://avada.com/wp-content/uploads/2023/08/avada-cleaning-onepage-post-1200x1141.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/avada-cleaning-onepage-post.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-54 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-56 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/cleaning-services/\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-55 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-57 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/e4rPJ1\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-38 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-37 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-73 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Salon</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-46 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1689\" alt=\"Avada Salon\" title=\"Avada Salon\" src=\"https://avada.com/wp-content/uploads/2023/08/avada-salon-onepage-post.jpg\" class=\"img-responsive wp-image-892944\" srcset=\"https://avada.com/wp-content/uploads/2023/08/avada-salon-onepage-post-200x178.jpg 200w, https://avada.com/wp-content/uploads/2023/08/avada-salon-onepage-post-400x356.jpg 400w, https://avada.com/wp-content/uploads/2023/08/avada-salon-onepage-post-600x533.jpg 600w, https://avada.com/wp-content/uploads/2023/08/avada-salon-onepage-post-800x711.jpg 800w, https://avada.com/wp-content/uploads/2023/08/avada-salon-onepage-post-1200x1067.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/avada-salon-onepage-post.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-56 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-58 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/salon/\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-57 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-59 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/e4rPJ1\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-39 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-38 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-74 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Wedding</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-47 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1812\" alt=\"Avada Wedding\" title=\"Avada Wedding\" src=\"https://avada.com/wp-content/uploads/2023/08/avada-wedding-onepage-post.jpg\" class=\"img-responsive wp-image-892939\" srcset=\"https://avada.com/wp-content/uploads/2023/08/avada-wedding-onepage-post-200x191.jpg 200w, https://avada.com/wp-content/uploads/2023/08/avada-wedding-onepage-post-400x381.jpg 400w, https://avada.com/wp-content/uploads/2023/08/avada-wedding-onepage-post-600x572.jpg 600w, https://avada.com/wp-content/uploads/2023/08/avada-wedding-onepage-post-800x763.jpg 800w, https://avada.com/wp-content/uploads/2023/08/avada-wedding-onepage-post-1200x1144.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/avada-wedding-onepage-post.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-58 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-60 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/wedding/\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-59 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-61 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/e4rPJ1\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-40 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-39 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-75 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Resume</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-48 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1794\" alt=\"Avada Resume\" title=\"Avada Resume\" src=\"https://avada.com/wp-content/uploads/2023/08/avada-resume-onepage-post.jpg\" class=\"img-responsive wp-image-892938\" srcset=\"https://avada.com/wp-content/uploads/2023/08/avada-resume-onepage-post-200x189.jpg 200w, https://avada.com/wp-content/uploads/2023/08/avada-resume-onepage-post-400x378.jpg 400w, https://avada.com/wp-content/uploads/2023/08/avada-resume-onepage-post-600x567.jpg 600w, https://avada.com/wp-content/uploads/2023/08/avada-resume-onepage-post-800x755.jpg 800w, https://avada.com/wp-content/uploads/2023/08/avada-resume-onepage-post-1200x1133.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/avada-resume-onepage-post.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-60 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-62 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/resume/\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-61 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-63 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/e4rPJ1\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-41 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-40 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-76 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Adventure</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-49 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1805\" alt=\"Avada Adventure\" title=\"Avada Adventure\" src=\"https://avada.com/wp-content/uploads/2023/08/avada-adventure-onepage-post.jpg\" class=\"img-responsive wp-image-892942\" srcset=\"https://avada.com/wp-content/uploads/2023/08/avada-adventure-onepage-post-200x190.jpg 200w, https://avada.com/wp-content/uploads/2023/08/avada-adventure-onepage-post-400x380.jpg 400w, https://avada.com/wp-content/uploads/2023/08/avada-adventure-onepage-post-600x570.jpg 600w, https://avada.com/wp-content/uploads/2023/08/avada-adventure-onepage-post-800x760.jpg 800w, https://avada.com/wp-content/uploads/2023/08/avada-adventure-onepage-post-1200x1140.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/avada-adventure-onepage-post.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-62 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-64 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/adventure/\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-63 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-65 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/e4rPJ1\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-42 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-41 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-77 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Splash</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-50 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1507\" alt=\"Avada Splash\" title=\"Avada Splash\" src=\"https://avada.com/wp-content/uploads/2023/08/avada-splash-onepage-post.jpg\" class=\"img-responsive wp-image-892943\" srcset=\"https://avada.com/wp-content/uploads/2023/08/avada-splash-onepage-post-200x159.jpg 200w, https://avada.com/wp-content/uploads/2023/08/avada-splash-onepage-post-400x317.jpg 400w, https://avada.com/wp-content/uploads/2023/08/avada-splash-onepage-post-600x476.jpg 600w, https://avada.com/wp-content/uploads/2023/08/avada-splash-onepage-post-800x635.jpg 800w, https://avada.com/wp-content/uploads/2023/08/avada-splash-onepage-post-1200x952.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/avada-splash-onepage-post.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-64 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-66 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/splash/\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-65 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-67 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/e4rPJ1\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-43 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-42 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-78 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada App</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-51 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1724\" alt=\"Avada App\" title=\"Avada App\" src=\"https://avada.com/wp-content/uploads/2023/08/avada-app-onepage-post.jpg\" class=\"img-responsive wp-image-892936\" srcset=\"https://avada.com/wp-content/uploads/2023/08/avada-app-onepage-post-200x181.jpg 200w, https://avada.com/wp-content/uploads/2023/08/avada-app-onepage-post-400x363.jpg 400w, https://avada.com/wp-content/uploads/2023/08/avada-app-onepage-post-600x544.jpg 600w, https://avada.com/wp-content/uploads/2023/08/avada-app-onepage-post-800x726.jpg 800w, https://avada.com/wp-content/uploads/2023/08/avada-app-onepage-post-1200x1089.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/avada-app-onepage-post.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-66 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-68 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/app/\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-67 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-69 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/e4rPJ1\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-44 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-43 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-79 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Landing Product</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-52 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1789\" alt=\"Avada Landing Product\" title=\"Avada Landing Product\" src=\"https://avada.com/wp-content/uploads/2023/08/avada-landing-onepage-post.jpg\" class=\"img-responsive wp-image-892937\" srcset=\"https://avada.com/wp-content/uploads/2023/08/avada-landing-onepage-post-200x188.jpg 200w, https://avada.com/wp-content/uploads/2023/08/avada-landing-onepage-post-400x377.jpg 400w, https://avada.com/wp-content/uploads/2023/08/avada-landing-onepage-post-600x565.jpg 600w, https://avada.com/wp-content/uploads/2023/08/avada-landing-onepage-post-800x753.jpg 800w, https://avada.com/wp-content/uploads/2023/08/avada-landing-onepage-post-1200x1130.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/avada-landing-onepage-post.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-68 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-70 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/landing-product/\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-69 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-71 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/e4rPJ1\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-45 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-44 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-80 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Launch</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-53 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1300\" alt=\"Avada Launch\" title=\"Avada Launch\" src=\"https://avada.com/wp-content/uploads/2023/08/avada-launch-onepage-post.jpg\" class=\"img-responsive wp-image-892941\" srcset=\"https://avada.com/wp-content/uploads/2023/08/avada-launch-onepage-post-200x137.jpg 200w, https://avada.com/wp-content/uploads/2023/08/avada-launch-onepage-post-400x274.jpg 400w, https://avada.com/wp-content/uploads/2023/08/avada-launch-onepage-post-600x411.jpg 600w, https://avada.com/wp-content/uploads/2023/08/avada-launch-onepage-post-800x547.jpg 800w, https://avada.com/wp-content/uploads/2023/08/avada-launch-onepage-post-1200x821.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/avada-launch-onepage-post.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-70 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-72 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/launch/\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-71 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-73 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/e4rPJ1\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-46 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-45 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-81 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Technology</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-54 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1671\" alt=\"Avada Technology\" title=\"Avada Technology\" src=\"https://avada.com/wp-content/uploads/2023/08/avada-technology-onepage-post.jpg\" class=\"img-responsive wp-image-892940\" srcset=\"https://avada.com/wp-content/uploads/2023/08/avada-technology-onepage-post-200x176.jpg 200w, https://avada.com/wp-content/uploads/2023/08/avada-technology-onepage-post-400x352.jpg 400w, https://avada.com/wp-content/uploads/2023/08/avada-technology-onepage-post-600x528.jpg 600w, https://avada.com/wp-content/uploads/2023/08/avada-technology-onepage-post-800x704.jpg 800w, https://avada.com/wp-content/uploads/2023/08/avada-technology-onepage-post-1200x1055.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/avada-technology-onepage-post.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-72 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-74 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/technology/\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-73 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-75 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/e4rPJ1\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-47 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-46 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-82 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Summary</h2></div><div class=\"fusion-text fusion-text-50\"><p>To get started designing your dream website there are a few things that you will need;</p>\n</div><ul style=\"--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-13 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-network-wired fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">A trusted <a href=\"https://avada.com/hosting/\" target=\"_blank\" rel=\"noopener noreferrer\">web hosting service</a></div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-wordpress-simple fab\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>The latest version of <a href=\"https://wordpress.org/download/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon avada-elements-avada-logo\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>The <a href=\"https://1.envato.market/jKdLZ\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-51\"><p>Building a one-page website can be advantageous for various reasons, depending on your marketing objectives or business needs. Here are some compelling reasons to consider a one-page design:</p>\n<p>With your purchase of Avada, a host of resources are available for you to take advantage of. Resources include access to <span class=\"fusion-cs-live-demos\">97</span> professionally designed <a href=\"https://avada.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">prebuilt websites</a>, 450+ individual <a href=\"https://avada.studio/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Studio</a> prebuilt content blocks, 200+ <a href=\"https://avada.com/help-center/videos/\" target=\"_blank\" rel=\"noopener noreferrer\">tutorial videos</a>, 600+ <a href=\"https://avada.com/help-center/\" target=\"_blank\" rel=\"noopener noreferrer\">help files</a>, and a 24/7 world-class support team to assist and guide you.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-xlarge button-default fusion-button-default button-76 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/jKdLZ\"><i class=\"fa-cloud-download-alt fas button-icon-left\" aria-hidden=\"true\"></i><span class=\"fusion-button-text\">Start Your Next Avada Website Today</span></a></div></div></div></div></div></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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://avada.com/blog/10-avada-one-page-websites-for-wordpress/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:4;a:6:{s:4:\"data\";s:88:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"The 15 Best Avada Corporate Websites for 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://avada.com/blog/the-15-best-avada-corporate-websites-for-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://avada.com/blog/the-15-best-avada-corporate-websites-for-wordpress/#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, 04 Aug 2023 08:00: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:6:{i:0;a:5:{s:4:\"data\";s:9:\"Corporate\";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:\"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:2;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:3;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:\"\";}i:4;a:5:{s:4:\"data\";s:14:\"Prebuilt Sites\";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: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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://theme-fusion.com/?p=866395\";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:326:\"Are you looking for the best Corporate website for WordPress? Or do you want to rebrand your existing website? Avada is a Website Builder for WordPress with flexible and intuitive website design tools that will empower you to create websites of any style. And the best part is that no coding knowledge is required. Whether ...\";s: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:\"michaelb\";s: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:90310:\"<p><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-48 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-47 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-text fusion-text-52\"><p>Are you looking for the best Corporate website for WordPress? Or do you want to rebrand your existing website? <a href=\"https://1.envato.market/jKdLZ\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> is a <a href=\"https://avada.com/features/\" target=\"_blank\" rel=\"noopener noreferrer\">Website Builder</a> for WordPress with flexible and intuitive website design tools that will empower you to create <a href=\"https://avada.website/\" target=\"_blank\" rel=\"noopener noreferrer\">websites</a> of any style. And the best part is that no coding knowledge is required. Whether you are <a href=\"https://avada.com/for-beginners/\" target=\"_blank\" rel=\"noopener noreferrer\">a beginner</a>, <a href=\"https://avada.com/for-marketers/\" target=\"_blank\" rel=\"noopener noreferrer\">a marketer</a>, or <a href=\"https://avada.com/for-professionals/\" target=\"_blank\" rel=\"noopener noreferrer\">a professional</a>, Avada will give you the confidence to manage your website stress-free.</p>\n<p>The 15 websites that are showcased in this article are popular downloads in the Avada <a href=\"https://avada.website/#fps_corporate\" target=\"_blank\" rel=\"noopener noreferrer\">Corporate</a> category. Avada&#8217;s prebuilt content and websites are fully customizable and adapted to suit any website type. Also feel free to check out these <a href=\"https://avada.com/blog/best-15-woocommerce-websites-for-wordpress-2023/\" target=\"_blank\" rel=\"noopener noreferrer\">15 WooCommerce</a> websites.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-83 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Overview</h2></div><div class=\"awb-toc-el awb-toc-el--5\" data-awb-toc-id=\"5\" data-awb-toc-options=\"{&quot;allowed_heading_tags&quot;:{&quot;h2&quot;:0,&quot;h3&quot;:1},&quot;ignore_headings&quot;:&quot;&quot;,&quot;ignore_headings_words&quot;:&quot;Overview&quot;,&quot;enable_cache&quot;:&quot;yes&quot;,&quot;highlight_current_heading&quot;:&quot;no&quot;,&quot;hide_hidden_titles&quot;:&quot;yes&quot;,&quot;limit_container&quot;:&quot;post_content&quot;,&quot;select_custom_headings&quot;:&quot;&quot;,&quot;icon&quot;:&quot;fa-angle-right fal&quot;,&quot;counter_type&quot;:&quot;custom_icon&quot;}\" style=\"--awb-item-font-size:var(--awb-typography4-font-size);--awb-item-line-height:var(--awb-typography4-line-height);--awb-item-letter-spacing:var(--awb-typography4-letter-spacing);--awb-item-text-transform:var(--awb-typography4-text-transform);--awb-item-color:var(--awb-color8);--awb-item-color-hover:var(--awb-color5);--awb-item-bg-color-hover:rgba(101,189,125,0);--awb-counter-color:var(--awb-color6);--awb-hover-counter-color:var(--awb-color5);--awb-list-indent:15px;--awb-item-padding-top:3px;--awb-item-padding-right:0;--awb-item-padding-bottom:5px;--awb-item-padding-left:0;--awb-item-font-family:var(--awb-typography4-font-family);--awb-item-font-weight:var(--awb-typography4-font-weight);--awb-item-font-style:var(--awb-typography4-font-style);\"><div class=\"awb-toc-el__content\"></div></div>\n</div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-49 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-48 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-84 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Classic</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-55 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"2155\" title=\"avada-classic-post-image\" src=\"https://avada.com/wp-content/uploads/2022/08/avada-classic-post-image.jpg\" alt class=\"img-responsive wp-image-887494\" srcset=\"https://avada.com/wp-content/uploads/2022/08/avada-classic-post-image-200x227.jpg 200w, https://avada.com/wp-content/uploads/2022/08/avada-classic-post-image-400x454.jpg 400w, https://avada.com/wp-content/uploads/2022/08/avada-classic-post-image-600x681.jpg 600w, https://avada.com/wp-content/uploads/2022/08/avada-classic-post-image-800x907.jpg 800w, https://avada.com/wp-content/uploads/2022/08/avada-classic-post-image-1200x1361.jpg 1200w, https://avada.com/wp-content/uploads/2022/08/avada-classic-post-image.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-74 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-77 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/classic\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-75 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-78 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/ANkZJ\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-50 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-49 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-85 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Tour Operator</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-56 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1688\" alt=\"Avada Tour Operator\" title=\"Avada Tour Operator\" src=\"https://avada.com/wp-content/uploads/2023/08/avada-tour-operator-post-img.jpg\" class=\"img-responsive wp-image-892930\" srcset=\"https://avada.com/wp-content/uploads/2023/08/avada-tour-operator-post-img-200x178.jpg 200w, https://avada.com/wp-content/uploads/2023/08/avada-tour-operator-post-img-400x355.jpg 400w, https://avada.com/wp-content/uploads/2023/08/avada-tour-operator-post-img-600x533.jpg 600w, https://avada.com/wp-content/uploads/2023/08/avada-tour-operator-post-img-800x711.jpg 800w, https://avada.com/wp-content/uploads/2023/08/avada-tour-operator-post-img-1200x1066.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/avada-tour-operator-post-img.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-76 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-79 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/tour-operator/\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-77 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-80 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/3NXvy\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-51 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-50 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-86 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Energy</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-57 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1508\" alt=\"Avada Energy\" title=\"Avada Energy\" src=\"https://avada.com/wp-content/uploads/2023/08/avada-energy-post-img.jpg\" class=\"img-responsive wp-image-892928\" srcset=\"https://avada.com/wp-content/uploads/2023/08/avada-energy-post-img-200x159.jpg 200w, https://avada.com/wp-content/uploads/2023/08/avada-energy-post-img-400x317.jpg 400w, https://avada.com/wp-content/uploads/2023/08/avada-energy-post-img-600x476.jpg 600w, https://avada.com/wp-content/uploads/2023/08/avada-energy-post-img-800x635.jpg 800w, https://avada.com/wp-content/uploads/2023/08/avada-energy-post-img-1200x952.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/avada-energy-post-img.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-78 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-81 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/energy/\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-79 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-82 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/jWLrMZ\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-52 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-51 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-87 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Corporation</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-58 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1564\" alt=\"Avada Corporation\" title=\"Avada Corporation\" src=\"https://avada.com/wp-content/uploads/2023/08/avada-corporation-post-img.jpg\" class=\"img-responsive wp-image-892929\" srcset=\"https://avada.com/wp-content/uploads/2023/08/avada-corporation-post-img-200x165.jpg 200w, https://avada.com/wp-content/uploads/2023/08/avada-corporation-post-img-400x329.jpg 400w, https://avada.com/wp-content/uploads/2023/08/avada-corporation-post-img-600x494.jpg 600w, https://avada.com/wp-content/uploads/2023/08/avada-corporation-post-img-800x659.jpg 800w, https://avada.com/wp-content/uploads/2023/08/avada-corporation-post-img-1200x988.jpg 1200w, https://avada.com/wp-content/uploads/2023/08/avada-corporation-post-img.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-80 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-83 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/corporation/\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-81 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-84 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/Nn0QK\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-53 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-52 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-88 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Car Dealership</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-59 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"2166\" title=\"avada-car-dealer-post-image\" src=\"https://avada.com/wp-content/uploads/2022/08/avada-car-dealer-post-image.jpg\" alt class=\"img-responsive wp-image-887495\" srcset=\"https://avada.com/wp-content/uploads/2022/08/avada-car-dealer-post-image-200x228.jpg 200w, https://avada.com/wp-content/uploads/2022/08/avada-car-dealer-post-image-400x456.jpg 400w, https://avada.com/wp-content/uploads/2022/08/avada-car-dealer-post-image-600x684.jpg 600w, https://avada.com/wp-content/uploads/2022/08/avada-car-dealer-post-image-800x912.jpg 800w, https://avada.com/wp-content/uploads/2022/08/avada-car-dealer-post-image-1200x1368.jpg 1200w, https://avada.com/wp-content/uploads/2022/08/avada-car-dealer-post-image.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-82 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-85 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/car-dealership\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-83 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-86 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/QO9BMM\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-54 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-53 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-89 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Digital Agency</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-60 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"2148\" title=\"avada-digital-agency-post-image\" src=\"https://avada.com/wp-content/uploads/2022/08/avada-digital-agency-post-image.jpg\" alt class=\"img-responsive wp-image-887470\" srcset=\"https://avada.com/wp-content/uploads/2022/08/avada-digital-agency-post-image-200x226.jpg 200w, https://avada.com/wp-content/uploads/2022/08/avada-digital-agency-post-image-400x452.jpg 400w, https://avada.com/wp-content/uploads/2022/08/avada-digital-agency-post-image-600x678.jpg 600w, https://avada.com/wp-content/uploads/2022/08/avada-digital-agency-post-image-800x904.jpg 800w, https://avada.com/wp-content/uploads/2022/08/avada-digital-agency-post-image-1200x1357.jpg 1200w, https://avada.com/wp-content/uploads/2022/08/avada-digital-agency-post-image.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-84 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-87 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/digital-agency\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-85 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-88 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/ORxrGZ\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-55 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-54 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-90 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Accountant</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-61 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1894\" height=\"1900\" title=\"2-Avada-Accountant\" src=\"https://avada.com/wp-content/uploads/2022/08/2-Avada-Accountant.jpg\" alt class=\"img-responsive wp-image-887498\" srcset=\"https://avada.com/wp-content/uploads/2022/08/2-Avada-Accountant-200x201.jpg 200w, https://avada.com/wp-content/uploads/2022/08/2-Avada-Accountant-400x401.jpg 400w, https://avada.com/wp-content/uploads/2022/08/2-Avada-Accountant-600x602.jpg 600w, https://avada.com/wp-content/uploads/2022/08/2-Avada-Accountant-800x803.jpg 800w, https://avada.com/wp-content/uploads/2022/08/2-Avada-Accountant-1200x1204.jpg 1200w, https://avada.com/wp-content/uploads/2022/08/2-Avada-Accountant.jpg 1894w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1894px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-86 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-89 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/accountant\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-87 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-90 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/15Nrrd\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-56 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-55 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-91 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Marketing Consultant</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-62 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1900\" title=\"3-Avada-Marketing-Consultant\" src=\"https://avada.com/wp-content/uploads/2022/08/3-Avada-Marketing-Consultant.jpg\" alt class=\"img-responsive wp-image-887499\" srcset=\"https://avada.com/wp-content/uploads/2022/08/3-Avada-Marketing-Consultant-200x200.jpg 200w, https://avada.com/wp-content/uploads/2022/08/3-Avada-Marketing-Consultant-400x400.jpg 400w, https://avada.com/wp-content/uploads/2022/08/3-Avada-Marketing-Consultant-600x600.jpg 600w, https://avada.com/wp-content/uploads/2022/08/3-Avada-Marketing-Consultant-800x800.jpg 800w, https://avada.com/wp-content/uploads/2022/08/3-Avada-Marketing-Consultant-1200x1200.jpg 1200w, https://avada.com/wp-content/uploads/2022/08/3-Avada-Marketing-Consultant.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-88 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-91 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/marketing-consultant\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-89 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-92 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/955vQ\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-57 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-56 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-92 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Business Coach</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-63 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1900\" title=\"4-Avada-Business-Coach\" src=\"https://avada.com/wp-content/uploads/2022/08/4-Avada-Business-Coach.jpg\" alt class=\"img-responsive wp-image-887500\" srcset=\"https://avada.com/wp-content/uploads/2022/08/4-Avada-Business-Coach-200x200.jpg 200w, https://avada.com/wp-content/uploads/2022/08/4-Avada-Business-Coach-400x400.jpg 400w, https://avada.com/wp-content/uploads/2022/08/4-Avada-Business-Coach-600x600.jpg 600w, https://avada.com/wp-content/uploads/2022/08/4-Avada-Business-Coach-800x800.jpg 800w, https://avada.com/wp-content/uploads/2022/08/4-Avada-Business-Coach-1200x1200.jpg 1200w, https://avada.com/wp-content/uploads/2022/08/4-Avada-Business-Coach.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-90 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-93 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/business-coach\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-91 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-94 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/BZZm9\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-58 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-57 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-93 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Interior Design</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-64 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1900\" title=\"6-Avada-Interior-Design\" src=\"https://avada.com/wp-content/uploads/2022/08/6-Avada-Interior-Design.jpg\" alt class=\"img-responsive wp-image-887501\" srcset=\"https://avada.com/wp-content/uploads/2022/08/6-Avada-Interior-Design-200x200.jpg 200w, https://avada.com/wp-content/uploads/2022/08/6-Avada-Interior-Design-400x400.jpg 400w, https://avada.com/wp-content/uploads/2022/08/6-Avada-Interior-Design-600x600.jpg 600w, https://avada.com/wp-content/uploads/2022/08/6-Avada-Interior-Design-800x800.jpg 800w, https://avada.com/wp-content/uploads/2022/08/6-Avada-Interior-Design-1200x1200.jpg 1200w, https://avada.com/wp-content/uploads/2022/08/6-Avada-Interior-Design.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-92 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-95 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/interior-design\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-93 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-96 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/LkZWa\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-59 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-58 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-94 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Construction</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-65 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1900\" title=\"10-Avada-Construction\" src=\"https://avada.com/wp-content/uploads/2022/08/10-Avada-Construction.jpg\" alt class=\"img-responsive wp-image-887502\" srcset=\"https://avada.com/wp-content/uploads/2022/08/10-Avada-Construction-200x200.jpg 200w, https://avada.com/wp-content/uploads/2022/08/10-Avada-Construction-400x400.jpg 400w, https://avada.com/wp-content/uploads/2022/08/10-Avada-Construction-600x600.jpg 600w, https://avada.com/wp-content/uploads/2022/08/10-Avada-Construction-800x800.jpg 800w, https://avada.com/wp-content/uploads/2022/08/10-Avada-Construction-1200x1200.jpg 1200w, https://avada.com/wp-content/uploads/2022/08/10-Avada-Construction.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-94 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-97 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/construction\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-95 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-98 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/JNaya\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-60 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-59 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-95 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada SEO</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-66 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1900\" title=\"7-Avada-SEO\" src=\"https://avada.com/wp-content/uploads/2022/08/7-Avada-SEO.jpg\" alt class=\"img-responsive wp-image-887504\" srcset=\"https://avada.com/wp-content/uploads/2022/08/7-Avada-SEO-200x200.jpg 200w, https://avada.com/wp-content/uploads/2022/08/7-Avada-SEO-400x400.jpg 400w, https://avada.com/wp-content/uploads/2022/08/7-Avada-SEO-600x600.jpg 600w, https://avada.com/wp-content/uploads/2022/08/7-Avada-SEO-800x800.jpg 800w, https://avada.com/wp-content/uploads/2022/08/7-Avada-SEO-1200x1200.jpg 1200w, https://avada.com/wp-content/uploads/2022/08/7-Avada-SEO.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-96 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-99 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/seo\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-97 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-100 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/3Nz2B\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-61 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-60 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-96 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Cryptocurrency</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-67 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1900\" title=\"8-Avada-Cryptocurrency\" src=\"https://avada.com/wp-content/uploads/2022/08/8-Avada-Cryptocurrency.jpg\" alt class=\"img-responsive wp-image-887505\" srcset=\"https://avada.com/wp-content/uploads/2022/08/8-Avada-Cryptocurrency-200x200.jpg 200w, https://avada.com/wp-content/uploads/2022/08/8-Avada-Cryptocurrency-400x400.jpg 400w, https://avada.com/wp-content/uploads/2022/08/8-Avada-Cryptocurrency-600x600.jpg 600w, https://avada.com/wp-content/uploads/2022/08/8-Avada-Cryptocurrency-800x800.jpg 800w, https://avada.com/wp-content/uploads/2022/08/8-Avada-Cryptocurrency-1200x1200.jpg 1200w, https://avada.com/wp-content/uploads/2022/08/8-Avada-Cryptocurrency.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-98 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-101 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/cryptocurrency\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-99 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-102 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/9Yj3y\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-62 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-61 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-97 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Plumber</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-68 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1900\" title=\"9-Avada-Plumber\" src=\"https://avada.com/wp-content/uploads/2022/08/9-Avada-Plumber.jpg\" alt class=\"img-responsive wp-image-887506\" srcset=\"https://avada.com/wp-content/uploads/2022/08/9-Avada-Plumber-200x200.jpg 200w, https://avada.com/wp-content/uploads/2022/08/9-Avada-Plumber-400x400.jpg 400w, https://avada.com/wp-content/uploads/2022/08/9-Avada-Plumber-600x600.jpg 600w, https://avada.com/wp-content/uploads/2022/08/9-Avada-Plumber-800x800.jpg 800w, https://avada.com/wp-content/uploads/2022/08/9-Avada-Plumber-1200x1200.jpg 1200w, https://avada.com/wp-content/uploads/2022/08/9-Avada-Plumber.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-100 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-103 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/plumber\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-101 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-104 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/vdbGe\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-63 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-62 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-98 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Electrician</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-69 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1900\" title=\"10-Avada-Electrician\" src=\"https://avada.com/wp-content/uploads/2022/08/10-Avada-Electrician.jpg\" alt class=\"img-responsive wp-image-887507\" srcset=\"https://avada.com/wp-content/uploads/2022/08/10-Avada-Electrician-200x200.jpg 200w, https://avada.com/wp-content/uploads/2022/08/10-Avada-Electrician-400x400.jpg 400w, https://avada.com/wp-content/uploads/2022/08/10-Avada-Electrician-600x600.jpg 600w, https://avada.com/wp-content/uploads/2022/08/10-Avada-Electrician-800x800.jpg 800w, https://avada.com/wp-content/uploads/2022/08/10-Avada-Electrician-1200x1200.jpg 1200w, https://avada.com/wp-content/uploads/2022/08/10-Avada-Electrician.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-102 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-105 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/electrician\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-103 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-106 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/2NL3O\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-64 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-63 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-99 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Summary</h2></div><div class=\"fusion-text fusion-text-53\"><p>To get started designing your dream website there are a few things that you will need;</p>\n</div><ul style=\"--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-14 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-network-wired fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>A trusted <a href=\"https://avada.com/hosting/\" target=\"_blank\" rel=\"noopener noreferrer\">web hosting service</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-wordpress-simple fab\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>The latest version of <a href=\"https://wordpress.org/download/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon avada-elements-avada-logo\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>The <a href=\"https://1.envato.market/jKdLZ\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-54\"><p>These prebuilt websites are created as a way to give you a head start. You can change the styling, Layouts, content as much or as little as you need to quickly adapt any individual prebuilt site to suit your chosen niche. Get started with the&nbsp;Avada today and launch your business online; Fast.</p>\n<p>With your purchase of Avada, a host of resources are available for you to take advantage of. Resources include access to <span class=\"fusion-cs-live-demos\">97</span> professionally designed <a href=\"https://avada.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">prebuilt websites</a>, 450+ individual <a href=\"https://avada.studio/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Studio</a> prebuilt content blocks, 200+ <a href=\"https://avada.com/help-center/videos/\" target=\"_blank\" rel=\"noopener noreferrer\">tutorial videos</a>, 600+ <a href=\"https://avada.com/help-center/\" target=\"_blank\" rel=\"noopener noreferrer\">help files</a>, and a 24/7 world-class support team to assist and guide you.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-xlarge button-default fusion-button-default button-107 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/jKdLZ\"><i class=\"fa-cloud-download-alt fas button-icon-left\" aria-hidden=\"true\"></i><span class=\"fusion-button-text\">Start Your Next Avada Website Today</span></a></div></div></div></div></div></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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://avada.com/blog/the-15-best-avada-corporate-websites-for-wordpress/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:5;a:6:{s:4:\"data\";s:85:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"Avada Life Coach: 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:74:\"https://avada.com/blog/avada-life-coach-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:82:\"https://avada.com/blog/avada-life-coach-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:\"Tue, 01 Aug 2023 13:19: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: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: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:\"\";}i:4;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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"https://avada.com/blog//\";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:314:\"Say hello to Avada Life Coach. This Avada prebuilt website is ideal for beginners, marketers, professionals and anyone in between. Avada Life Coach 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 ...\";s: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:\"schanteldwl\";s: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:115468:\"<p><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-65 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-64 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:0px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div><div class=\"fusion-text fusion-text-55\"><p>Say hello to <a href=\"https://avada.website/life-coach/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Life Coach</a>. This <a href=\"https://1.envato.market/ZQNejk\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt website is ideal for beginners, marketers, professionals and anyone in between. Avada Life Coach 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 model or venture using the Avada Website Builder.</p>\n<p>In this article, we will explore the header, footer, and homepage layouts that make up the overall website structure to explore how the <a href=\"https://avada.com/features/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> is used to create successful websites. The <a href=\"https://avada.website/life-coach/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Life Coach</a> article is a part of a deconstruction series and is the follow-on article that explores the <a href=\"https://avada.com/blog/avada-programmer-deconstructing-a-prebuilt-website/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Programmer</a> prebuilt website. It is important to highlight that <a href=\"https://1.envato.market/ZQNejk\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> gives you total design freedom to create unique layouts for your website that work, with the only limit being your imagination.</p>\n</div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-104 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-xlarge button-custom fusion-button-default button-108 fusion-button-span-yes fusion-button-default-type\" style=\"--button_accent_color:var(--awb-color1);--button_accent_hover_color:var(--awb-color1);--button_border_hover_color:var(--awb-color1);--button_gradient_top_color:var(--awb-color8);--button_gradient_bottom_color:var(--awb-color8);--button_gradient_top_color_hover:hsla(var(--awb-color8-h),var(--awb-color8-s),calc(var(--awb-color8-l) - 16%),var(--awb-color8-a));--button_gradient_bottom_color_hover:hsla(var(--awb-color8-h),var(--awb-color8-s),calc(var(--awb-color8-l) - 16%),var(--awb-color8-a));\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/life-coach/\"><span class=\"fusion-button-text\">View Live</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-105 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-xlarge button-custom fusion-button-default button-109 fusion-button-span-yes fusion-button-default-type\" style=\"--button_accent_color:var(--awb-color1);--button_accent_hover_color:var(--awb-color1);--button_border_hover_color:var(--awb-color1);--button_gradient_top_color:var(--awb-color8);--button_gradient_bottom_color:var(--awb-color8);--button_gradient_top_color_hover:hsla(var(--awb-color8-h),var(--awb-color8-s),calc(var(--awb-color8-l) - 16%),var(--awb-color8-a));--button_gradient_bottom_color_hover:hsla(var(--awb-color8-h),var(--awb-color8-s),calc(var(--awb-color8-l) - 16%),var(--awb-color8-a));\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/ZQNejk\"><span class=\"fusion-button-text\">Purchase For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-100 fusion-sep-none fusion-title-text fusion-title-size-two awb-exclude-from-toc\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Overview</h2></div><div class=\"awb-toc-el awb-toc-el--6\" data-awb-toc-id=\"6\" data-awb-toc-options=\"{&quot;allowed_heading_tags&quot;:{&quot;h2&quot;:0,&quot;h3&quot;:1},&quot;ignore_headings&quot;:&quot;&quot;,&quot;ignore_headings_words&quot;:&quot;Overview&quot;,&quot;enable_cache&quot;:&quot;yes&quot;,&quot;highlight_current_heading&quot;:&quot;no&quot;,&quot;hide_hidden_titles&quot;:&quot;yes&quot;,&quot;limit_container&quot;:&quot;post_content&quot;,&quot;select_custom_headings&quot;:&quot;&quot;,&quot;icon&quot;:&quot;fa-angle-right fal&quot;,&quot;counter_type&quot;:&quot;custom_icon&quot;}\" style=\"--awb-item-font-size:var(--awb-typography4-font-size);--awb-item-line-height:var(--awb-typography4-line-height);--awb-item-letter-spacing:var(--awb-typography4-letter-spacing);--awb-item-text-transform:var(--awb-typography4-text-transform);--awb-item-color:var(--awb-color8);--awb-item-color-hover:var(--awb-color5);--awb-item-bg-color-hover:rgba(101,189,125,0);--awb-counter-color:var(--awb-color6);--awb-hover-counter-color:var(--awb-color5);--awb-list-indent:15px;--awb-item-padding-top:3px;--awb-item-padding-right:0;--awb-item-padding-bottom:5px;--awb-item-padding-left:0;--awb-item-font-family:var(--awb-typography4-font-family);--awb-item-font-weight:var(--awb-typography4-font-weight);--awb-item-font-style:var(--awb-typography4-font-style);\"><div class=\"awb-toc-el__content\"></div></div>\n<div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-title title fusion-title-101 fusion-sep-none fusion-title-text fusion-title-size-two\" id=\"features\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Styling and Features</h2></div><div class=\"fusion-text fusion-text-56\"><p>Creating a <a href=\"https://avada.com/blog/how-to-create-a-style-guide-for-your-wordpress-website\" target=\"_blank\" rel=\"noopener noreferrer\">style guide</a> for your website will prove to be invaluable in the future. A style guide will help you to address <a href=\"https://avada.com/documentation/accessibility/\" target=\"_blank\" rel=\"noopener noreferrer\">usability</a>, the user experience, design consistency, and online trends in an organized and consistent manner.</p>\n<p>The <a href=\"https://avada.com/feature/live-visual-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder </a>has a vast array of features and styling options; however, you do not need to use all of them for your website, and this is where your style guide comes in. Decide upfront which styling options align with your brand and which design features are needed to make your website stand out.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-102 fusion-sep-none fusion-title-text fusion-title-size-two\" id=\"performance\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Performance &amp; Optimization</h2></div><div class=\"fusion-text fusion-text-57\"><p><a href=\"https://avada.com/documentation/avada-optimization-guide\" target=\"_blank\" rel=\"noopener noreferrer\">Optimizing</a> your websites for page load speed can be a seemingly complex subject because so many different facets affect how fast a page loads. It can range from the server&#8217;s speed to the options and settings selected, right through to the type and amount of content and even the size of the images added to the page or post.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-103 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\"><h3 class=\"fusion-title-heading title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">The Avada Performance Wizard</h3></div><div class=\"fusion-text fusion-text-58\"><p>The <a href=\"https://avada.com/documentation/how-to-use-the-performance-wizard\" target=\"_blank\" rel=\"noopener noreferrer\">Performance Wizard</a> takes the guesswork out of how to best optimize your <a href=\"https://1.envato.market/ZQNejk\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> website. To get you started you are presented with a step-by-step interface that will guide you through the process.</p>\n</div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-70 hover-type-none\"><img decoding=\"async\" width=\"1900\" height=\"1345\" alt=\"Performance Wizard Start Screen\" title=\"avada-performance-wizard-start-screen\" src=\"https://avada.com/wp-content/uploads/2022/10/avada-performance-wizard-start-screen.jpg\" class=\"img-responsive wp-image-887419\" srcset=\"https://avada.com/wp-content/uploads/2022/10/avada-performance-wizard-start-screen-200x142.jpg 200w, https://avada.com/wp-content/uploads/2022/10/avada-performance-wizard-start-screen-400x283.jpg 400w, https://avada.com/wp-content/uploads/2022/10/avada-performance-wizard-start-screen-600x425.jpg 600w, https://avada.com/wp-content/uploads/2022/10/avada-performance-wizard-start-screen-800x566.jpg 800w, https://avada.com/wp-content/uploads/2022/10/avada-performance-wizard-start-screen-1200x849.jpg 1200w, https://avada.com/wp-content/uploads/2022/10/avada-performance-wizard-start-screen.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-text fusion-text-59\"><p>What is important to note is that you should build your website first before running the Performance Wizard. Creating your website&#8217;s structure, placing design elements in situ, and formulating content ensures that the system has something to work with when searching for recommendations at each step of the process. The recommendations provided are for options that can be disabled or enabled to enhance overall performance.</p>\n</div><ul style=\"--awb-iconcolor:#f1642b;--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-15 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon avada-elements-avada-logo\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><strong>Features</strong><br />\nDisable any features not used on the website, thereby reducing the amount of code that is loaded.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon avada-elements-avada-logo\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><strong>Avada Icons</strong><br />\nScan your website for information about icons that are being used. You can also disable unused icon sets and discover how to optimize existing icons.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon avada-elements-avada-logo\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><strong>Avada Fonts/Typography</strong><br />\nCheck which fonts are being loaded on your website and then optimize how those fonts are served. Fewer variants will mean fewer requests and, therefore, faster loading times.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon avada-elements-avada-logo\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><strong>Avada Elements</strong><br />\nScan your website to discover which Design, Layout, and Form Elements are not used on the website. Disable unused Elements, thereby reducing the amount of code that is loaded.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon avada-elements-avada-logo\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><strong>Optimization</strong><br />\nOptimize how the website&#8217;s CSS and JS assets should be enqueued. These options can have a significant impact on the performance of the page load. However, some of these options can also break functionality if you use a caching plugin, so proceed with caution.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-title title fusion-title-104 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\"><h3 class=\"fusion-title-heading title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Above The Fold Optimization</h3></div><div class=\"fusion-text fusion-text-60\"><p>&#8220;Above the fold&#8221; is the part of a webpage that is immediately visible on your desktop or mobile screen without scrolling down. Traditionally, this digital real estate is where most would choose to display attention-grabbing headlines, important sales/marketing content, images, and even slider plugins as part of the page&#8217;s hero.</p>\n</div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-71 hover-type-none\"><img decoding=\"async\" width=\"1900\" height=\"600\" alt=\"Above The Fold Optimization\" title=\"above-the-fold-compressed\" src=\"https://avada.com/wp-content/uploads/2022/10/above-the-fold-compressed.png\" class=\"img-responsive wp-image-887420\" srcset=\"https://avada.com/wp-content/uploads/2022/10/above-the-fold-compressed-200x63.png 200w, https://avada.com/wp-content/uploads/2022/10/above-the-fold-compressed-400x126.png 400w, https://avada.com/wp-content/uploads/2022/10/above-the-fold-compressed-600x189.png 600w, https://avada.com/wp-content/uploads/2022/10/above-the-fold-compressed-800x253.png 800w, https://avada.com/wp-content/uploads/2022/10/above-the-fold-compressed-1200x379.png 1200w, https://avada.com/wp-content/uploads/2022/10/above-the-fold-compressed.png 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-text fusion-text-61\"><p>The rate of content delivery for a website, and in particular the perceived speed experienced by the end-user on a mobile device, is at the heart of Google&#8217;s <a href=\"https://avada.com/documentation/what-are-google-core-web-vitals-and-why-they-matter\" target=\"_blank\" rel=\"noopener noreferrer\">Core Web Vitals</a>. Thus, passing Core Web Vitals inevitably leads to a delicate balance between good SEO, attention marketing, and page load times for a website owner.</p>\n<p>To assist you with managing your website&#8217;s <a href=\"https://avada.com/documentation/how-to-use-the-performance-wizard\" target=\"_blank\" rel=\"noopener noreferrer\">performance</a> and <a href=\"https://avada.com/documentation/avada-optimization-guide/\" target=\"_blank\" rel=\"noopener noreferrer\">optimization</a>, our team introduced purpose-built tools and features for <a href=\"https://1.envato.market/ZQNejk\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> that can make it possible for you to fine-tune your website&#8217;s performance on mobile &amp; desktop.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-105 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\"><h3 class=\"fusion-title-heading title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Generate Critical CSS</h3></div><div class=\"fusion-text fusion-text-62\"><p>Critical CSS is a convenient performance feature. You can enable Critical CSS by going to the <em><strong>Performance Wizard &gt; Optimization</strong></em> tab. Once it has been enabled, you can access the Critical CSS page from the WordPress sidebar at <em><strong>Avada &gt; Critical CSS or Maintenance &gt; Critical CSS</strong></em> from the Avada Dashboard. Both take you to the Critical CSS page to generate Critical CSS for both pages and posts.</p>\n</div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-72 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><a class=\"fusion-no-lightbox\" href=\"https://avada.com/documentation/how-to-use-critical-css\" target=\"_blank\" aria-label=\"docs_generate_critical_css\" rel=\"noopener noreferrer\"><img decoding=\"async\" width=\"1850\" height=\"1327\" alt=\"Critical CSS\" src=\"https://avada.com/wp-content/uploads/2023/03/docs_generate_critical_css.jpg\" class=\"img-responsive wp-image-891852\" srcset=\"https://avada.com/wp-content/uploads/2023/03/docs_generate_critical_css-200x143.jpg 200w, https://avada.com/wp-content/uploads/2023/03/docs_generate_critical_css-400x287.jpg 400w, https://avada.com/wp-content/uploads/2023/03/docs_generate_critical_css-600x430.jpg 600w, https://avada.com/wp-content/uploads/2023/03/docs_generate_critical_css-800x574.jpg 800w, https://avada.com/wp-content/uploads/2023/03/docs_generate_critical_css-1200x861.jpg 1200w, https://avada.com/wp-content/uploads/2023/03/docs_generate_critical_css.jpg 1850w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1850px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-text fusion-text-63\"><p>Critical CSS is the CSS necessary to style the above-the-fold content. When generated for a page, it will be loaded into the page head, and the rest of the CSS styles moved to the footer, resulting in less render-blocking and a faster page load time.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-106 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-three\"><h3 class=\"fusion-title-heading title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Resources</h3></div><div class=\"fusion-text fusion-text-64\"><p>Even with all of the performance options provided, <a href=\"https://1.envato.market/ZQNejk\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> plays a lesser part than you might imagine when it comes to site optimization. Websites running <a href=\"https://1.envato.market/ZQNejk\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> as the primary WordPress theme can be configured to optimize the layouts and structure that can lead to vastly improved page load scores. Still, ultimately, user content will principally dictate how fast and efficient your website will perform according to <a href=\"https://avada.com/documentation/what-are-google-core-web-vitals-and-why-they-matter\" target=\"_blank\" rel=\"noopener noreferrer\">Google Core Web Vitals</a>.</p>\n</div><ul style=\"--awb-iconcolor:#f1642b;--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-16 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon icon-avada-docs\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><a href=\"https://avada.com/documentation/how-to-use-the-performance-wizard\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use The Performance Wizard</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon avada-elements-youtube\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://avada.com/documentation/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: How To Use The Performance Wizard</a></div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon icon-avada-docs\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://avada.com/documentation/avada-optimization-guide\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Optimization Guide</a></div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon avada-elements-youtube\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://avada.com/documentation/how-to-use-critical-css\" target=\"_blank\" rel=\"noopener noreferrer\">Video: Optimize Above The Fold Content For Performance</a></div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon icon-avada-docs\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://avada.com/documentation/avada-speed-performance\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Speed &amp; Performance</a></div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon icon-avada-docs\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://avada.com/documentation/how-to-use-critical-css\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use Critical CSS</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-title title fusion-title-107 fusion-sep-none fusion-title-text fusion-title-size-three\" id=\"palette\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Color Palette</h3></div><div class=\"fusion-fss-swatches fusion-no-small-visibility fusion-no-medium-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:space-between;margin:-5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:5px;padding-top:50px;padding-right:55px;padding-bottom:50px;padding-left:55px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#f1642b;border:10px solid var(--awb-color1);border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#f1642b\">#f1642b</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:5px;padding-top:50px;padding-right:55px;padding-bottom:50px;padding-left:55px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#eda444;border:10px solid var(--awb-color1);border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#eda444\">#eda444</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:5px;padding-top:50px;padding-right:55px;padding-bottom:50px;padding-left:55px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:100px; height:100px;background-color:#5b4f68;border:10px solid var(--awb-color1);border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#5b4f68\">#5b4f68</div></div></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-fss-swatches fusion-no-small-visibility fusion-no-large-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:flex-start;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#f1642b;border:5px solid var(--awb-color1);border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#f1642b\">#f1642b</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#eda444;border:5px solid var(--awb-color1);border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#eda444\">#eda444</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#5b4f68;border:5px solid var(--awb-color1);border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#5b4f68\">#5b4f68</div></div></div></div><div class=\"fusion-fss-swatches fusion-no-medium-visibility fusion-no-large-visibility fss-default-shadow\" style=\"margin-bottom:20px;\"><div class=\"fusion-fss-swatches-wrapper\" style=\"flex-direction:row;justify-content:flex-start;margin:-7.5px;\"><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#f1642b;border:5px solid var(--awb-color1);border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#f1642b\">#f1642b</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#eda444;border:5px solid var(--awb-color1);border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#eda444\">#eda444</div></div><div class=\"fusion-fss-swatch-wrapper\" style=\"margin:7.5px;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px;background-color:#f2f2f2;border-radius:7px;\"><div class=\"fusion-fss-swatch\" style=\"width:80px; height:80px;background-color:#5b4f68;border:5px solid var(--awb-color1);border-radius:50px;\"></div><div class=\"fusion-fss-swatch-text\" style=\"font-size:16px;color:#5e5e5e;\" data-color=\"#5b4f68\">#5b4f68</div></div></div></div><div class=\"fusion-text fusion-text-65\"><p>The color palette selected for the <a href=\"https://avada.website/life-coach/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Life Coach</a> prebuilt website is a set of complementary colors, as seen above. If you would like to change the Avada Life Coach color palette, this can be done within the options panel, as explained in this <a href=\"https://avada.com/documentation/how-to-use-the-global-color-palette-in-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">help file and video</a>.</p>\n<p>Color increases brand recognition, and it can influence people in how they feel about a website. Colors produce different emotions in people, making it essential to choose the right colors for your website. The balance of white space, contrast, and well thought out color schemes are vital elements of good web design. If you have not already decided on your brand colors, choosing a color palette for your website can be confusing. However, using a handy tool like the <a href=\"https://color.adobe.com/create/color-wheel\" target=\"_blank\" rel=\"noopener noreferrer\">Adobe Color Wheel</a> or any of the myriad of app choices online, you can undoubtedly make this task effortless.</p>\n<p>We suggest checking out <a href=\"https://www.hubspot.com/\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot&#8217;s</a> article on <a href=\"https://blog.hubspot.com/marketing/color-palette-famous-websites\" target=\"_blank\" rel=\"noopener noreferrer\">color theory</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-108 fusion-sep-none fusion-title-text fusion-title-size-three\" id=\"typography\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Typography</h3></div><div class=\"fusion-text fusion-text-66\"><p>Website Typography can be more important than you realize, from your brand and user perspective to your website&#8217;s overall look and style. It is often underrated and is, in fact, an art form and technique in itself. The following <a href=\"https://blog.hubspot.com/website/website-typography\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot guide to website typography</a> will give you some great insights into the do&#8217;s and dont&#8217;s choosing which fonts work best for your <a href=\"https://1.envato.market/R5ONPg\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> website.</p>\n<p>The Avada Website Builder has a vast array of Typography controls, options, and font selections to make your job easier. See this detailed <a href=\"https://avada.com/documentation/typography-options-in-avada\" target=\"_blank\" rel=\"noopener noreferrer\">help file and video</a> to get you started.</p>\n<p>Below are the fonts used for the <a href=\"https://avada.website/life-coach/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Life Coach</a> prebuilt website:</p>\n</div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-106 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-padding-top:20px;--awb-padding-right:20px;--awb-padding-bottom:20px;--awb-padding-left:20px;--awb-bg-color:#f2f2f2;--awb-bg-color-hover:#f2f2f2;--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-109 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-text-color:#5e5e5e;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Headings</h3></div><div class=\"fusion-title title fusion-title-110 fusion-sep-none fusion-title-text fusion-title-size-div\" style=\"--awb-text-color:#5e5e5e;\"><div class=\"fusion-title-heading title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:16;--minFontSize:16;line-height:1.67;\">H1, H2, Font Family: <span style=\"font-family: Gentium Book Plus; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Gentium Book Plus\" data-fusion-google-variant=\"400\">Gentium Book Plus</span></div></div><div class=\"fusion-title title fusion-title-111 fusion-sep-none fusion-title-text fusion-title-size-div\" style=\"--awb-text-color:#5e5e5e;\"><div class=\"fusion-title-heading title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:16;--minFontSize:16;line-height:1.67;\">H3, H4, Font Family: <span style=\"font-family: Gentium Book Plus; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Gentium Book Plus\" data-fusion-google-variant=\"400\">Gentium Book Plus</span></div></div><div class=\"fusion-title title fusion-title-112 fusion-sep-none fusion-title-text fusion-title-size-div\" style=\"--awb-text-color:#5e5e5e;\"><div class=\"fusion-title-heading title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:16;--minFontSize:16;line-height:1.67;\">H5, H6, Font family: <span style=\"font-family: Gentium Book Plus; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Gentium Book Plus\" data-fusion-google-variant=\"400\">Gentium Book Plus</span></div></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-107 fusion_builder_column_inner_1_2 1_2 fusion-flex-column fusion-flex-align-self-stretch\" style=\"--awb-padding-top:20px;--awb-padding-right:20px;--awb-padding-bottom:20px;--awb-padding-left:20px;--awb-bg-color:#f2f2f2;--awb-bg-color-hover:#f2f2f2;--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-113 fusion-sep-none fusion-title-text fusion-title-size-three\" style=\"--awb-text-color:#5e5e5e;\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Body</h3></div><div class=\"fusion-title title fusion-title-114 fusion-sep-none fusion-title-text fusion-title-size-div\" style=\"--awb-text-color:#5e5e5e;\"><div class=\"fusion-title-heading title-heading-left title-heading-tag fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:16;--minFontSize:16;line-height:1.67;\">Font Family: <span style=\"font-family: Inter; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Inter\" data-fusion-google-variant=\"400\">Inter</span></div></div></div></div></div><div class=\"fusion-text fusion-text-67\"><p>We suggest checking out HubSpot&#8217;s article on <a href=\"https://blog.hubspot.com/website/web-safe-html-css-fonts\" target=\"_blank\" rel=\"noopener noreferrer\">The Ultimate List of Web-Safe HTML and CSS Fonts</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-115 fusion-sep-none fusion-title-text fusion-title-size-two\" id=\"getstarted\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">To Get Started You Will Need The Following</h2></div><div class=\"fusion-text fusion-text-68\"><p>To get started with the <a href=\"https://avada.com/feature/live-visual-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> and to create your ideal website, there are a few things that you will need;</p>\n</div><ul style=\"--awb-iconcolor:#f1642b;--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-17 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-network-wired fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>A trusted <a href=\"https://avada.com/hosting/\" target=\"_blank\" rel=\"noopener noreferrer\">web hosting service</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-wordpress fab\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>The latest version of <a href=\"https://wordpress.org/download/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon avada-elements-avada-logo\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>The <a href=\"https://1.envato.market/ZQNejk\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-title title fusion-title-116 fusion-sep-none fusion-title-text fusion-title-size-three\" id=\"plugins\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Recommended Plugins</h3></div><div class=\"fusion-text fusion-text-69\"><p>What are recommended plugins, and do you need them? In short, it is not the end of the world if you choose not to install and activate the plugins used with any particular Avada <a href=\"https://avada.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">prebuilt website</a>. Let&#8217;s take the <a href=\"https://avada.website/life-coach/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Life Coach</a> prebuilt website as an example:</p>\n<p>It is created as a <a href=\"https://avada.com/feature/woocommerce/\" target=\"_blank\" rel=\"noopener noreferrer\">WooCommerce</a> focussed site, and therefore the WooCommerce plugin should be installed and activated at the point of installing the prebuilt site.</p>\n<p>If you decide not to install the WooCommerce plugin, the full site will still be imported, but the eCommerce aspect will not be active. The following plugins have been used with the <a href=\"https://avada.website/life-coach/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Life Coach</a> website:</p>\n</div><div class=\"fusion-fss-plugins-used\"><div class=\"fusion-fss-plugins-wrapper\" style=\"flex-direction:row;margin:-7.5px;\"><div class=\"fusion-fss-plugin-wrapper\" style=\"margin:7.5px;flex-basis: calc(50% - 15px);justify-content:flex-start;padding-top:1em;padding-right:1em;padding-bottom:1em;padding-left:1em;background-color:var(--awb-color2);border-radius:7px;font-size:1.2em;color:var(--awb-color8);\"><div class=\"fusion-fss-plugin\"><span class=\"fusion-fss-plugin-icon\"><svg width=\"169\" height=\"100\" viewBox=\"0 0 169 100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#clip0)\"><path d=\"M16.4673 0H152.663C161.282 0 168.26 6.97713 168.26 15.5967V67.585C168.26 76.2039 161.283 83.1817 152.663 83.1817H103.822L110.526 99.5987L81.0431 83.1817H16.5366C7.91761 83.1817 0.93983 76.2046 0.93983 67.585V15.5967C0.871425 7.04575 7.84898 0 16.4679 0H16.4673Z\" fill=\"#9B5C8F\"/><path d=\"M10.4662 14.2157C11.4184 12.9234 12.8468 12.2432 14.7512 12.1072C18.2201 11.8351 20.1926 13.4675 20.6687 17.0044C22.7772 31.2201 25.0897 43.2586 27.5386 53.1214L42.4341 24.7586C43.7944 22.174 45.4948 20.8137 47.5353 20.6776C50.528 20.4736 52.3645 22.378 53.1126 26.391C54.813 35.4374 56.9896 43.1231 59.5742 49.6525C61.3426 32.376 64.3354 19.9296 68.5526 12.2433C69.5729 10.3389 71.0692 9.38666 73.0417 9.25058C74.6061 9.11455 76.0345 9.59066 77.3267 10.6109C78.619 11.6312 79.2992 12.9235 79.4352 14.4878C79.5032 15.7121 79.2992 16.7323 78.755 17.7526C76.1024 22.6498 73.9259 30.8801 72.1577 42.3062C70.4573 53.3931 69.8451 62.031 70.2532 68.2206C70.3892 69.921 70.1172 71.4174 69.437 72.7097C68.6208 74.206 67.3965 75.0222 65.8322 75.1582C64.0637 75.2943 62.2273 74.4781 60.4589 72.6416C54.1334 66.1801 49.1001 56.522 45.4275 43.6665C41.0065 52.3723 37.7419 58.9024 35.6334 63.2554C31.6205 70.941 28.2197 74.8861 25.3628 75.09C23.5263 75.226 21.962 73.6616 20.6016 70.3969C17.1328 61.4864 13.3918 44.2786 9.37876 18.7727C9.1067 17.0042 9.5148 15.4399 10.467 14.2155L10.4662 14.2157ZM156.636 24.8941C154.188 20.6091 150.583 18.0242 145.754 17.0039C144.462 16.7318 143.237 16.5958 142.081 16.5958C135.551 16.5958 130.246 19.9967 126.097 26.7984C122.56 32.5798 120.792 38.9736 120.792 45.9788C120.792 51.2161 121.88 55.705 124.057 59.4461C126.505 63.7312 130.11 66.3161 134.939 67.3363C136.231 67.6084 137.456 67.7444 138.612 67.7444C145.209 67.7444 150.515 64.3436 154.596 57.5418C158.132 51.6924 159.901 45.2987 159.901 38.2935C159.969 32.9882 158.813 28.5673 156.636 24.8941V24.8941ZM148.066 43.7346C147.114 48.2237 145.414 51.5562 142.897 53.8013C140.925 55.5697 139.088 56.3179 137.388 55.9778C135.755 55.6378 134.395 54.2094 133.375 51.5568C132.559 49.4483 132.15 47.3398 132.15 45.3673C132.15 43.6669 132.286 41.9665 132.627 40.4021C133.239 37.6135 134.395 34.8928 136.231 32.308C138.476 28.9752 140.856 27.6149 143.305 28.091C144.938 28.4311 146.298 29.8595 147.318 32.5121C148.134 34.6206 148.542 36.7291 148.542 38.7016C148.542 40.47 148.406 42.1704 148.066 43.7348L148.066 43.7346ZM114.058 24.8941C111.609 20.6091 107.936 18.0242 103.175 17.0039C101.883 16.7318 100.659 16.5958 99.5025 16.5958C92.973 16.5958 87.6679 19.9967 83.5188 26.7984C79.982 32.5798 78.2135 38.9736 78.2135 45.9788C78.2135 51.2161 79.3018 55.705 81.4783 59.4461C83.9269 63.7312 87.5318 66.3161 92.3607 67.3363C93.6529 67.6084 94.8773 67.7444 96.0335 67.7444C102.631 67.7444 107.936 64.3436 112.017 57.5418C115.554 51.6924 117.322 45.2987 117.322 38.2935C117.322 32.9882 116.234 28.5673 114.058 24.8941V24.8941ZM105.42 43.7346C104.468 48.2237 102.767 51.5562 100.251 53.8013C98.2781 55.5697 96.4417 56.3179 94.7413 55.9778C93.1088 55.6378 91.7485 54.2094 90.7283 51.5568C89.9121 49.4483 89.504 47.3398 89.504 45.3673C89.504 43.6669 89.64 41.9665 89.9801 40.4021C90.5923 37.6135 91.7486 34.8928 93.585 32.308C95.8295 28.9752 98.2101 27.6149 100.659 28.091C102.291 28.4311 103.652 29.8595 104.672 32.5121C105.488 34.6206 105.896 36.7291 105.896 38.7016C105.964 40.47 105.76 42.1704 105.42 43.7348L105.42 43.7346Z\" fill=\"white\"/></g><defs><clipPath id=\"clip0\"><rect width=\"167.32\" height=\"100\" fill=\"white\" transform=\"translate(0.93811)\"/></clipPath></defs></svg></span><span class=\"fusion-fss-plugin-text\">WooCommerce</span></div></div></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-title title fusion-title-117 fusion-sep-none fusion-title-text fusion-title-size-three\" id=\"support\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">World-Class Support And Resources</h3></div><div class=\"fusion-text fusion-text-70\"><p>Many facets set the <a href=\"https://avada.com/feature/live-visual-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a> apart from the competition. None more important is that Avada is not reliant on 3rd party builders and tools to deliver a stable and seamless website building experience. No waiting for external developers and toolset creators to deliver the next update for your theme. We take pride in the fact that Avada is 100% maintained, evolved, and developed according to strict WordPress and PHP coding standards. Avada gives you peace of mind and guarantees that what you have to work with will always be ahead of the latest industry requirements.</p>\n</div><ul style=\"--awb-iconcolor:#f1642b;--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-18 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon icon-avada-docs\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><a href=\"https://avada.com/documentation/how-to-use-the-performance-wizard\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use The Performance Wizard</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon avada-elements-youtube\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://avada.com/documentation/how-to-use-the-performance-wizard/\" target=\"_blank\" rel=\"noopener noreferrer\">Video: How To Use The Performance Wizard</a></div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon icon-avada-docs\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://avada.com/documentation/avada-optimization-guide\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Optimization Guide</a></div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon avada-elements-youtube\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://avada.com/documentation/how-to-use-critical-css\" target=\"_blank\" rel=\"noopener noreferrer\">Video: Optimize Above The Fold Content For Performance</a></div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon icon-avada-docs\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://avada.com/documentation/avada-speed-performance\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Speed &amp; Performance</a></div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon icon-avada-docs\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://avada.com/documentation/how-to-use-critical-css\" target=\"_blank\" rel=\"noopener noreferrer\">How To Use Critical CSS</a></div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-title title fusion-title-118 fusion-sep-none fusion-title-text fusion-title-size-two\" id=\"prebuiltwebsite\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">What is a Prebuilt Website?</h2></div><div class=\"fusion-text fusion-text-71\"><p>Simply put, <a href=\"https://avada.com/prebuilt-websites/\" target=\" _self\" rel=\"noopener noreferrer\">prebuilt websites</a> are complete websites that have been designed and built to fit an industry niche. Each website comprises pages, posts, content layouts, images, or various media types representing or showcasing an online presence for a target audience or business type.</p>\n<p><a href=\"https://1.envato.market/ZQNejk\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt websites and prebuilt content layouts (individual page or post content, layout sections, Call-to-actions, etc.) are carefully crafted by our talented team of designers to give you, the Avada user, a way to save time when prototyping a new website.</p>\n<p>Avada&#8217;s prebuilt websites are a fantastic resource for creativity and inspiration. They will make web design a more efficient and productive process for beginners, marketers, and professionals alike. Here are some essential facts:</p>\n</div><ul style=\"--awb-iconcolor:#f1642b;--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-19 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">They are created to save you time when building a new website.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">A prebuilt website can be imported with a few clicks.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">Each prebuilt website is mobile and SEO friendly.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">Each prebuilt website is entirely customizable to suit your project and branding needs.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">You can white-label any prebuilt website for client work.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">Prebuilt websites are included with your <a href=\"https://1.envato.market/ZQNejk\" target=\"_blank\" rel=\"noopener noreferrer\">purchase</a> of the Avada Website Builder.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">Each prebuilt website is <a href=\"https://avada.com/documentation/avada-optimization-guide\" target=\" _self\" rel=\"noopener noreferrer\">optimized</a> for <a href=\"https://avada.com/documentation/how-to-use-the-performance-wizard\" target=\" _self\" rel=\"noopener noreferrer\">performance</a>.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-title title fusion-title-119 fusion-sep-none fusion-title-text fusion-title-size-two\" id=\"install\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Fast One-Click Install</h2></div><div class=\"fusion-text fusion-text-72\"><p>Importing any Avada Prebuilt Website is as simple as clicking a button, with pre-import selections making it highly flexible. You can choose to import a <a href=\"https://avada.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">full </a><a href=\"https://avada.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">website </a>(more than <span class=\"fusion-cs-live-demos\">97</span> to choose from) and parts of any other and anything in between. Choose pages, posts, portfolios, images, sliders, theme options, widgets, or uninstall as you prefer.</p>\n</div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-73 hover-type-none\"><a class=\"fusion-no-lightbox\" href=\"https://avada.com/prebuilt-websites/\" target=\"_blank\" aria-label=\"prebuilt-3step-import-compressed\" rel=\"noopener noreferrer\"><img decoding=\"async\" width=\"1100\" height=\"420\" alt=\"Avada Prebuilt Website Import\" src=\"https://avada.com/wp-content/uploads/2022/10/prebuilt-3step-import-compressed.png\" class=\"img-responsive wp-image-887421\" srcset=\"https://avada.com/wp-content/uploads/2022/10/prebuilt-3step-import-compressed-200x76.png 200w, https://avada.com/wp-content/uploads/2022/10/prebuilt-3step-import-compressed-400x153.png 400w, https://avada.com/wp-content/uploads/2022/10/prebuilt-3step-import-compressed-600x229.png 600w, https://avada.com/wp-content/uploads/2022/10/prebuilt-3step-import-compressed-800x305.png 800w, https://avada.com/wp-content/uploads/2022/10/prebuilt-3step-import-compressed.png 1100w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1100px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-66 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-65 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:10px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-120 fusion-sep-none fusion-title-text fusion-title-size-two\" id=\"structure\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Website Structure</h2></div><div class=\"fusion-text fusion-text-73\"><p>A page or post structure is divided into four main sections: the Header, the Page Title Bar, Content, and the Footer. With the Avada Website Builder, you can independently edit each of these sections to create super flexible and stunning layout designs.</p>\n<p>Below is a list of the <a href=\"https://avada.website/life-coach/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Life Coach</a> pages and posts that have been prebuilt just for you. Once installed, you can change all aspects of each Layout, and at any time, add new pages to suit your online business needs.</p>\n</div><ul style=\"--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-20 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><a href=\"https://avada.website/life-coach/\" target=\"_blank\" rel=\"noopener noreferrer\">Homepage Layout</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><a href=\"https://avada.website/life-coach/about-me/\" target=\"_blank\" rel=\"noopener noreferrer\">About Me Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><a href=\"https://avada.website/life-coach/services/\" target=\"_blank\" rel=\"noopener noreferrer\">Services Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><a href=\"https://avada.website/life-coach/career-coaching/\" target=\"_blank\" rel=\"noopener noreferrer\">Services &#8211; Career Coaching Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><a href=\"https://avada.website/life-coach/personal-coaching/\" target=\"_blank\" rel=\"noopener noreferrer\">Services &#8211; Personal Coaching Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><a href=\"https://avada.website/life-coach/wellness-coaching/\" target=\"_blank\" rel=\"noopener noreferrer\">Services &#8211; Wellness Coaching Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><a href=\"https://avada.website/life-coach/testimonials/\" target=\"_blank\" rel=\"noopener noreferrer\">Testimonials Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><a href=\"https://avada.website/life-coach/blog/\" target=\"_blank\" rel=\"noopener noreferrer\">Blog Page Layout</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-link fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><a href=\"https://avada.website/life-coach/contact/\" target=\"_blank\" rel=\"noopener noreferrer\">Book A Session Page Layout</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-67 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-66 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-121 fusion-sep-none fusion-title-text fusion-title-size-two\" id=\"layouts\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Explaining Layouts &amp; Layout Sections</h2></div><div class=\"fusion-text fusion-text-74\"><p>Before we look at the specific Layouts on the Avada Life Coach prebuilt website, the first thing to understand is the Layouts and Layout Sections&#8217; architecture. You can think of Layouts as a container for the page content. In contrast, the actual content comes from the various Layout Sections. There are four Layout Sections on a page – the Header, Page Title Bar, Content, and Footer Layout Sections.</p>\n<p>There is a default Global Layout, and any Layout Sections added to that will be shown on all pages of your website. There are Conditional Layouts with conditional logic to determine how the Layout will be used.</p>\n<p>You can make as many Layouts and Layout Sections as you like, and you can use the Layout Sections in multiple Layouts. But you can only use a specific condition on a single Layout, so the theme knows which one to use.</p>\n<p>See <a href=\"https://avada.com/documentation/understanding-layouts-and-layout-sections\" target=\"_blank\" rel=\"noopener noreferrer\">Understanding Layouts &amp; Layout Sections</a> and <a href=\"https://avada.com/documentation/understanding-conditional-layouts\" target=\"_blank\" rel=\"noopener noreferrer\">Understanding Conditional Layouts</a> for more info.</p>\n</div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-74 hover-type-none\"><img decoding=\"async\" width=\"1050\" height=\"1050\" alt=\"Avada Layout Sections Legend\" title=\"builder-layout-schematic-post-image\" src=\"https://avada.com/wp-content/uploads/2022/10/builder-layout-schematic-post-image.png\" class=\"img-responsive wp-image-887422\" srcset=\"https://avada.com/wp-content/uploads/2022/10/builder-layout-schematic-post-image-200x200.png 200w, https://avada.com/wp-content/uploads/2022/10/builder-layout-schematic-post-image-400x400.png 400w, https://avada.com/wp-content/uploads/2022/10/builder-layout-schematic-post-image-600x600.png 600w, https://avada.com/wp-content/uploads/2022/10/builder-layout-schematic-post-image-800x800.png 800w, https://avada.com/wp-content/uploads/2022/10/builder-layout-schematic-post-image.png 1050w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1050px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-title title fusion-title-122 fusion-sep-none fusion-title-text fusion-title-size-two\" id=\"wordpresspages\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Explaining WordPress Pages vs. Posts</h2></div><div class=\"fusion-text fusion-text-75\"><p>Website pages are allocated for static content such as your website&#8217;s homepage, about, contact page, and so on, and are timeless entities.</p>\n<p>Website posts are allocated to blog content listed in reverse (newest to the oldest) chronological order and are timely. Older posts are archived based on month and year. You can also create content for custom post types or CPT. In Avada, an example of this is the Portfolio post type. Check out this detailed <a href=\"https://wordpress.com/support/post-vs-page/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress article</a> for more information.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-123 fusion-sep-none fusion-title-text fusion-title-size-two\" id=\"change\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">What Can I Change? Is the Design Flexible?</h2></div><div class=\"fusion-text fusion-text-76\"><p>The <a href=\"https://avada.website/life-coach/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Life Coach</a> prebuilt website is exactly that, prebuilt, for you. If the design and style suit your website needs, you can use it as a starting point, and you can change as much or as little as you need to.</p>\n<p>The most obvious details that you will want to change at first is the website&#8217;s wording, titles, color scheme, and images. You can choose to leave the overall layouts as is or Drag and Drop to rearrange the content&#8217;s order. Further to that, you can add or remove any of the <a href=\"https://avada.com/elements/\" target=\"_blank\" rel=\"noopener noreferrer\">Design </a><a href=\"https://avada.com/elements/\" target=\"_blank\" rel=\"noopener noreferrer\">Elements </a>to fine-tune your preferred business narrative. In short, you can change every single aspect of the prebuilt website&#8217;s Layout and content.</p>\n<p>Editing a page&#8217;s content and layouts is done using the <a href=\"https://avada.com/feature/live-visual-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Drag and Drop</a> live editor or using the traditional back-end method. The first image below shows the Live visual Drag and Drop editor is used to edit the content:</p>\n</div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-75 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><a href=\"https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Frontend-Editing.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[eab8f49a02c0bdbf5ec]\" data-title=\"Avada Life Coach Frontend Editing\" title=\"Avada Life Coach Frontend Editing\"><img decoding=\"async\" width=\"1906\" height=\"604\" alt=\"Live Editor\" src=\"https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Frontend-Editing.jpg\" class=\"img-responsive wp-image-892870\" srcset=\"https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Frontend-Editing-200x63.jpg 200w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Frontend-Editing-400x127.jpg 400w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Frontend-Editing-600x190.jpg 600w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Frontend-Editing-800x254.jpg 800w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Frontend-Editing-1200x380.jpg 1200w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Frontend-Editing.jpg 1906w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1906px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-text fusion-text-77\"><p>The image below shows the traditional back-end method is used to edit the content:</p>\n</div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-76 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><a href=\"https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Backend-Editing.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[83cfa4c08a22c431a58]\" data-title=\"Avada Life Coach Backend Editing\" title=\"Avada Life Coach Backend Editing\"><img decoding=\"async\" width=\"1906\" height=\"594\" alt=\"Back-end Editing\" src=\"https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Backend-Editing.jpg\" class=\"img-responsive wp-image-892871\" srcset=\"https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Backend-Editing-200x62.jpg 200w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Backend-Editing-400x125.jpg 400w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Backend-Editing-600x187.jpg 600w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Backend-Editing-800x249.jpg 800w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Backend-Editing-1200x374.jpg 1200w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Backend-Editing.jpg 1906w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1906px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-title title fusion-title-124 fusion-sep-none fusion-title-text fusion-title-size-two\" id=\"comparison\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">A Side By Side Comparison (Builder vs. No Builder)</h2></div><div class=\"fusion-text fusion-text-78\"><p>We have created a side by side point of reference that illustrates the differences in building a website using the Avada Website Builder to design custom Layouts vs. not using The Avada Website Builder and only using predefined options. The latter will allow you only to build a basic site, in comparison.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><ul style=\"--awb-iconcolor:#f1642b;--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-21 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://avada.website/handmade\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Handmade</a> (Using the Website Builder)</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-times fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://avada.website/handmade-basic/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Handmade Basic</a> (Not using the Website Builder)</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-68 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-67 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-125 fusion-sep-none fusion-title-text fusion-title-size-two\" id=\"homepage\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Exploring The Homepage Layout</h2></div><div class=\"fusion-text fusion-text-79\"><p>Website pages are allocated for static content such as your website&#8217;s homepage, about, contact page, and so on, and are timeless entities.</p>\n<p>Website posts are allocated to blog content listed in reverse (newest to the oldest) chronological order and are timely. Older posts are archived based on month and year. You can also create content for custom post types or CPT. In Avada, an example of this is the Portfolio post type. Check out this detailed <a href=\"https://wordpress.com/support/post-vs-page/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress article</a> for more information.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-126 fusion-sep-none fusion-title-text fusion-title-size-three\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">The Header</h3></div><div class=\"fusion-text fusion-text-80\"><p>For the <a href=\"https://avada.website/life-coach/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Life Coach</a> prebuilt website, the Header was created using the Avada <a href=\"https://avada.com/feature/header-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Header Builder</a> and is set globally across the website. This means that every page and post will use the same Header layout without any further conditions set. For example, you can change this if required by creating a unique Header layout for different pages or posts.</p>\n</div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-77 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><a href=\"https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Header.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[7285f07245f47b0b428]\" data-title=\"Avada Life Coach Header\" title=\"Avada Life Coach Header\"><img decoding=\"async\" width=\"1912\" height=\"82\" alt=\"Avada Life Coach Header\" src=\"https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Header.jpg\" class=\"img-responsive wp-image-892872\" srcset=\"https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Header-200x9.jpg 200w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Header-400x17.jpg 400w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Header-600x26.jpg 600w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Header-800x34.jpg 800w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Header-1200x51.jpg 1200w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Header.jpg 1912w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1912px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-title title fusion-title-127 fusion-sep-none fusion-title-text fusion-title-size-three\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">The Page Content</h3></div><div class=\"fusion-text fusion-text-81\"><p>The content part of the homepage, the area between the Header and Footer, does not use a page title bar. You can change this page&#8217;s content in an infinite number of ways to best suit your business marketing and brand requirements.</p>\n<p>Page and Post content is structured using Container and Column Elements, and if required, Nested Columns. Check out the help file links below for detailed information and videos explaining what they are and how to use them:</p>\n</div><ul style=\"--awb-iconcolor:#f1642b;--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-22 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">What are Containers, and how to use them? Read more <a href=\"https://avada.com/documentation/container-element\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">What are Columns, and how to use them? Read more <a href=\"https://avada.com/documentation/column-element\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-info-circle fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">What are Nested Columns, and how to use them? Read more <a href=\"https://avada.com/documentation/nested-columns-element\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>.</div></li></ul></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-69 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-margin-top:0px;--awb-margin-bottom:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-68 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-128 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\"><h4 class=\"fusion-title-heading title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:20;--minFontSize:20;line-height:1.42;\">The Hero</h4></div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-78 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><a href=\"https://avada.com/wp-content/uploads/2023/05/Avada-Magazine-Hero.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[b2d899e1c251a5834e9]\" data-title=\"Avada Magazine Hero\" title=\"Avada Life Coach Hero\"><img decoding=\"async\" width=\"1912\" height=\"537\" alt=\"Avada Life Coach Hero\" src=\"https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Hero.jpg\" class=\"img-responsive wp-image-892873\" srcset=\"https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Hero-200x56.jpg 200w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Hero-400x112.jpg 400w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Hero-600x169.jpg 600w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Hero-800x225.jpg 800w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Hero-1200x337.jpg 1200w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Hero.jpg 1912w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1912px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-text fusion-text-82\"><p>Instead of using a traditional image slider, like the <a href=\"https://avada.com/features/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Slider</a> or <a href=\"https://avada.com/features/\" target=\"_blank\" rel=\"noopener noreferrer\">Slider Revolution</a>, as the above-the-fold hero section, this prebuilt site uses a single <a href=\"https://avada.com/documentation/container-element\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> with a Background Image. The container holds one 45% width <a href=\"https://avada.com/documentation/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column</a> containing two <a href=\"https://avada.com/documentation/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, a <a href=\"https://avada.com/documentation/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, a <a href=\"https://avada.com/documentation/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>, and one 55% width Column with a <a href=\"https://avada.com/documentation/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a> and a <a href=\"https://avada.com/documentation/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Element</a>.</p>\n<p>Simply put, Nested Columns are columns within columns. This Nested Columns Element is structured with one 1/1 (100% width) Column holding an <a href=\"https://avada.com/documentation/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-129 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\"><h4 class=\"fusion-title-heading title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:20;--minFontSize:20;line-height:1.42;\">About Me</h4></div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-79 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><a href=\"https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-About-Me.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[b5c7a127cc7bae7f9de]\" data-title=\"Avada Life Coach About Me\" title=\"Avada Life Coach About Me\"><img decoding=\"async\" width=\"1912\" height=\"479\" alt=\"Avada Life Coach About Me\" src=\"https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-About-Me.jpg\" class=\"img-responsive wp-image-892874\" srcset=\"https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-About-Me-200x50.jpg 200w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-About-Me-400x100.jpg 400w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-About-Me-600x150.jpg 600w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-About-Me-800x200.jpg 800w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-About-Me-1200x301.jpg 1200w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-About-Me.jpg 1912w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1912px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-text fusion-text-83\"><p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">This section was built using a <a href=\"https://avada.com/documentation/container-element\" target=\"_blank\" rel=\"noopener noreferrer\">Container </a>with three 1/3 (33.33% width) <a href=\"https://avada.com/documentation/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a>. The first column holds a <a href=\"https://avada.com/documentation/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, a <a href=\"https://avada.com/documentation/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, a <a href=\"https://avada.com/documentation/separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Separator Element</a>, and a <a href=\"https://avada.com/documentation/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>. The second column holds a Title Element, a Text Block Element, a Separator Element, and two <a href=\"https://avada.com/documentation/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Elements</a>.<br />\n</span></p>\n<p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">The first Nested Column is structured with one 1/1 (100% width) Column holding an <a href=\"https://avada.com/documentation/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a>, while the second Nested Column is structured with one 80% width Column holding an Image Element.<br />\n</span></p>\n<p><span style=\"background-color: rgba(255, 255, 255, 0); color: var(--body_typography-color); letter-spacing: 0px; font-style: var(--body_typography-font-style,normal);\">The third column contains two Text Block Elements, a Separator Element, and a Title Element.<br />\n</span></p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-130 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\"><h4 class=\"fusion-title-heading title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:20;--minFontSize:20;line-height:1.42;\">Blog</h4></div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-80 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><a href=\"https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Blog.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[dd534f16d98a812c484]\" data-title=\"Avada Life Coach Blog\" title=\"Avada Life Coach Blog\"><img decoding=\"async\" width=\"1912\" height=\"1151\" alt=\"Avada Life Coach Blog\" src=\"https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Blog.jpg\" class=\"img-responsive wp-image-892875\" srcset=\"https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Blog-200x120.jpg 200w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Blog-400x241.jpg 400w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Blog-600x361.jpg 600w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Blog-800x482.jpg 800w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Blog-1200x722.jpg 1200w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Blog.jpg 1912w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1912px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-text fusion-text-84\"><p>This section was built using a <a href=\"https://avada.com/documentation/container-element\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> holding one 3/5 (60% width) <a href=\"https://avada.com/documentation/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column</a> holding a <a href=\"https://avada.com/documentation/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a> and a <a href=\"https://avada.com/documentation/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>. This is followed by one 1/1 (100% width) Column holding a <a href=\"https://avada.com/documentation/post-cards-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Post Cards Element</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-131 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\"><h4 class=\"fusion-title-heading title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:20;--minFontSize:20;line-height:1.42;\">YouTube</h4></div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-81 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><a href=\"https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-YouTube.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[2969678cd0f5926ee30]\" data-title=\"Avada Life Coach YouTube\" title=\"Avada Life Coach YouTube\"><img decoding=\"async\" width=\"1912\" height=\"555\" alt=\"Avada Life Coach YouTube\" src=\"https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-YouTube.jpg\" class=\"img-responsive wp-image-892876\" srcset=\"https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-YouTube-200x58.jpg 200w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-YouTube-400x116.jpg 400w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-YouTube-600x174.jpg 600w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-YouTube-800x232.jpg 800w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-YouTube-1200x348.jpg 1200w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-YouTube.jpg 1912w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1912px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-text fusion-text-85\"><p>To create this layout, a <a href=\"https://avada.com/documentation/container-element\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> with one 1/1 (100% width) <a href=\"https://avada.com/documentation/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column</a> holding a <a href=\"https://avada.com/documentation/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Element</a>. The Nested Columns Element is structured with one 45% width Column holding a <a href=\"https://avada.com/documentation/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Element</a>, a <a href=\"https://avada.com/documentation/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, a <a href=\"https://avada.com/documentation/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>, and one 55% width Column holding an <a href=\"https://avada.com/documentation/icon-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Icon Element</a>, was used.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-132 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\"><h4 class=\"fusion-title-heading title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:20;--minFontSize:20;line-height:1.42;\">Sponsors</h4></div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-82 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><a href=\"https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Sponsors.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[1f9c320a90b0f0df5f3]\" data-title=\"Avada Life Coach Sponsors\" title=\"Avada Life Coach Sponsors\"><img decoding=\"async\" width=\"1912\" height=\"228\" alt=\"Avada Life Coach Sponsors\" src=\"https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Sponsors.jpg\" class=\"img-responsive wp-image-892877\" srcset=\"https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Sponsors-200x24.jpg 200w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Sponsors-400x48.jpg 400w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Sponsors-600x72.jpg 600w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Sponsors-800x95.jpg 800w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Sponsors-1200x143.jpg 1200w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Sponsors.jpg 1912w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1912px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-text fusion-text-86\"><p>This section was built using a <a href=\"https://avada.com/documentation/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> with two 1/1 (100% width) <a href=\"https://avada.com/documentation/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a> with the first containing a <a href=\"https://avada.com/documentation/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a> and the second containing four <a href=\"https://avada.com/documentation/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Elements</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-133 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\"><h4 class=\"fusion-title-heading title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:20;--minFontSize:20;line-height:1.42;\">More Information</h4></div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-83 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><a href=\"https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-More-Information.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[8c47d238a0638aa13b5]\" data-title=\"Avada Life Coach More Information\" title=\"Avada Life Coach More Information\"><img decoding=\"async\" width=\"1912\" height=\"563\" alt=\"Avada Life Coach More Information\" src=\"https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-More-Information.jpg\" class=\"img-responsive wp-image-892878\" srcset=\"https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-More-Information-200x59.jpg 200w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-More-Information-400x118.jpg 400w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-More-Information-600x177.jpg 600w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-More-Information-800x236.jpg 800w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-More-Information-1200x353.jpg 1200w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-More-Information.jpg 1912w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1912px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-text fusion-text-87\"><p>This section was built using a <a href=\"https://avada.com/documentation/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Container</a> holding one 45% width <a href=\"https://avada.com/documentation/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Column</a> containing two <a href=\"https://avada.com/documentation/title-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Title Elements</a>, a <a href=\"https://avada.com/documentation/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Element</a>, an <a href=\"https://avada.com/documentation/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a>, a <a href=\"https://avada.com/documentation/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Element</a>, and a 55% width Column containing a <a href=\"https://avada.com/documentation/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Element</a>.</p>\n<p>The Nested Columns are structured with two 1/2 (50% width) Columns, each containing an Image Element.</p>\n</div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-70 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-margin-top:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-69 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-134 fusion-sep-none fusion-title-text fusion-title-size-two\" id=\"footer\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">The Footer</h2></div><div class=\"fusion-text fusion-text-88\"><p>A website footer aims to help visitors by providing appropriate information and navigation options at the bottom of website pages. Website footer design is underrated and more valuable to your website than you may think and is essential to the overall end-user experience. Three key points stand out, namely:</p>\n</div><ul style=\"--awb-iconcolor:#f1642b;--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-23 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">A footer should provide a website visitor with additional choices. If you want people to sign up for your mailing list, view a product demo, or contact you, inviting them at the end of a scroll is a compelling call to action.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">A footer should create a path for continued engagement by including navigation links to products, services, or other parts of your website.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-thumbs-up fas\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">A footer can access essential information like ways to contact your company and customer services, privacy statements, and potential legal disclaimers.</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-text fusion-text-89\"><p>For the <a href=\"https://avada.website/life-coach/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Life Coach</a> prebuilt website, the Footer was created using the Avada <a href=\"https://avada.com/feature/footer-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Footer Builder</a> and this particular Footer content and Layout is set to display globally across the website. This means that every page and post will use the same Footer layout without any further conditions set. For example, you can change this if required by creating a unique Footer layout for different pages or posts. Let us take a closer look below:</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-135 fusion-sep-none fusion-title-center fusion-title-text fusion-title-size-four\"><h4 class=\"fusion-title-heading title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:20;--minFontSize:20;line-height:1.42;\">Footer Content</h4></div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-84 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><a href=\"https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Footer.jpg\" class=\"fusion-lightbox\" data-rel=\"iLightbox[b87ae604b57f7eee113]\" data-title=\"Avada Life Coach Footer\" title=\"Avada Life Coach Footer\"><img decoding=\"async\" width=\"1912\" height=\"675\" alt=\"Avada Life Coach Footer\" src=\"https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Footer.jpg\" class=\"img-responsive wp-image-892879\" srcset=\"https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Footer-200x71.jpg 200w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Footer-400x141.jpg 400w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Footer-600x212.jpg 600w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Footer-800x282.jpg 800w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Footer-1200x424.jpg 1200w, https://avada.com/wp-content/uploads/2023/07/Avada-Life-Coach-Footer.jpg 1912w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1912px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-text fusion-text-90\"><p>The Footer section is created using two <a href=\"https://avada.com/documentation/container-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Containers</a> and multiple <a href=\"https://avada.com/documentation/column-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Columns</a>. These columns contain a <a href=\"https://avada.com/documentation/section-separator-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Section Separator Element</a>, a <a href=\"https://avada.com/documentation/nested-columns-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Nested Columns Element</a>, an <a href=\"https://avada.com/documentation/image-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Image Element</a>, <a href=\"https://avada.com/documentation/text-block-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Text Block Elements</a>, a <a href=\"https://avada.com/documentation/news-ticker-element/\" target=\"_blank\" rel=\"noopener noreferrer\">News Ticker Element</a>, <a href=\"https://avada.com/documentation/menu-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Menu Elements</a>, <a href=\"https://avada.com/documentation/button-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Button Elements</a>, and a <a href=\"https://avada.com/documentation/social-links-element/\" target=\"_blank\" rel=\"noopener noreferrer\">Social Links Element</a>, with the use of the <a href=\"https://avada.com/documentation/how-to-use-dynamic-content-options-in-avada\" target=\"_blank\" rel=\"noopener noreferrer\">Dynamic Data Options</a> to display the website information.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-136 fusion-sep-none fusion-title-text fusion-title-size-two\" id=\"summary\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">In Summary</h2></div><div class=\"fusion-text fusion-text-91\"><p>There are <span class=\"fusion-cs-live-demos\">97</span> <a href=\"https://1.envato.market/ZQNejk\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> prebuilt websites to choose from, with more being added regularly. Our amazing design team created these prebuilt websites as a way to give you a head start when building your <a href=\"https://1.envato.market/ZQNejk\" target=\"_blank\" rel=\"noopener noreferrer\">next</a> website.</p>\n<p>You can change the styling, Layouts, content as much or as little as you need to quickly adapt any individual prebuilt site to suit your chosen niche. Get started with the Avada Website Builder today and launch your business online; Fast.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-xlarge button-custom fusion-button-default button-110 fusion-button-span-yes fusion-button-default-type\" style=\"--button_accent_color:var(--awb-color1);--button_accent_hover_color:var(--awb-color1);--button_border_hover_color:var(--awb-color1);--button_gradient_top_color:var(--awb-color8);--button_gradient_bottom_color:var(--awb-color8);--button_gradient_top_color_hover:hsla(var(--awb-color8-h),var(--awb-color8-s),calc(var(--awb-color8-l) - 16%),var(--awb-color8-a));--button_gradient_bottom_color_hover:hsla(var(--awb-color8-h),var(--awb-color8-s),calc(var(--awb-color8-l) - 16%),var(--awb-color8-a));\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/ZQNejk\"><span class=\"fusion-button-text\">Buy Avada Life Coach For Only $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://avada.com/blog/avada-life-coach-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:6;a:6:{s:4:\"data\";s:88:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"15 Best WooCommerce Websites For WordPress 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://avada.com/blog/best-15-woocommerce-websites-for-wordpress-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://avada.com/blog/best-15-woocommerce-websites-for-wordpress-2023/#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, 28 Jul 2023 11:15:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:9:\"eCommerce\";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:\"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:2;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:3;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: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:\"\";}i:5;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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://theme-fusion.com/?p=884652\";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:327:\"Are you looking for the best WooCommerce website for WordPress? Or do you need to expand your existing website to start selling products and services online? Avada is a Website Builder for WordPress with flexible and intuitive website design tools that will empower you to create websites of any style. And the best part is ...\";s: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:\"michaelb\";s: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:91263:\"<p><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-71 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-70 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-text fusion-text-92\"><p>Are you looking for the best WooCommerce website for WordPress? Or do you need to expand your existing website to start selling products and services online?</p>\n<p><a href=\"https://1.envato.market/jKdLZ\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> is a <a href=\"https://avada.com/features/\" target=\"_blank\" rel=\"noopener noreferrer\">Website Builder</a> for WordPress with flexible and intuitive website design tools that will empower you to create <a href=\"https://avada.website/\" target=\"_blank\" rel=\"noopener noreferrer\">websites</a> of any style. And the best part is that no coding knowledge is required. Whether you are <a href=\"https://avada.com/for-beginners/\" target=\"_blank\" rel=\"noopener noreferrer\">a beginner</a>, <a href=\"https://avada.com/for-marketers/\" target=\"_blank\" rel=\"noopener noreferrer\">a marketer</a>, or <a href=\"https://avada.com/for-professionals/\" target=\"_blank\" rel=\"noopener noreferrer\">a professional</a>, Avada will give you the confidence to manage your online store stress-free.</p>\n<p>The 15 websites that are showcased in this article are popular downloads in the Avada <a href=\"https://avada.website/#fps_woocommerce\" target=\"_blank\" rel=\"noopener noreferrer\">WooCommerce</a> category. Avada’s prebuilt content and websites are fully customizable and adapted to suit any website type. Also, feel free to check out these <a href=\"https://avada.com/blog/the-15-best-avada-corporate-websites-for-wordpress/\" target=\"_blank\" rel=\"noopener noreferrer\">15 best Avada Corporate websites</a>. </p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-137 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Overview</h2></div><div class=\"awb-toc-el awb-toc-el--7\" data-awb-toc-id=\"7\" data-awb-toc-options=\"{&quot;allowed_heading_tags&quot;:{&quot;h2&quot;:0,&quot;h3&quot;:1},&quot;ignore_headings&quot;:&quot;&quot;,&quot;ignore_headings_words&quot;:&quot;Overview&quot;,&quot;enable_cache&quot;:&quot;yes&quot;,&quot;highlight_current_heading&quot;:&quot;no&quot;,&quot;hide_hidden_titles&quot;:&quot;yes&quot;,&quot;limit_container&quot;:&quot;post_content&quot;,&quot;select_custom_headings&quot;:&quot;&quot;,&quot;icon&quot;:&quot;fa-angle-right fal&quot;,&quot;counter_type&quot;:&quot;custom_icon&quot;}\" style=\"--awb-item-font-size:var(--awb-typography4-font-size);--awb-item-line-height:var(--awb-typography4-line-height);--awb-item-letter-spacing:var(--awb-typography4-letter-spacing);--awb-item-text-transform:var(--awb-typography4-text-transform);--awb-item-color:var(--awb-color8);--awb-item-color-hover:var(--awb-color5);--awb-item-bg-color-hover:rgba(101,189,125,0);--awb-counter-color:var(--awb-color6);--awb-hover-counter-color:var(--awb-color5);--awb-list-indent:15px;--awb-item-padding-top:3px;--awb-item-padding-right:0;--awb-item-padding-bottom:5px;--awb-item-padding-left:0;--awb-item-font-family:var(--awb-typography4-font-family);--awb-item-font-weight:var(--awb-typography4-font-weight);--awb-item-font-style:var(--awb-typography4-font-style);\"><div class=\"awb-toc-el__content\"></div></div>\n</div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-72 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-71 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-138 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Life Coach</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-85 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1789\" alt=\"Avada Retail\" title=\"Avada Life Coach\" src=\"https://avada.com/wp-content/uploads/2023/07/avada-life-coach-post-display.jpg\" class=\"img-responsive wp-image-892900\" srcset=\"https://avada.com/wp-content/uploads/2023/07/avada-life-coach-post-display-200x188.jpg 200w, https://avada.com/wp-content/uploads/2023/07/avada-life-coach-post-display-400x377.jpg 400w, https://avada.com/wp-content/uploads/2023/07/avada-life-coach-post-display-600x565.jpg 600w, https://avada.com/wp-content/uploads/2023/07/avada-life-coach-post-display-800x753.jpg 800w, https://avada.com/wp-content/uploads/2023/07/avada-life-coach-post-display-1200x1130.jpg 1200w, https://avada.com/wp-content/uploads/2023/07/avada-life-coach-post-display.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-108 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-111 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/life-coach/\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-109 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-112 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/GjXJR2\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-73 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-72 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-139 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Car Dealership</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-86 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1732\" alt=\"Avada Retail\" title=\"Avada Car Dealership\" src=\"https://avada.com/wp-content/uploads/2023/07/avada-car-dealer-post-display.jpg\" class=\"img-responsive wp-image-892901\" srcset=\"https://avada.com/wp-content/uploads/2023/07/avada-car-dealer-post-display-200x182.jpg 200w, https://avada.com/wp-content/uploads/2023/07/avada-car-dealer-post-display-400x365.jpg 400w, https://avada.com/wp-content/uploads/2023/07/avada-car-dealer-post-display-600x547.jpg 600w, https://avada.com/wp-content/uploads/2023/07/avada-car-dealer-post-display-800x729.jpg 800w, https://avada.com/wp-content/uploads/2023/07/avada-car-dealer-post-display-1200x1094.jpg 1200w, https://avada.com/wp-content/uploads/2023/07/avada-car-dealer-post-display.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-110 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-113 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/car-dealership/\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-111 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-114 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/GjXJR2\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-74 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-73 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-140 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Retail</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-87 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1916\" alt=\"Avada Retail\" title=\"avada-retail-post-image\" src=\"https://avada.com/wp-content/uploads/2022/08/avada-retail-post-image.jpg\" class=\"img-responsive wp-image-887467\" srcset=\"https://avada.com/wp-content/uploads/2022/08/avada-retail-post-image-200x202.jpg 200w, https://avada.com/wp-content/uploads/2022/08/avada-retail-post-image-400x403.jpg 400w, https://avada.com/wp-content/uploads/2022/08/avada-retail-post-image-600x605.jpg 600w, https://avada.com/wp-content/uploads/2022/08/avada-retail-post-image-800x807.jpg 800w, https://avada.com/wp-content/uploads/2022/08/avada-retail-post-image-1200x1210.jpg 1200w, https://avada.com/wp-content/uploads/2022/08/avada-retail-post-image.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-112 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-115 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/retail\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-113 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-116 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/GjXJR2\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-75 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-74 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-141 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Country Butcher</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-88 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1932\" alt=\"Avada Country Butcher\" title=\"avada-country-butcher-post-image\" src=\"https://avada.com/wp-content/uploads/2022/08/avada-country-butcher-post-image.jpg\" class=\"img-responsive wp-image-887468\" srcset=\"https://avada.com/wp-content/uploads/2022/08/avada-country-butcher-post-image-200x203.jpg 200w, https://avada.com/wp-content/uploads/2022/08/avada-country-butcher-post-image-400x407.jpg 400w, https://avada.com/wp-content/uploads/2022/08/avada-country-butcher-post-image-600x610.jpg 600w, https://avada.com/wp-content/uploads/2022/08/avada-country-butcher-post-image-800x813.jpg 800w, https://avada.com/wp-content/uploads/2022/08/avada-country-butcher-post-image-1200x1220.jpg 1200w, https://avada.com/wp-content/uploads/2022/08/avada-country-butcher-post-image.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-114 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-117 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/country-butcher\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-115 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-118 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/2G5jO\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-76 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-75 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-142 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Handmade</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-89 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1962\" alt=\"Avada Handmade\" title=\"avada-handmade-post-image\" src=\"https://avada.com/wp-content/uploads/2022/08/avada-handmade-post-image.jpg\" class=\"img-responsive wp-image-887469\" srcset=\"https://avada.com/wp-content/uploads/2022/08/avada-handmade-post-image-200x207.jpg 200w, https://avada.com/wp-content/uploads/2022/08/avada-handmade-post-image-400x413.jpg 400w, https://avada.com/wp-content/uploads/2022/08/avada-handmade-post-image-600x620.jpg 600w, https://avada.com/wp-content/uploads/2022/08/avada-handmade-post-image-800x826.jpg 800w, https://avada.com/wp-content/uploads/2022/08/avada-handmade-post-image-1200x1239.jpg 1200w, https://avada.com/wp-content/uploads/2022/08/avada-handmade-post-image.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-116 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-119 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/handmade\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-117 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-120 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/4Z0yn\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-77 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-76 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-143 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Digital Agency</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-90 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"2148\" alt=\"Avada Digital Agency \" title=\"avada-digital-agency-post-image\" src=\"https://avada.com/wp-content/uploads/2022/08/avada-digital-agency-post-image.jpg\" class=\"img-responsive wp-image-887470\" srcset=\"https://avada.com/wp-content/uploads/2022/08/avada-digital-agency-post-image-200x226.jpg 200w, https://avada.com/wp-content/uploads/2022/08/avada-digital-agency-post-image-400x452.jpg 400w, https://avada.com/wp-content/uploads/2022/08/avada-digital-agency-post-image-600x678.jpg 600w, https://avada.com/wp-content/uploads/2022/08/avada-digital-agency-post-image-800x904.jpg 800w, https://avada.com/wp-content/uploads/2022/08/avada-digital-agency-post-image-1200x1357.jpg 1200w, https://avada.com/wp-content/uploads/2022/08/avada-digital-agency-post-image.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-118 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-121 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/digital-agency\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-119 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-122 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/ORxrGZ\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-78 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-77 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-144 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Nutritionist</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-91 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1630\" alt=\"Avada Nutritionist\" title=\"avada-nutritionist-post-image\" src=\"https://avada.com/wp-content/uploads/2022/08/avada-nutritionist-post-image.jpg\" class=\"img-responsive wp-image-887471\" srcset=\"https://avada.com/wp-content/uploads/2022/08/avada-nutritionist-post-image-200x172.jpg 200w, https://avada.com/wp-content/uploads/2022/08/avada-nutritionist-post-image-400x343.jpg 400w, https://avada.com/wp-content/uploads/2022/08/avada-nutritionist-post-image-600x515.jpg 600w, https://avada.com/wp-content/uploads/2022/08/avada-nutritionist-post-image-800x686.jpg 800w, https://avada.com/wp-content/uploads/2022/08/avada-nutritionist-post-image-1200x1029.jpg 1200w, https://avada.com/wp-content/uploads/2022/08/avada-nutritionist-post-image.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-120 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-123 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/nutritionist\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-121 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-124 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/qe9mY\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-79 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-78 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-145 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Pet Supplies</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-92 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1909\" alt=\"Avada Pet Supplies\" title=\"avada-pet-supplies-post-image\" src=\"https://avada.com/wp-content/uploads/2022/08/avada-pet-supplies-post-image.jpg\" class=\"img-responsive wp-image-887472\" srcset=\"https://avada.com/wp-content/uploads/2022/08/avada-pet-supplies-post-image-200x201.jpg 200w, https://avada.com/wp-content/uploads/2022/08/avada-pet-supplies-post-image-400x402.jpg 400w, https://avada.com/wp-content/uploads/2022/08/avada-pet-supplies-post-image-600x603.jpg 600w, https://avada.com/wp-content/uploads/2022/08/avada-pet-supplies-post-image-800x804.jpg 800w, https://avada.com/wp-content/uploads/2022/08/avada-pet-supplies-post-image-1200x1206.jpg 1200w, https://avada.com/wp-content/uploads/2022/08/avada-pet-supplies-post-image.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-122 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-125 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/pet-supplies\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-123 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-126 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/qbbrn\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-80 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-79 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-146 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Online Tutor</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-93 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1741\" alt=\"Avada Online Tutor\" title=\"avada-online-tutor-post-image\" src=\"https://avada.com/wp-content/uploads/2022/08/avada-online-tutor-post-image.jpg\" class=\"img-responsive wp-image-887473\" srcset=\"https://avada.com/wp-content/uploads/2022/08/avada-online-tutor-post-image-200x183.jpg 200w, https://avada.com/wp-content/uploads/2022/08/avada-online-tutor-post-image-400x367.jpg 400w, https://avada.com/wp-content/uploads/2022/08/avada-online-tutor-post-image-600x550.jpg 600w, https://avada.com/wp-content/uploads/2022/08/avada-online-tutor-post-image-800x733.jpg 800w, https://avada.com/wp-content/uploads/2022/08/avada-online-tutor-post-image-1200x1100.jpg 1200w, https://avada.com/wp-content/uploads/2022/08/avada-online-tutor-post-image.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-124 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-127 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/online-tutor\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-125 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-128 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/zYeg6\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-81 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-80 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-147 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Restaurant</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-94 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1952\" alt=\"Avada Restaurant\" title=\"avada-restaurant-post-image\" src=\"https://avada.com/wp-content/uploads/2022/08/avada-restaurant-post-image.jpg\" class=\"img-responsive wp-image-887474\" srcset=\"https://avada.com/wp-content/uploads/2022/08/avada-restaurant-post-image-200x205.jpg 200w, https://avada.com/wp-content/uploads/2022/08/avada-restaurant-post-image-400x411.jpg 400w, https://avada.com/wp-content/uploads/2022/08/avada-restaurant-post-image-600x616.jpg 600w, https://avada.com/wp-content/uploads/2022/08/avada-restaurant-post-image-800x822.jpg 800w, https://avada.com/wp-content/uploads/2022/08/avada-restaurant-post-image-1200x1233.jpg 1200w, https://avada.com/wp-content/uploads/2022/08/avada-restaurant-post-image.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-126 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-129 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/restaurant\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-127 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-130 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/3NXvy\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-82 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-81 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-148 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Takeout</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-95 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1956\" alt=\"Avada Takeout\" title=\"avada-takeout-post-image\" src=\"https://avada.com/wp-content/uploads/2022/08/avada-takeout-post-image.jpg\" class=\"img-responsive wp-image-887475\" srcset=\"https://avada.com/wp-content/uploads/2022/08/avada-takeout-post-image-200x206.jpg 200w, https://avada.com/wp-content/uploads/2022/08/avada-takeout-post-image-400x412.jpg 400w, https://avada.com/wp-content/uploads/2022/08/avada-takeout-post-image-600x618.jpg 600w, https://avada.com/wp-content/uploads/2022/08/avada-takeout-post-image-800x824.jpg 800w, https://avada.com/wp-content/uploads/2022/08/avada-takeout-post-image-1200x1235.jpg 1200w, https://avada.com/wp-content/uploads/2022/08/avada-takeout-post-image.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-128 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-131 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/takeout\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-129 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-132 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/G99z9\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-83 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-82 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-149 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Modern Shop</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-96 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1956\" alt=\"Avada Modern Shop\" title=\"avada-modern-shop-post-image\" src=\"https://avada.com/wp-content/uploads/2022/08/avada-modern-shop-post-image.jpg\" class=\"img-responsive wp-image-887476\" srcset=\"https://avada.com/wp-content/uploads/2022/08/avada-modern-shop-post-image-200x206.jpg 200w, https://avada.com/wp-content/uploads/2022/08/avada-modern-shop-post-image-400x412.jpg 400w, https://avada.com/wp-content/uploads/2022/08/avada-modern-shop-post-image-600x618.jpg 600w, https://avada.com/wp-content/uploads/2022/08/avada-modern-shop-post-image-800x824.jpg 800w, https://avada.com/wp-content/uploads/2022/08/avada-modern-shop-post-image-1200x1235.jpg 1200w, https://avada.com/wp-content/uploads/2022/08/avada-modern-shop-post-image.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-130 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-133 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/modern-shop\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-131 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-134 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/Yaxvm\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-84 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-83 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-150 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Classic Shop</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-97 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1923\" alt=\"Avada Classic Shop\" title=\"avada-classic-shop-post-image\" src=\"https://avada.com/wp-content/uploads/2022/08/avada-classic-shop-post-image.jpg\" class=\"img-responsive wp-image-887477\" srcset=\"https://avada.com/wp-content/uploads/2022/08/avada-classic-shop-post-image-200x202.jpg 200w, https://avada.com/wp-content/uploads/2022/08/avada-classic-shop-post-image-400x405.jpg 400w, https://avada.com/wp-content/uploads/2022/08/avada-classic-shop-post-image-600x607.jpg 600w, https://avada.com/wp-content/uploads/2022/08/avada-classic-shop-post-image-800x810.jpg 800w, https://avada.com/wp-content/uploads/2022/08/avada-classic-shop-post-image-1200x1215.jpg 1200w, https://avada.com/wp-content/uploads/2022/08/avada-classic-shop-post-image.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-132 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-135 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/classic-shop\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-133 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-136 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/xGPjd\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-85 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-84 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-151 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Influencer</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-98 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1567\" alt=\"Avada Influencer\" title=\"avada-influencer-post-image\" src=\"https://avada.com/wp-content/uploads/2022/08/avada-influencer-post-image.jpg\" class=\"img-responsive wp-image-887478\" srcset=\"https://avada.com/wp-content/uploads/2022/08/avada-influencer-post-image-200x165.jpg 200w, https://avada.com/wp-content/uploads/2022/08/avada-influencer-post-image-400x330.jpg 400w, https://avada.com/wp-content/uploads/2022/08/avada-influencer-post-image-600x495.jpg 600w, https://avada.com/wp-content/uploads/2022/08/avada-influencer-post-image-800x660.jpg 800w, https://avada.com/wp-content/uploads/2022/08/avada-influencer-post-image-1200x990.jpg 1200w, https://avada.com/wp-content/uploads/2022/08/avada-influencer-post-image.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-134 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-137 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/influencer\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-135 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-138 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/va9qd\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-86 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-85 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-152 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Avada Bakery</h2></div><div class=\"fusion-image-element \" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-99 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1900\" height=\"1959\" alt=\"Avada Bakery\" title=\"avada-bakery-post-image\" src=\"https://avada.com/wp-content/uploads/2022/08/avada-bakery-post-image.jpg\" class=\"img-responsive wp-image-887479\" srcset=\"https://avada.com/wp-content/uploads/2022/08/avada-bakery-post-image-200x206.jpg 200w, https://avada.com/wp-content/uploads/2022/08/avada-bakery-post-image-400x412.jpg 400w, https://avada.com/wp-content/uploads/2022/08/avada-bakery-post-image-600x619.jpg 600w, https://avada.com/wp-content/uploads/2022/08/avada-bakery-post-image-800x825.jpg 800w, https://avada.com/wp-content/uploads/2022/08/avada-bakery-post-image-1200x1237.jpg 1200w, https://avada.com/wp-content/uploads/2022/08/avada-bakery-post-image.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></span></div><div class=\"fusion-builder-row fusion-builder-row-inner fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"width:104% !important;max-width:104% !important;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-136 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-139 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://avada.website/bakery\"><span class=\"fusion-button-text\">Live Preview</span><i class=\"fa-eye fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div><div class=\"fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-137 fusion_builder_column_inner_1_2 1_2 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:50%;--awb-margin-top-large:20px;--awb-spacing-right-large:3.84%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:3.84%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-large button-default fusion-button-default button-140 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/QQzq6\"><span class=\"fusion-button-text\">Buy It Now For $69</span><i class=\"fa-shopping-cart fas button-icon-right\" aria-hidden=\"true\"></i></a></div></div></div></div></div></div></div></div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-87 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-86 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-153 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Summary</h2></div><div class=\"fusion-text fusion-text-93\"><p>To get started designing your dream website there are a few things that you will need;</p>\n</div><ul style=\"--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-24 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-network-wired fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">A trusted <a href=\"https://avada.com/hosting/\" target=\"_blank\" rel=\"noopener noreferrer\">web hosting service</a></div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-wordpress-simple fab\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>The latest version of <a href=\"https://wordpress.org/download/\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress</a></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon avada-elements-avada-logo\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>The <a href=\"https://1.envato.market/jKdLZ\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Website Builder</a></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-94\"><p>These prebuilt websites are created as a way to give you a head start. You can change the styling, Layouts, content as much or as little as you need to quickly adapt any individual prebuilt site to suit your chosen niche. Get started with the&nbsp;Avada today and launch your business online; Fast.</p>\n<p>With your purchase of Avada, a host of resources are available for you to take advantage of. Resources include access to <span class=\"fusion-cs-live-demos\">97</span> professionally designed <a href=\"https://avada.com/prebuilt-websites/\" target=\"_blank\" rel=\"noopener noreferrer\">prebuilt websites</a>, 450+ individual <a href=\"https://avada.studio/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Studio</a> prebuilt content blocks, 200+ <a href=\"https://avada.com/help-center/videos/\" target=\"_blank\" rel=\"noopener noreferrer\">tutorial videos</a>, 600+ <a href=\"https://avada.com/help-center/\" target=\"_blank\" rel=\"noopener noreferrer\">help files</a>, and a 24/7 world-class support team to assist and guide you.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div style=\"text-align:center;\"><a class=\"fusion-button button-flat button-xlarge button-default fusion-button-default button-141 fusion-button-span-yes fusion-button-default-type\" style=\"--button_text_transform:uppercase;\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https://1.envato.market/jKdLZ\"><i class=\"fa-cloud-download-alt fas button-icon-left\" aria-hidden=\"true\"></i><span class=\"fusion-button-text\">Start Your Next Avada Website Today</span></a></div></div></div></div></div></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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://avada.com/blog/best-15-woocommerce-websites-for-wordpress-2023/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:7;a:6:{s:4:\"data\";s:82:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"10 Best WordPress Lead Capture Plugins for WordPress 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://avada.com/blog/10-best-wordpress-lead-capture-plugins-for-wordpress-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://avada.com/blog/10-best-wordpress-lead-capture-plugins-for-wordpress-in-2023/#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:\"Tue, 25 Jul 2023 10:00: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:4:{i:0;a:5:{s:4:\"data\";s:7:\"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:\"\";}i:1;a:5:{s:4:\"data\";s:12:\"Form Builder\";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:\"HubSpot\";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:9:\"Marketing\";s:7:\"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=866680\";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:339:\"Searching for the best WordPress lead capture plugin to help you grow your email lists and connect with more customers? While WordPress doesn\'t include any built-in features to capture leads beyond its user registration system, you can find dozens of useful plugins to help you capture leads in different ways and send them straight to ...\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"schanteldwl\";s: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:70212:\"<div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-88 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-87 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-text fusion-text-95\"><p>Searching for the best WordPress lead capture plugin to help you grow your email lists and connect with more customers? While WordPress doesn&#8217;t include any built-in features to capture leads beyond its user registration system, you can find dozens of useful plugins to help you capture leads in different ways and send them straight to your preferred CRM, email marketing service, webinar tool and more.</p>\n<p>In this post, we&#8217;ve sifted through your options to end up with a curated list of 10 of the best WordPress lead generation plugins. The plugins listed in this article allow you to create a lead capture form that integrates with popular services.</p>\n<p>Some help you create multiple forms spanning popups to inline forms, while others are focused on one specific form type, such as embedded forms or lead capture quizzes. Overall, you should be able to find an excellent option for your needs no matter what your budget is and which features you&#8217;re looking for. Let&#8217;s dive in!</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-154 fusion-sep-none fusion-title-text fusion-title-size-two linkColor\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\"><a href=\"https://www.hubspot.com/partners/wordpress/plugins/woocommerce-by-makewebbetter\" class=\"awb-custom-text-color awb-custom-text-hover-color\" target=\"_blank\">Overview</a></h2></div><div class=\"awb-toc-el awb-toc-el--8\" data-awb-toc-id=\"8\" data-awb-toc-options=\"{&quot;allowed_heading_tags&quot;:{&quot;h2&quot;:0},&quot;ignore_headings&quot;:&quot;&quot;,&quot;ignore_headings_words&quot;:&quot;Overview&quot;,&quot;enable_cache&quot;:&quot;yes&quot;,&quot;highlight_current_heading&quot;:&quot;no&quot;,&quot;hide_hidden_titles&quot;:&quot;yes&quot;,&quot;limit_container&quot;:&quot;post_content&quot;,&quot;select_custom_headings&quot;:&quot;&quot;,&quot;icon&quot;:&quot;fa-angle-right fal&quot;,&quot;counter_type&quot;:&quot;custom_icon&quot;}\" style=\"--awb-item-font-size:16px;--awb-item-line-height:1.672em;--awb-item-letter-spacing:0.005em;--awb-item-color:var(--awb-color8);--awb-item-color-hover:var(--awb-color5);--awb-item-bg-color-hover:rgba(101,189,125,0);--awb-counter-color:var(--awb-color6);--awb-hover-counter-color:var(--awb-color5);--awb-list-indent:15px;--awb-item-padding-top:3px;--awb-item-padding-right:0;--awb-item-padding-bottom:5px;--awb-item-padding-left:0;--awb-item-font-family:&quot;Basier Square Regular&quot;;--awb-item-font-style:normal;--awb-item-font-weight:400;\"><div class=\"awb-toc-el__content\"></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-155 fusion-sep-none fusion-title-text fusion-title-size-two linkColor\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\"><a href=\"https://www.hubspot.com/partners/wordpress/plugins/woocommerce-by-makewebbetter\" class=\"awb-custom-text-color awb-custom-text-hover-color\" target=\"_blank\">Hubspot</a></h2></div><div class=\"fusion-image-element \" style=\"--awb-liftup-border-radius:0px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><div class=\"awb-image-frame awb-image-frame-100 imageframe-liftup\"><span class=\" fusion-imageframe imageframe-none imageframe-100\" style=\"border:1px solid var(--awb-color3);\"><a class=\"fusion-no-lightbox\" href=\"https://www.hubspot.com/partners/wordpress/plugins/woocommerce-by-makewebbetter\" target=\"_blank\" aria-label=\"hubspot-lead-generation\" rel=\"noopener noreferrer\"><img decoding=\"async\" width=\"1291\" height=\"418\" alt=\"HibSpot &amp; WooCommerce\" src=\"https://avada.com/wp-content/uploads/2021/06/hubspot-lead-generation.jpeg\" class=\"img-responsive wp-image-888249\" srcset=\"https://avada.com/wp-content/uploads/2021/06/hubspot-lead-generation-200x65.jpeg 200w, https://avada.com/wp-content/uploads/2021/06/hubspot-lead-generation-400x130.jpeg 400w, https://avada.com/wp-content/uploads/2021/06/hubspot-lead-generation-600x194.jpeg 600w, https://avada.com/wp-content/uploads/2021/06/hubspot-lead-generation-800x259.jpeg 800w, https://avada.com/wp-content/uploads/2021/06/hubspot-lead-generation-1200x389.jpeg 1200w, https://avada.com/wp-content/uploads/2021/06/hubspot-lead-generation.jpeg 1291w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1291px\" /></a></span></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-96\"><p>HubSpot is an all-in-one CRM platform that can help you both capture leads and more effectively market or sell to them. The core of the plugin is the free HubSpot CRM, which gives you a spot to store your leads, track their activity, segment them as needed, and more.</p>\n<p>To capture leads, the HubSpot plugin gives you a drag-and-drop <a href=\"https://www.hubspot.com/products/marketing/web-forms\" target=\"_blank\" rel=\"noopener noreferrer\">form builder</a> to create custom forms, as well as a popup builder to display those forms anywhere on your site (<i>in addition to embedding the forms directly in your content</i>). As an alternative to using forms for lead generation, the HubSpot plugin also includes a live chat feature that lets you generate leads using chatbots. For example, you can initiate a conversation with a customer using your chatbot and then save those details in the HubSpot CRM.</p>\n<p>Once you have leads in your CRM, HubSpot can also help you engage them with a one-off or automated email marketing, marketing automation, and more.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div><div class=\"fusion-title title fusion-title-156 fusion-sep-none fusion-title-text fusion-title-size-three\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Key Features</h3></div><ul style=\"--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-25 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><span style=\"font-weight: 400;\">Capture leads with forms, popups, live chat, and more.</span></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><span style=\"font-weight: 400;\">Drag-and-drop form builder and popup builder to customize your designs.</span></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><span style=\"font-weight: 400;\">Built-in CRM to store your leads and manage relationships.</span></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><span style=\"font-weight: 400;\">Live chat feature, including support for chatbots to capture leads even when you&#8217;re not online.</span></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><span style=\"font-weight: 400;\">Full-service email marketing to send one-off or automatic emails. It&#8217;s a complete </span><a href=\"https://www.hubspot.com/products/marketing/email/best/mailchimp-alternatives\"><span style=\"font-weight: 400;\">alternative to Mailchimp</span></a><span style=\"font-weight: 400;\"> and other email marketing services.</span></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><span style=\"font-weight: 400;\">Marketing automation.</span></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><span style=\"font-weight: 400;\">Website analytics and lead activity tracking.</span></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><a href=\"https://www.hubspot.com/partners/wordpress/plugins/woocommerce-by-makewebbetter\"><span style=\"font-weight: 400;\">Dedicated WooCommerce integration plugin</span></a><span style=\"font-weight: 400;\"> to capture eCommerce leads and track shoppers&#8217; activity.</span></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-97\"><p><b>Price</b><span style=\"font-weight: 400;\">: The HubSpot WordPress plugin and CRM are free. There are optional upgrades to add more advanced marketing, sales, and service features.</span></p>\n</div></div></div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-88 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-157 fusion-sep-none fusion-title-text fusion-title-size-two linkColor\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\"><a href=\"https://avada.com/feature/form-builder/\" class=\"awb-custom-text-color awb-custom-text-hover-color\" target=\"_self\">Avada Form Builder</a></h2></div><div class=\"fusion-image-element \" style=\"--awb-liftup-border-radius:0px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><div class=\"awb-image-frame awb-image-frame-101 imageframe-liftup\"><span class=\" fusion-imageframe imageframe-none imageframe-101\" style=\"border:1px solid var(--awb-color3);\"><a class=\"fusion-no-lightbox\" href=\"https://avada.com/feature/form-builder/\" target=\"_self\" aria-label=\"Avada Form Builder\"><img decoding=\"async\" width=\"1900\" height=\"450\" alt=\"Avada Form Builder\" src=\"https://avada.com/wp-content/uploads/2023/07/avada-form-builder-post-leads-alt.jpg\" class=\"img-responsive wp-image-892887\" srcset=\"https://avada.com/wp-content/uploads/2023/07/avada-form-builder-post-leads-alt-200x47.jpg 200w, https://avada.com/wp-content/uploads/2023/07/avada-form-builder-post-leads-alt-400x95.jpg 400w, https://avada.com/wp-content/uploads/2023/07/avada-form-builder-post-leads-alt-600x142.jpg 600w, https://avada.com/wp-content/uploads/2023/07/avada-form-builder-post-leads-alt-800x189.jpg 800w, https://avada.com/wp-content/uploads/2023/07/avada-form-builder-post-leads-alt-1200x284.jpg 1200w, https://avada.com/wp-content/uploads/2023/07/avada-form-builder-post-leads-alt.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></a></span></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-98\"><p>The <a href=\"https://avada.com/feature/form-builder/\" target=\"_blank\" rel=\"noopener noreferrer\">Avada Form Builder</a> created exclusively in-house by the Avada team, with several essential facets in mind: Flexibility, control, and choice to eliminate the need for an additional 3rd party plugin to fulfill your marketing needs. Website owners can use forms for more than just a standard contact form; forms should work for you. Use them for marketing campaigns, lead generation, customer surveys, opinion polls, reservations, events, integration with the HubSpot CRM, and so much more.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div><div class=\"fusion-title title fusion-title-158 fusion-sep-none fusion-title-text fusion-title-size-three\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Key Features</h3></div><ul style=\"--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-26 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">Easily build multi-step forms</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">20+ Bespoke Design Elements</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>A vast array of styling options</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">Privacy is essential. You have full control over where your form data is sent or stored.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">Use the Notice Element in the Form Builder to display confirmation notices for your form upon submission, or redirect the form submission to a specified URL.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">Integration with the HubSpot CRM</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-99\"><p><strong>Price:</strong> Free, included with your purchase of <a href=\"https://1.envato.market/jKdLZ\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a>.</p>\n</div></div></div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-89 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-159 fusion-sep-none fusion-title-text fusion-title-size-two linkColor\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\"><a href=\"https://optinmonster.com/\" class=\"awb-custom-text-color awb-custom-text-hover-color\" target=\"_blank\">OptinMonster</a></h2></div><div class=\"fusion-image-element \" style=\"--awb-liftup-border-radius:0px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><div class=\"awb-image-frame awb-image-frame-102 imageframe-liftup\"><span class=\" fusion-imageframe imageframe-none imageframe-102\" style=\"border:1px solid var(--awb-color3);\"><a class=\"fusion-no-lightbox\" href=\"https://optinmonster.com/\" target=\"_blank\" aria-label=\"2-OptinMonster\" rel=\"noopener noreferrer\"><img decoding=\"async\" width=\"1600\" height=\"668\" alt=\"Optinmonster\" src=\"https://avada.com/wp-content/uploads/2021/06/2-OptinMonster.jpg\" class=\"img-responsive wp-image-888251\" srcset=\"https://avada.com/wp-content/uploads/2021/06/2-OptinMonster-200x84.jpg 200w, https://avada.com/wp-content/uploads/2021/06/2-OptinMonster-400x167.jpg 400w, https://avada.com/wp-content/uploads/2021/06/2-OptinMonster-600x251.jpg 600w, https://avada.com/wp-content/uploads/2021/06/2-OptinMonster-800x334.jpg 800w, https://avada.com/wp-content/uploads/2021/06/2-OptinMonster-1200x501.jpg 1200w, https://avada.com/wp-content/uploads/2021/06/2-OptinMonster.jpg 1600w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1600px\" /></a></span></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-100\"><p><span style=\"font-weight: 400;\">OptinMonster is a popular WordPress email opt-in plugin that you can use to create a variety of opt-in forms, including lightbox popups, sidebar widgets, full-screen fillers, and even gamified &#8220;spin the wheel&#8221; lead capture offers.</span></p>\n<p><span style=\"font-weight: 400;\">Technically, it&#8217;s a standalone SaaS lead generation tool, but you can easily integrate it with WordPress thanks to a dedicated WordPress integration plugin.</span></p>\n<p><span style=\"font-weight: 400;\">You can use a drag-and-drop builder to design your forms and you&#8217;ll be able to add email subscribers to the most popular CRMs and marketing services. You&#8217;ll also get lots of advanced targeting and trigger rules to control when to display your opt-ins to website visitors.</span></p>\n<p><span style=\"font-weight: 400;\">It&#8217;s pricey, but it&#8217;s also one of the most advanced WordPress opt-in plugins, which makes it a good option for serious marketers who are willing to invest in a tool with advanced targeting and trigger rules.</span></p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div><div class=\"fusion-title title fusion-title-160 fusion-sep-none fusion-title-text fusion-title-size-three\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Key Features</h3></div><ul style=\"--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-27 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><span style=\"font-weight: 400;\">8+ form types including popups, notification bars, inline forms, gamified wheels, and more.</span></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><span style=\"font-weight: 400;\">Drag-and-drop builder to customize your forms.</span></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><span style=\"font-weight: 400;\">Include advanced form elements, like countdown timers.</span></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><span style=\"font-weight: 400;\">Detailed targeting rules &#8211; target your forms to specific content or based on user behavior.</span></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><span style=\"font-weight: 400;\">Flexible trigger rules, including exit-intent triggering.</span></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><span style=\"font-weight: 400;\">Integration with WooCommerce (and other eCommerce platforms) to target forms based on the items in a user&#8217;s cart or the value of the cart.</span></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><span style=\"font-weight: 400;\">Integrations to add subscribers to most popular email marketing services, webinar tools, and CRMs including HubSpot, Mailchimp, AWeber, and more.</span></p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p><span style=\"font-weight: 400;\">Built-in A/B testing to optimize form conversion rates.</span></p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-101\"><p><b>Price</b><span style=\"font-weight: 400;\">: OptinMonster&#8217;s plans start at $108 per year for use on a single site, but you&#8217;ll need a higher-tier plan to access the more advanced features, targeting rules, and triggers.</span></p>\n</div></div></div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-90 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-161 fusion-sep-none fusion-title-text fusion-title-size-two linkColor\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\"><a href=\"https://wordpress.org/plugins/wordpress-popup/\" class=\"awb-custom-text-color awb-custom-text-hover-color\" target=\"_blank\">Hustle</a></h2></div><div class=\"fusion-image-element \" style=\"--awb-liftup-border-radius:0px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><div class=\"awb-image-frame awb-image-frame-103 imageframe-liftup\"><span class=\" fusion-imageframe imageframe-none imageframe-103\" style=\"border:1px solid var(--awb-color3);\"><a class=\"fusion-no-lightbox\" href=\"https://wordpress.org/plugins/wordpress-popup/\" target=\"_blank\" aria-label=\"7-Hustle\" rel=\"noopener noreferrer\"><img decoding=\"async\" width=\"1292\" height=\"418\" alt=\"Hustle Plugin\" src=\"https://avada.com/wp-content/uploads/2021/06/7-Hustle.jpg\" class=\"img-responsive wp-image-888252\" srcset=\"https://avada.com/wp-content/uploads/2021/06/7-Hustle-200x65.jpg 200w, https://avada.com/wp-content/uploads/2021/06/7-Hustle-400x129.jpg 400w, https://avada.com/wp-content/uploads/2021/06/7-Hustle-600x194.jpg 600w, https://avada.com/wp-content/uploads/2021/06/7-Hustle-800x259.jpg 800w, https://avada.com/wp-content/uploads/2021/06/7-Hustle-1200x388.jpg 1200w, https://avada.com/wp-content/uploads/2021/06/7-Hustle.jpg 1292w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1292px\" /></a></span></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-102\"><p>Hustle is a freemium WordPress lead capture plugin from WPMU DEV. It helps you create popups, notifications, inline forms, and more. You can target your forms to specific content on your site or embed them manually using a shortcode or block.</p>\n<p>To control the design, you can start from pre-built designs and then customize them using a simple (but not drag-and-drop) editor. Once you publish a form, you&#8217;ll get built-in analytics to track its performance.</p>\n<p>In addition to lead capture forms, Hustle can also help you create social media share buttons for most popular networks.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div><div class=\"fusion-title title fusion-title-162 fusion-sep-none fusion-title-text fusion-title-size-three\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Key Features</h3></div><ul style=\"--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-28 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>3+ form types including popups, embedded forms, and slide-ins.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>Pre-built templates and easy template customization.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>Target your lead generation forms to specific content and/or schedule them to run during certain times.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>Flexible trigger rules including exit-intent.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>Integrations with most popular email marketing services and CRMs, including HubSpot, MailerLite, Mailchimp, ConvertKit, and more. There&#8217;s also a Zapier integration.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>Social media share buttons.</p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-103\"><p><b>Price</b><span style=\"font-weight: 400;\">: Hustle gives you most features in its free version at WordPress.org, but limits the number of forms you can create. To create unlimited lead capture forms and access some other advanced features, the premium version starts at $60.</span></p>\n</div></div></div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-91 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-163 fusion-sep-none fusion-title-text fusion-title-size-two linkColor\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\"><a href=\"https://wordpress.org/plugins/optin-forms/\" class=\"awb-custom-text-color awb-custom-text-hover-color\" target=\"_blank\">Optin Forms</a></h2></div><div class=\"fusion-image-element \" style=\"--awb-liftup-border-radius:0px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><div class=\"awb-image-frame awb-image-frame-104 imageframe-liftup\"><span class=\" fusion-imageframe imageframe-none imageframe-104\" style=\"border:1px solid var(--awb-color3);\"><a class=\"fusion-no-lightbox\" href=\"https://wordpress.org/plugins/optin-forms/\" target=\"_blank\" aria-label=\"8-Optin-Forms\" rel=\"noopener noreferrer\"><img decoding=\"async\" width=\"1174\" height=\"380\" alt=\"Optin Forms\" src=\"https://avada.com/wp-content/uploads/2021/06/8-Optin-Forms.jpg\" class=\"img-responsive wp-image-888253\" srcset=\"https://avada.com/wp-content/uploads/2021/06/8-Optin-Forms-200x65.jpg 200w, https://avada.com/wp-content/uploads/2021/06/8-Optin-Forms-400x129.jpg 400w, https://avada.com/wp-content/uploads/2021/06/8-Optin-Forms-600x194.jpg 600w, https://avada.com/wp-content/uploads/2021/06/8-Optin-Forms-800x259.jpg 800w, https://avada.com/wp-content/uploads/2021/06/8-Optin-Forms.jpg 1174w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1174px\" /></a></span></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-104\"><p>Optin Forms is a simple free lead generation plugin for creating basic embedded forms. You can start from one of the 5+ pre-built templates and customize its text, colors, and CTA using a simple editor &#8211; no HTML or CSS required.</p>\n<p>You can integrate your forms with several popular email marketing services including Mailchimp, ConvertKit, MadMimi, GetResponse, and more. Then, you can embed them in your content using a shortcode or automatically add it to all posts/pages.</p>\n<p>Overall, it can be a good option if you just want basic inline forms and are looking for a free solution, but it lacks the advanced features that that many of the other plugins on this list offer.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div><div class=\"fusion-title title fusion-title-164 fusion-sep-none fusion-title-text fusion-title-size-three\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Key Features</h3></div><ul style=\"--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-29 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>Very simple plugin &#8211; good for people who need a basic solution.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>Create basic embedded/inline lead capture forms.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>5+ pre-built templates.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>Customize the template using a simple editor.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>Automatically add your form to posts/pages or embed it manually using a shortcode.</p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-105\"><p><b>Price</b><span style=\"font-weight: 400;\">: Optin Forms is 100% free.</span></p>\n</div></div></div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-92 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-165 fusion-sep-none fusion-title-text fusion-title-size-two linkColor\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\"><a href=\"https://wordpress.org/plugins/mailoptin/\" class=\"awb-custom-text-color awb-custom-text-hover-color\" target=\"_blank\">MailOptin</a></h2></div><div class=\"fusion-image-element \" style=\"--awb-liftup-border-radius:0px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><div class=\"awb-image-frame awb-image-frame-105 imageframe-liftup\"><span class=\" fusion-imageframe imageframe-none imageframe-105\" style=\"border:1px solid var(--awb-color3);\"><a class=\"fusion-no-lightbox\" href=\"https://wordpress.org/plugins/mailoptin/\" target=\"_blank\" aria-label=\"9-MailOptin\" rel=\"noopener noreferrer\"><img decoding=\"async\" width=\"1292\" height=\"418\" alt=\"MailOptin Plugin\" src=\"https://avada.com/wp-content/uploads/2021/06/9-MailOptin.jpg\" class=\"img-responsive wp-image-888254\" srcset=\"https://avada.com/wp-content/uploads/2021/06/9-MailOptin-200x65.jpg 200w, https://avada.com/wp-content/uploads/2021/06/9-MailOptin-400x129.jpg 400w, https://avada.com/wp-content/uploads/2021/06/9-MailOptin-600x194.jpg 600w, https://avada.com/wp-content/uploads/2021/06/9-MailOptin-800x259.jpg 800w, https://avada.com/wp-content/uploads/2021/06/9-MailOptin-1200x388.jpg 1200w, https://avada.com/wp-content/uploads/2021/06/9-MailOptin.jpg 1292w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1292px\" /></a></span></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-106\"><p>MailOptin is a popular freemium WordPress lead generation plugin that you can use to create popups, slide-ins, notification bars, inline forms, sidebar widgets, and more.</p>\n<p>You can start from pre-built templates and then customize them using a visual interface that works just like the native WordPress Customizer that most themes use. You&#8217;ll get page-level targeting to make sure the right visitors see your forms and you can use triggers to control when your forms appear.</p>\n<p>If you upgrade to the premium version, MailOptin can also help you send email newsletters without leaving your WordPress dashboard (though you&#8217;ll need to be using a compatible email marketing service).</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div><div class=\"fusion-title title fusion-title-166 fusion-sep-none fusion-title-text fusion-title-size-three\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Key Features</h3></div><ul style=\"--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-30 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>Create 5+ types of forms including embedded forms, popups (lightbox or modal), notification bars, slide-ins, and sidebar widgets.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>Customize templates using the real-time WordPress Customizer.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>Page-level targeting for your forms.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>User-specific targeting rules like referrer detection and new vs. returning visitors.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>Flexible triggers including exit-intent.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>Built-in A/B testing.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>Integrates with most popular CRMs and email marketing services including HubSpot, Mailchimp, AWeber, Keap, Drip, Sendinblue, and more.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>Send newsletters from your WordPress dashboard (if you&#8217;re using a compatible email marketing service).</p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-107\"><p><b>Price</b><span style=\"font-weight: 400;\">: MailOptin has a basic free version at WordPress.org. To unlock all of the features, the premium pricing starts at $79 for all of the lead generation functionality. To access the newsletter feature, you need the $199 Pro license.</span></p>\n</div></div></div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-93 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-167 fusion-sep-none fusion-title-text fusion-title-size-two linkColor\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\"><a href=\"https://wordpress.org/plugins/wpforms-lite/\" class=\"awb-custom-text-color awb-custom-text-hover-color\" target=\"_blank\">WPForms</a></h2></div><div class=\"fusion-image-element \" style=\"--awb-liftup-border-radius:0px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><div class=\"awb-image-frame awb-image-frame-106 imageframe-liftup\"><span class=\" fusion-imageframe imageframe-none imageframe-106\" style=\"border:1px solid var(--awb-color3);\"><a class=\"fusion-no-lightbox\" href=\"https://wordpress.org/plugins/wpforms-lite/\" target=\"_blank\" aria-label=\"10-WPForms\" rel=\"noopener noreferrer\"><img decoding=\"async\" width=\"1292\" height=\"418\" alt=\"WPForms Plugin\" src=\"https://avada.com/wp-content/uploads/2021/06/10-WPForms.jpg\" class=\"img-responsive wp-image-888255\" srcset=\"https://avada.com/wp-content/uploads/2021/06/10-WPForms-200x65.jpg 200w, https://avada.com/wp-content/uploads/2021/06/10-WPForms-400x129.jpg 400w, https://avada.com/wp-content/uploads/2021/06/10-WPForms-600x194.jpg 600w, https://avada.com/wp-content/uploads/2021/06/10-WPForms-800x259.jpg 800w, https://avada.com/wp-content/uploads/2021/06/10-WPForms-1200x388.jpg 1200w, https://avada.com/wp-content/uploads/2021/06/10-WPForms.jpg 1292w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1292px\" /></a></span></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-text fusion-text-108\"><p>WPForms is a popular WordPress form plugin. The free version makes a great option for basic contact forms, but if you upgrade to the premium version you can use it for WordPress lead capture forms thanks to its advanced form fields and integrations with external CRMs, email marketing services, and more.</p>\n<p>Overall, WP Forms can be a good option if you want to create lengthier, more complicated lead capture forms, rather than simple one or two-field forms.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div><div class=\"fusion-title title fusion-title-168 fusion-sep-none fusion-title-text fusion-title-size-three\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Key Features</h3></div><ul style=\"--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-31 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>Drag-and-drop form builder.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>Add unlimited fields and choose from a variety of field types.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>Integrations with most popular email marketing services and CRMs, including HubSpot and Salesforce.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>Zapier integration to connect to any one of the thousands of apps on Zapier.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>Customize form notifications and confirmations as needed.</p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-109\"><p><b>Price</b><span style=\"font-weight: 400;\">: The core WPForms plugin is available for free at WordPress.org, but you&#8217;ll probably want the premium version to capture leads. Paid plans start from $39.50.</span></p>\n</div></div></div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-94 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-169 fusion-sep-none fusion-title-text fusion-title-size-two linkColor\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\"><a href=\"https://wordpress.org/plugins/holler-box/\" class=\"awb-custom-text-color awb-custom-text-hover-color\" target=\"_blank\">Holler Box</a></h2></div><div class=\"fusion-image-element \" style=\"--awb-liftup-border-radius:0px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><div class=\"awb-image-frame awb-image-frame-107 imageframe-liftup\"><span class=\" fusion-imageframe imageframe-none imageframe-107\" style=\"border:1px solid var(--awb-color3);\"><a class=\"fusion-no-lightbox\" href=\"https://wordpress.org/plugins/holler-box/\" target=\"_blank\" aria-label=\"11-Holler-Forms\" rel=\"noopener noreferrer\"><img decoding=\"async\" width=\"1292\" height=\"418\" alt=\"Holler Box Plugin\" src=\"https://avada.com/wp-content/uploads/2021/06/11-Holler-Forms.jpg\" class=\"img-responsive wp-image-888256\" srcset=\"https://avada.com/wp-content/uploads/2021/06/11-Holler-Forms-200x65.jpg 200w, https://avada.com/wp-content/uploads/2021/06/11-Holler-Forms-400x129.jpg 400w, https://avada.com/wp-content/uploads/2021/06/11-Holler-Forms-600x194.jpg 600w, https://avada.com/wp-content/uploads/2021/06/11-Holler-Forms-800x259.jpg 800w, https://avada.com/wp-content/uploads/2021/06/11-Holler-Forms-1200x388.jpg 1200w, https://avada.com/wp-content/uploads/2021/06/11-Holler-Forms.jpg 1292w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1292px\" /></a></span></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-110\"><p>Holler Box is a lightweight WordPress lead capture plugin that helps you add unobtrusive slide-in forms to capture leads without getting the way of users experiencing your site. You can also use it to create more traditional popups, but its most unique feature is definitely how it approaches slide-ins.</p>\n<p>You can create unlimited forms and use targeting and trigger rules to control exactly where and when they display. You&#8217;ll be able to customize your forms using a simple editor and then automatically add subscribers to popular services such as Mailchimp, Drip, ConvertKit, and more. All in all, Holler Box can be a good option for simple, unobtrusive opt-in forms.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div><div class=\"fusion-title title fusion-title-170 fusion-sep-none fusion-title-text fusion-title-size-three\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Key Features</h3></div><ul style=\"--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-32 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>Create unobtrusive slide-ins or popups.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>Integrates with Mailchimp, Drip, ConvertKit, and some other popular services.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>Choose from three templates and customize them using a simple editor.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>Target your lead capture forms to specific content.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>Use triggers to control when to display offers, including exit-intent.</p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-111\"><p><b>Price</b><span style=\"font-weight: 400;\">: Holler Box has a free version at WordPress.org. To access more advanced features like advanced targeting rules and scheduling, the premium pricing starts at $79.</span></p>\n</div></div></div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-95 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-171 fusion-sep-none fusion-title-text fusion-title-size-two linkColor\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\"><a href=\"https://wordpress.org/plugins/quiz-master-next/\" class=\"awb-custom-text-color awb-custom-text-hover-color\" target=\"_blank\">Quiz and Survey Master</a></h2></div><div class=\"fusion-image-element \" style=\"--awb-liftup-border-radius:0px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><div class=\"awb-image-frame awb-image-frame-108 imageframe-liftup\"><span class=\" fusion-imageframe imageframe-none imageframe-108\" style=\"border:1px solid var(--awb-color3);\"><a class=\"fusion-no-lightbox\" href=\"https://wordpress.org/plugins/quiz-master-next/\" target=\"_blank\" aria-label=\"12-Quiz-and-Survey-Mastery\" rel=\"noopener noreferrer\"><img decoding=\"async\" width=\"1292\" height=\"418\" alt=\"Quiz and Survey Master Plugin\" src=\"https://avada.com/wp-content/uploads/2021/06/12-Quiz-and-Survey-Mastery.jpg\" class=\"img-responsive wp-image-888257\" srcset=\"https://avada.com/wp-content/uploads/2021/06/12-Quiz-and-Survey-Mastery-200x65.jpg 200w, https://avada.com/wp-content/uploads/2021/06/12-Quiz-and-Survey-Mastery-400x129.jpg 400w, https://avada.com/wp-content/uploads/2021/06/12-Quiz-and-Survey-Mastery-600x194.jpg 600w, https://avada.com/wp-content/uploads/2021/06/12-Quiz-and-Survey-Mastery-800x259.jpg 800w, https://avada.com/wp-content/uploads/2021/06/12-Quiz-and-Survey-Mastery-1200x388.jpg 1200w, https://avada.com/wp-content/uploads/2021/06/12-Quiz-and-Survey-Mastery.jpg 1292w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1292px\" /></a></span></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-112\"><p>Quiz And Survey Master is a unique WordPress lead capture plugin in that it helps you capture leads using interactive quizzes, rather than popups or other types of opt-in forms.</p>\n<p>You can create a serious quiz or a whimsical personality quiz (Buzzfeed-style). Then, once people have filled out the quiz, you can ask them to enter their personal details in order to get the results. Or, you can give them the results, but add a call to action to join your list. All in all, Quiz And Survey Master is an interesting option if you want to experiment with using quizzes to capture leads.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div><div class=\"fusion-title title fusion-title-172 fusion-sep-none fusion-title-text fusion-title-size-three\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Key Features</h3></div><ul style=\"--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-33 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>Create quizzes using a simple builder.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>Works for serious quizzes or more viral personality-style quizzes.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>Add a CTA to join your list or require people to enter their information to receive results.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>Integrates with Mailchimp, Campaign Monitor, and more. There&#8217;s also a catch-all Zapier integration.</p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-113\"><p><b>Price</b><span style=\"font-weight: 400;\">: Quiz And Survey Master has a free version at WordPress.org, but you&#8217;ll probably want the premium add-ons for lead generation. You can purchase individual add-ons or bundles starting at $79.</span></p>\n</div></div></div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-96 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-173 fusion-sep-none fusion-title-text fusion-title-size-two linkColor\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\"><a href=\"https://www.chatbot.com/\" class=\"awb-custom-text-color awb-custom-text-hover-color\" target=\"_blank\">ChatBot</a></h2></div><div class=\"fusion-image-element \" style=\"--awb-liftup-border-radius:0px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><div class=\"awb-image-frame awb-image-frame-109 imageframe-liftup\"><span class=\" fusion-imageframe imageframe-none imageframe-109\" style=\"border:1px solid var(--awb-color3);\"><a class=\"fusion-no-lightbox\" href=\"https://www.chatbot.com/\" target=\"_blank\" aria-label=\"ChatBot Lead Capture\" rel=\"noopener noreferrer\"><img decoding=\"async\" width=\"1900\" height=\"450\" alt=\"ChatBot Capture &amp; Convert\" src=\"https://avada.com/wp-content/uploads/2023/07/chatbot-lead-capture-post.jpg\" class=\"img-responsive wp-image-892888\" srcset=\"https://avada.com/wp-content/uploads/2023/07/chatbot-lead-capture-post-200x47.jpg 200w, https://avada.com/wp-content/uploads/2023/07/chatbot-lead-capture-post-400x95.jpg 400w, https://avada.com/wp-content/uploads/2023/07/chatbot-lead-capture-post-600x142.jpg 600w, https://avada.com/wp-content/uploads/2023/07/chatbot-lead-capture-post-800x189.jpg 800w, https://avada.com/wp-content/uploads/2023/07/chatbot-lead-capture-post-1200x284.jpg 1200w, https://avada.com/wp-content/uploads/2023/07/chatbot-lead-capture-post.jpg 1900w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1900px\" /></a></span></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-114\"><p>ChatBot is an excellent AI chatbot software that allows you to use automated live chat to connect with potential customers and respond to customer queries 24/7.</p>\n<p>Getting started quickly and easily, and ChatBot has many pre-designed templates. For example, you can use the lead generation bot to book calls, and the sales bot template allows you to sell products directly from the chat window.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div><div class=\"fusion-title title fusion-title-174 fusion-sep-none fusion-title-text fusion-title-size-three\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Key Features</h3></div><ul style=\"--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-34 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">An <a href=\"https://www.chatbot.com/ai/\" target=\"_blank\" rel=\"noopener noreferrer\">AI</a> model that can scan a designated resource to generate relevant answers to user questions.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">No-code chatbot builder</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">Chatbot testing tool</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">Customizable chat widget</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">Prebuilt templates</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">Connect with users across channels like LiveChat, Messenger, and Slack</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-115\"><p><b>Pricing</b>: starts at $52 per month. There’s a 14-day free trial available.</p>\n</div></div></div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-97 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-175 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Summary</h2></div><div class=\"fusion-text fusion-text-116\"><p>All of these plugins can help you start generating more leads from your <a href=\"https://1.envato.market/jKdLZ\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> website. If you don&#8217;t already have a tool to store those leads, the HubSpot plugin can be a great option because it helps you not only capture leads via forms, popups, and live chat, but also store those leads automatically in the <a href=\"https://www.hubspot.com/products/crm\" target=\"_blank\" rel=\"noopener noreferrer\">HubSpot CRM</a>.</p>\n<p>Or, if you already have a CRM or email marketing service that you&#8217;re using, you can consider one of the standalone tools, as long as it has an integration for the service that you&#8217;re using (or a catch-all Zapier integration).</p>\n<p>Do you still have any questions about choosing the best WordPress lead capture plugin for your needs? Leave a comment!</p>\n</div></div></div></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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://avada.com/blog/10-best-wordpress-lead-capture-plugins-for-wordpress-in-2023/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:8;a:6:{s:4:\"data\";s:85:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"How to Use WPML to Translate a Website Created with Avada and ACF\";s:7:\"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://avada.com/blog/how-to-use-wpml-to-translate-a-website-created-with-avada-and-acf/\";s: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:97:\"https://avada.com/blog/how-to-use-wpml-to-translate-a-website-created-with-avada-and-acf/#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, 20 Jul 2023 14:10: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:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:7:\"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:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"ACF\";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:\"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:3;a:5:{s:4:\"data\";s:11:\"Setup 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:4;a:5:{s:4:\"data\";s:4:\"WPML\";s:7:\"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:24:\"https://avada.com/blog//\";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:332:\"You can build a dynamic and engaging WordPress website with Avada and the ACF (Advanced Custom Fields) plugin. However, to make your website accessible to a global audience, it is smart to translate the content, as explained in how to set up a multilingual website with Avada and WPML. With WPML (WordPress Multilingual) and the ...\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"michaelb\";s: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:27449:\"<div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-89 fusion-flex-container has-pattern-background has-mask-background nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-98 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-text fusion-text-117\"><p>You can build a <a href=\"https://avada.com/documentation/how-to-use-acf-pro-with-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">dynamic and engaging WordPress website</a> with <a href=\"https://1.envato.market/jKdLZ\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> and the <a href=\"https://avada.com/for-professionals/\" target=\"_blank\" rel=\"noopener noreferrer\">ACF</a> (Advanced Custom Fields) plugin. However, to make your website accessible to a global audience, it is smart to translate the content, as explained in how to set up a <a href=\"https://avada.com/blog/how-to-build-a-multilingual-website-in-minutes-using-avada-and-wpml/\" target=\"_blank\" rel=\"noopener noreferrer\">multilingual website with Avada and WPML</a>.</p>\n<p>With <a href=\"https://wpml.org/?aid=38405&amp;affiliate_key=DYLA9bEPLvPY&amp;dr=avada_theme\" target=\"_blank\" rel=\"noopener noreferrer\">WPML</a> (WordPress Multilingual) and the <a href=\"https://wpml.org/documentation/related-projects/translate-sites-built-with-acf/\" target=\"_blank\" rel=\"noopener noreferrer\">ACFML</a> (Advanced Custom Fields Multilingual) add-on, you can translate every part of your website, including content from your ACF custom fields.</p>\n<p>This tutorial will discuss the most straightforward way to translate the custom fields. By the end, you&#8217;ll have a fully multilingual website that dynamically displays ACF fields in all chosen languages.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-title title fusion-title-176 fusion-sep-none fusion-title-text fusion-title-size-two awb-exclude-from-toc\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Overview</h2></div><div class=\"awb-toc-el awb-toc-el--9\" data-awb-toc-id=\"9\" data-awb-toc-options=\"{&quot;allowed_heading_tags&quot;:{&quot;h2&quot;:0,&quot;h3&quot;:1},&quot;ignore_headings&quot;:&quot;&quot;,&quot;ignore_headings_words&quot;:&quot;Overview&quot;,&quot;enable_cache&quot;:&quot;yes&quot;,&quot;highlight_current_heading&quot;:&quot;no&quot;,&quot;hide_hidden_titles&quot;:&quot;yes&quot;,&quot;limit_container&quot;:&quot;post_content&quot;,&quot;select_custom_headings&quot;:&quot;&quot;,&quot;icon&quot;:&quot;fa-angle-right fal&quot;,&quot;counter_type&quot;:&quot;custom_icon&quot;}\" style=\"--awb-item-font-size:var(--awb-typography4-font-size);--awb-item-line-height:var(--awb-typography4-line-height);--awb-item-letter-spacing:var(--awb-typography4-letter-spacing);--awb-item-text-transform:var(--awb-typography4-text-transform);--awb-item-color:var(--awb-color8);--awb-item-color-hover:var(--awb-color5);--awb-item-bg-color-hover:rgba(101,189,125,0);--awb-counter-color:var(--awb-color6);--awb-hover-counter-color:var(--awb-color5);--awb-list-indent:15px;--awb-item-padding-top:3px;--awb-item-padding-right:0;--awb-item-padding-bottom:5px;--awb-item-padding-left:0;--awb-item-font-family:var(--awb-typography4-font-family);--awb-item-font-weight:var(--awb-typography4-font-weight);--awb-item-font-style:var(--awb-typography4-font-style);\"><div class=\"awb-toc-el__content\"></div></div>\n<div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-title title fusion-title-177 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">What You&#8217;ll Need</h2></div><div class=\"fusion-text fusion-text-118\"><p>Before you begin, you will need to install and activate the following plugins on your Avada-powered website:</p>\n</div><ul style=\"--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-35 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://www.advancedcustomfields.com/pro/\">ACF Pro (Advanced Custom Fields)</a></div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://wpml.org/?aid=38405&amp;affiliate_key=DYLA9bEPLvPY&amp;dr=avada_theme\">WPML</a> core plugin and the WPML String Translation add-on</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-check fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://wpml.org/documentation/related-projects/translate-sites-built-with-acf/\">ACFML</a> (Advanced Custom Fields Multilingual)</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-119\"><p>The ACFML glue plugin bridges WPML and ACF and comes with all WPML Multilingual CMS and Multilingual Agency account types. You can find this add-on in the <a href=\"https://wpml.org/account/downloads/\">Downloads section of your WPML account</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div><div class=\"fusion-alert alert custom alert-custom fusion-alert-left awb-alert-inherit-link-color\" style=\"--awb-background-color:#d7efef;--awb-accent-color:#666666;--awb-border-size:1px;--awb-border-top-left-radius:5px;--awb-border-top-right-radius:5px;--awb-border-bottom-left-radius:5px;--awb-border-bottom-right-radius:5px;\" role=\"alert\"><div class=\"fusion-alert-content-wrapper\"><span class=\"alert-icon\"><i class=\"fa-quote-left fal\" aria-hidden=\"true\"></i></span><span class=\"fusion-alert-content\">The plugins suggested in this article do require a purchase. However, WPML and the ACFML work as expected with the free version of the ACF plugin.</span></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-title title fusion-title-178 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Translating the ACF Fields With the ACFML Add-on</h2></div><div class=\"fusion-text fusion-text-120\"><p>To illustrate how simple it is to translate the ACF content on your <a href=\"https://1.envato.market/jKdLZ\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a> website with <a href=\"https://wpml.org/?aid=38405&amp;affiliate_key=DYLA9bEPLvPY&amp;dr=avada_theme\" target=\"_blank\" rel=\"noopener noreferrer\">WPML</a>, we’ve set up a <b>Portfolio Posts</b> field group with five different types of subfields:</p>\n</div><ul style=\"--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-36 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>A <b>Text</b> field for the project title</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>A <b>Text Area</b> field for the project description</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>An <b>Image</b> field for the project photo</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>A <b>Select</b> field to display the type of project</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>A <b>URL</b> field to link to a PDF with more information about the project</p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-121\"><p>In the <b>Rules</b> field, we set this field group to appear on posts belonging to the <b>Portfolio</b> post type. Then, we created a <b>Portfolio</b> post using ACF fields in conjunction with <b>Dynamic Content</b> options in Avada. If you need a refresher on how to do this, check out the post about <a href=\"https://avada.com/documentation/how-to-use-acf-pro-with-avada/\" target=\"_blank\" rel=\"noopener noreferrer\">using ACF Pro with Avada</a>.</p>\n<p>Let’s get started with using ACFML to make these custom fields multilingual.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-title title fusion-title-179 fusion-sep-none fusion-title-text fusion-title-size-three\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Set the Translation Option for Your Field Group</h3></div><div class=\"fusion-text fusion-text-122\"><p>Advanced Custom Fields Multilingual (ACFML) has a one-step <strong>Multilingual Setup</strong> that integrates directly with the <strong>ACF Field Group</strong> edit screen. This allows you to decide how you want to translate and display your custom fields across the different languages of your site. Depending on the complexity of your field setup, you can choose between <a href=\"https://wpml.org/documentation/related-projects/translate-sites-built-with-acf/#selecting-a-translation-option\" target=\"_blank\" rel=\"noopener noreferrer\">three other translation options</a>.</p>\n<p>To set the translation option for your field group, go to <strong>ACF → Field Groups</strong> and <strong>Edit</strong> your field group. The <strong>Multilingual Setup</strong> appears at the top of the page.</p>\n</div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-110 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><a href=\"https://avada.com/wp-content/uploads/2023/07/wpml-acfml-multilingual-setup.png\" class=\"fusion-lightbox\" data-rel=\"iLightbox[d9f01192476d57a4997]\" data-title=\"wpml-acfml-multilingual-setup\" title=\"wpml-acfml-multilingual-setup\"><img decoding=\"async\" width=\"1751\" height=\"1114\" src=\"https://avada.com/wp-content/uploads/2023/07/wpml-acfml-multilingual-setup.png\" alt class=\"img-responsive wp-image-892847\" srcset=\"https://avada.com/wp-content/uploads/2023/07/wpml-acfml-multilingual-setup-200x127.png 200w, https://avada.com/wp-content/uploads/2023/07/wpml-acfml-multilingual-setup-400x254.png 400w, https://avada.com/wp-content/uploads/2023/07/wpml-acfml-multilingual-setup-600x382.png 600w, https://avada.com/wp-content/uploads/2023/07/wpml-acfml-multilingual-setup-800x509.png 800w, https://avada.com/wp-content/uploads/2023/07/wpml-acfml-multilingual-setup-1200x763.png 1200w, https://avada.com/wp-content/uploads/2023/07/wpml-acfml-multilingual-setup.png 1751w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1751px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-text fusion-text-123\"><p>Suppose you&#8217;re working with an advanced setup that uses <strong>Repeater</strong> or <strong>Flexible Content</strong> fields. In that case, you may use a different layout or use a different number of fields across languages. If so, you can use the <strong>Different Fields Across Languages</strong> translation option and translate your content using the native WordPress editor.</p>\n<p>In our case, we have a simple setup and want to translate the field values. So, we&#8217;ll select the <strong>Same Fields Across Languages</strong> translation option and hit the <strong>Save Changes</strong> button.</p>\n</div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-111 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><a href=\"https://avada.com/wp-content/uploads/2023/07/wpml-avada-acf-field-group-translation-settings.png\" class=\"fusion-lightbox\" data-rel=\"iLightbox[28ee84e8080ab2d0b0d]\" data-title=\"wpml-avada-acf-field-group-translation-settings\" title=\"wpml-avada-acf-field-group-translation-settings\"><img decoding=\"async\" width=\"2184\" height=\"1524\" src=\"https://avada.com/wp-content/uploads/2023/07/wpml-avada-acf-field-group-translation-settings.png\" alt class=\"img-responsive wp-image-892848\" srcset=\"https://avada.com/wp-content/uploads/2023/07/wpml-avada-acf-field-group-translation-settings-200x140.png 200w, https://avada.com/wp-content/uploads/2023/07/wpml-avada-acf-field-group-translation-settings-400x279.png 400w, https://avada.com/wp-content/uploads/2023/07/wpml-avada-acf-field-group-translation-settings-600x419.png 600w, https://avada.com/wp-content/uploads/2023/07/wpml-avada-acf-field-group-translation-settings-800x558.png 800w, https://avada.com/wp-content/uploads/2023/07/wpml-avada-acf-field-group-translation-settings-1200x837.png 1200w, https://avada.com/wp-content/uploads/2023/07/wpml-avada-acf-field-group-translation-settings.png 2184w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 2184px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-180 fusion-sep-none fusion-title-text fusion-title-size-three\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Translate the Post and Field Values</h3></div><div class=\"fusion-text fusion-text-124\"><p>Once you select the <strong>Same Fields Across Languages</strong> translation option, you can translate the custom field values and post content using either of WPML&#8217;s translation modes.</p>\n</div><ul style=\"--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-37 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://wpml.org/documentation/getting-started-guide/#translate-some\" target=\"_blank\" rel=\"noopener noreferrer\">Translating What You Choose</a> allows you to decide what and who will translate it. You can translate content by yourself, automatically translate posts and pages of your choice, or send your content for translation to professional translators.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-circle-right fal\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\"><a href=\"https://wpml.org/documentation/getting-started-guide/#translate-everything\" target=\"_blank\" rel=\"noopener noreferrer\">Translate Everything Automatically</a> uses automatic translation to translate your site&#8217;s content as soon as you publish it. This mode lets you <a href=\"https://avada.com/blog/how-to-build-a-multilingual-website-in-minutes-using-avada-and-wpml/\" target=\"_blank\" rel=\"noopener noreferrer\">translate your Avada</a> website in minutes and is compatible with ACF (Advanced Custom Fields).</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-125\"><p>Head to <strong>WPML → Settings</strong> for this tutorial and select the <strong>Translate What You Choose</strong> mode. This option lets you translate the post content and ACF content using the Advanced Translation Editor, WPML&#8217;s built-in computer-assisted translation (CAT) tool.</p>\n<p>The Advanced Translation editor presents a straightforward, user-friendly interface, making it simple for anyone to translate content. Additionally, it separates original content from translated content, so you can easily see what you&#8217;re translating.</p>\n<p>To get started, head to the editing screen of the post type your custom fields are attached to. From the <strong>Language</strong> box in the right sidebar, click the plus icon next to the language you want to translate your post into.</p>\n</div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-112 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><a href=\"https://avada.com/wp-content/uploads/2023/07/wpml-avada-portfolio-acf-plus-icon.png\" class=\"fusion-lightbox\" data-rel=\"iLightbox[d3f0fb013a3c41e37f7]\" data-title=\"wpml-avada-portfolio-acf-plus-icon\" title=\"wpml-avada-portfolio-acf-plus-icon\"><img decoding=\"async\" width=\"2144\" height=\"1318\" src=\"https://avada.com/wp-content/uploads/2023/07/wpml-avada-portfolio-acf-plus-icon.png\" alt class=\"img-responsive wp-image-892849\" srcset=\"https://avada.com/wp-content/uploads/2023/07/wpml-avada-portfolio-acf-plus-icon-200x123.png 200w, https://avada.com/wp-content/uploads/2023/07/wpml-avada-portfolio-acf-plus-icon-400x246.png 400w, https://avada.com/wp-content/uploads/2023/07/wpml-avada-portfolio-acf-plus-icon-600x369.png 600w, https://avada.com/wp-content/uploads/2023/07/wpml-avada-portfolio-acf-plus-icon-800x492.png 800w, https://avada.com/wp-content/uploads/2023/07/wpml-avada-portfolio-acf-plus-icon-1200x738.png 1200w, https://avada.com/wp-content/uploads/2023/07/wpml-avada-portfolio-acf-plus-icon.png 2144w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 2144px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-126\"><p>This takes you to the <strong>Advanced Translation Editor</strong>. If you have translation credits, you can click the <strong>Translate Automatically</strong> button to translate the post content and the values of the custom fields using automatic translation. If not, enter the translations for each line manually.</p>\n</div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-113 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><a href=\"https://avada.com/wp-content/uploads/2023/07/wpml-avada-acf-advanced-translation-editor.png\" class=\"fusion-lightbox\" data-rel=\"iLightbox[fbf91492b14186fd797]\" data-title=\"wpml-avada-acf-advanced-translation-editor\" title=\"wpml-avada-acf-advanced-translation-editor\"><img decoding=\"async\" width=\"2358\" height=\"1292\" src=\"https://avada.com/wp-content/uploads/2023/07/wpml-avada-acf-advanced-translation-editor.png\" alt class=\"img-responsive wp-image-892850\" srcset=\"https://avada.com/wp-content/uploads/2023/07/wpml-avada-acf-advanced-translation-editor-200x110.png 200w, https://avada.com/wp-content/uploads/2023/07/wpml-avada-acf-advanced-translation-editor-400x219.png 400w, https://avada.com/wp-content/uploads/2023/07/wpml-avada-acf-advanced-translation-editor-600x329.png 600w, https://avada.com/wp-content/uploads/2023/07/wpml-avada-acf-advanced-translation-editor-800x438.png 800w, https://avada.com/wp-content/uploads/2023/07/wpml-avada-acf-advanced-translation-editor-1200x658.png 1200w, https://avada.com/wp-content/uploads/2023/07/wpml-avada-acf-advanced-translation-editor.png 2358w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 2358px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-127\"><p>When you’re happy with your translations, hit the <b>Complete</b> button.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-title title fusion-title-181 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">The Result</h2></div><div class=\"fusion-text fusion-text-128\"><p>You&#8217;ve translated your post content and ACF values into your site&#8217;s secondary language in just a few simple steps. Using WPML to translate a post from your default language creates a new post in your secondary language. You don&#8217;t have to set the dynamic content options for your secondary language post; you don&#8217;t need to connect it to your default language post. WPML takes care of all of this for you.</p>\n<p>So, all that&#8217;s left to do is view your translations on the front end.</p>\n</div><div class=\"fusion-image-before-after-wrapper fusion-image-before-after-horizontal type-before-after hover-type-individual fusion-image-before-after-wrapper-1\" style=\"--awb-font-size:13px;--awb-bordersize:1px;--awb-bordercolor:var(--awb-color2);--awb-accent-color-bg:hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 85%));--awb-transition-time:0.5s;\"><div class=\"fusion-image-before-after-element fusion-image-before-after fusion-image-before-after-container fusion-image-before-after-1\" data-offset=\"0.5\" data-orientation=\"horizontal\" data-move-with-handle-only=\"true\" data-click-to-move=\"true\"><img class=\"fusion-image-before-after-before\" src=\"https://avada.com/wp-content/uploads/2023/07/wpml-post-image-english.jpg\" width=\"1000\" height=\"832\"><img class=\"fusion-image-before-after-after\" src=\"https://avada.com/wp-content/uploads/2023/07/wpml-post-image-spanish.jpg\" width=\"1000\" height=\"832\"><div class=\"fusion-image-before-after-handle fusion-image-before-after-handle-default\"><span class=\"fusion-image-before-after-left-arrow\"></span><span class=\"fusion-image-before-after-right-arrow\"></span></div></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-title title fusion-title-182 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">In Summary</h2></div><div class=\"fusion-text fusion-text-129\"><p>When used together, <a href=\"https://1.envato.market/jKdLZ\" target=\"_blank\" rel=\"noopener noreferrer\">Avada</a>, <a href=\"https://www.advancedcustomfields.com/pro/\">ACF Pro</a>, and <a href=\"https://wpml.org/?aid=38405&amp;affiliate_key=DYLA9bEPLvPY&amp;dr=avada_theme\">WPML</a> offer a user-friendly way to dynamically display content in your chosen languages – all without the need for complex coding. Additionally, you can choose from various methods to translate your content, including automatic translation.</p>\n<p>In no time, you can have a fully functional, multilingual website that transcends language barriers and connects with a global audience.</p>\n</div></div></div></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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://avada.com/blog/how-to-use-wpml-to-translate-a-website-created-with-avada-and-acf/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:9;a:6:{s:4:\"data\";s:85:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"How to Build a Multilingual Website in Minutes Using Avada and WPML\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://avada.com/blog/how-to-build-a-multilingual-website-in-minutes-using-avada-and-wpml/\";s: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:99:\"https://avada.com/blog/how-to-build-a-multilingual-website-in-minutes-using-avada-and-wpml/#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:\"Mon, 17 Jul 2023 11:00:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:13:\"Avada Builder\";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:11:\"Setup 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:4;a:5:{s:4:\"data\";s:4:\"WPML\";s:7:\"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=873509\";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:315:\"We invited the WPML team to demonstrate how to set up a multilingual website that caters to all of your audiences, no matter what language they speak. This article will cover three quick and easy steps to creating a website using Avada and WPML. To get started, we’ll import one of the stunning Avada prebuilt ...\";s: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:\"schanteldwl\";s: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:46385:\"<div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-90 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1331.2px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-99 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:20px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-text fusion-text-130\" style=\"--awb-text-transform:none;\"><p>We invited the WPML team to demonstrate how to set up a multilingual website that caters to all of your audiences, no matter what language they speak. This article will cover three quick and easy steps to creating a website using <a href=\"https://1.envato.market/jKdLZ\">Avada</a> and <a href=\"https://wpml.org/?aid=38405&amp;affiliate_key=DYLA9bEPLvPY\">WPML</a>.</p>\n<p>To get started, we’ll import one of the stunning <a href=\"https://avada.com/prebuilt-websites/\">Avada prebuilt websites</a> – which are ideal for beginners and professionals alike. They can be imported at the click of a button and then fully adapted to meet the needs of your company or brand.</p>\n<p>Using WPML’s option to translate your WordPress website automatically, we’ll then show you how you can turn your website into a multilingual powerhouse in minutes.</p>\n</div><div style=\"--awb-popover-text-color:#515151;\" class=\"awb-image-hotspots awb-image-hotspots-1\"><div class=\"awb-image-hotspots-wrapper\"><img src=\"https://avada.com/wp-content/uploads/2021/10/Winery-Home-Page-Translated.png\" alt=\"Avada Winery\" width=\"2846\" height=\"1532\" title=\"Avada Winery\" class=\"awb-image-hotspots-image wp-image-887966\" srcset=\"https://avada.com/wp-content/uploads/2021/10/Winery-Home-Page-Translated-200x108.png 200w, https://avada.com/wp-content/uploads/2021/10/Winery-Home-Page-Translated-300x161.png 300w, https://avada.com/wp-content/uploads/2021/10/Winery-Home-Page-Translated-400x215.png 400w, https://avada.com/wp-content/uploads/2021/10/Winery-Home-Page-Translated-600x323.png 600w, https://avada.com/wp-content/uploads/2021/10/Winery-Home-Page-Translated-768x413.png 768w, https://avada.com/wp-content/uploads/2021/10/Winery-Home-Page-Translated-800x431.png 800w, https://avada.com/wp-content/uploads/2021/10/Winery-Home-Page-Translated-1024x551.png 1024w, https://avada.com/wp-content/uploads/2021/10/Winery-Home-Page-Translated-1200x646.png 1200w, https://avada.com/wp-content/uploads/2021/10/Winery-Home-Page-Translated-1536x827.png 1536w, https://avada.com/wp-content/uploads/2021/10/Winery-Home-Page-Translated.png 2846w\" sizes=\"(max-width: 2846px) 100vw, 2846px\"/><a style=\"--awb-font-size:20px;--awb-hotspot-text-color:var(--awb-color1);--awb-hotspot-background-color:rgba(0,0,0,0.81);--awb-hotspot-hover-text-color:var(--awb-color1);--awb-hotspot-hover-background-color:var(--awb-color8);--awb-border-radius-top-left:25px;--awb-border-radius-top-right:25px;--awb-border-radius-bottom-right:25px;--awb-border-radius-bottom-left:25px;--awb-pos-x:2.0%;--awb-pos-y:86.0%;\" class=\"awb-image-hotspots-hotspot awb-image-hotspots-hotspot-1\" role=\"button\" tabindex=\"0\" data-awb-toggle-image-hotspot-popover=\"true\" data-content=\"Avada’s Winery prebuilt website turned multilingual with WPML\" data-trigger=\"hover focus\" data-placement=\"auto\"><i class=\"icon-avada-help\"></i> </a></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-title title fusion-title-183 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Overview</h2></div><div class=\"awb-toc-el awb-toc-el--10\" data-awb-toc-id=\"10\" data-awb-toc-options=\"{&quot;allowed_heading_tags&quot;:{&quot;h2&quot;:0,&quot;h3&quot;:1},&quot;ignore_headings&quot;:&quot;&quot;,&quot;ignore_headings_words&quot;:&quot;Overview&quot;,&quot;enable_cache&quot;:&quot;yes&quot;,&quot;highlight_current_heading&quot;:&quot;no&quot;,&quot;hide_hidden_titles&quot;:&quot;yes&quot;,&quot;limit_container&quot;:&quot;post_content&quot;,&quot;select_custom_headings&quot;:&quot;&quot;,&quot;icon&quot;:&quot;fa-angle-right fal&quot;,&quot;counter_type&quot;:&quot;custom_icon&quot;}\" style=\"--awb-item-font-size:var(--awb-typography4-font-size);--awb-item-line-height:var(--awb-typography4-line-height);--awb-item-letter-spacing:var(--awb-typography4-letter-spacing);--awb-item-text-transform:var(--awb-typography4-text-transform);--awb-item-color:var(--awb-color8);--awb-item-color-hover:var(--awb-color5);--awb-item-bg-color-hover:rgba(101,189,125,0);--awb-counter-color:var(--awb-color6);--awb-hover-counter-color:var(--awb-color5);--awb-list-indent:15px;--awb-item-padding-top:3px;--awb-item-padding-right:0;--awb-item-padding-bottom:5px;--awb-item-padding-left:0;--awb-item-font-family:var(--awb-typography4-font-family);--awb-item-font-weight:var(--awb-typography4-font-weight);--awb-item-font-style:var(--awb-typography4-font-style);\"><div class=\"awb-toc-el__content\"></div></div>\n<div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-title title fusion-title-184 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Why Go Multilingual at All?</h2></div><div class=\"fusion-text fusion-text-131\" style=\"--awb-text-transform:none;\"><p>A multilingual site is <a href=\"https://wpml.org/case-studies/2020/12/how-a-multilingual-site-can-help-grow-your-business/\">proven to boost site traffic</a>, increase sales, and improve support satisfaction. It also helps that it’s a remarkably cost-effective marketing strategy.</p>\n<p>Ron Henry, a finance blogger, and author tested this by translating thirteen of his articles. Within three weeks, <a href=\"https://www.icanlocalize.com/site/2018/09/ron-henry/\">he saw a 25% increase in traffic</a> – the kind of results that would typically take several months and come at a significantly higher cost.</p>\n<p>Celebrated marketing blogger Neil Patel also recognized the benefit of going multilingual. When he <a href=\"https://wplang.org/get-more-traffic-creating-multilingual-site/\">translated his website</a>, his global traffic increased by 47%.</p>\n<p>These results aren’t hard to come by. It’s never been easier to make a WordPress website multilingual, mainly if you’re using a powerful duo like Avada and WPML. Let’s show you how.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-185 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Step 1: Building Your Website With Avada</h2></div><div class=\"fusion-text fusion-text-132\" style=\"--awb-text-transform:none;\"><p>Avada is an impressive, all-in-one WordPress website builder that gives you complete control over the design of your website. It comes with all the tools you need to create and customize beautiful websites, including WooCommerce stores.</p>\n<p>With <a href=\"https://1.envato.market/jKdLZ\">Avada</a>, you can build virtually any design and layout that you can imagine – your imagination is the limit. <a href=\"https://avada.com\">Avada</a> has a visual Drag &amp; Drop interface with a vast resource library of over <a href=\"https://avada.com/elements/\">90 Design Elements</a>.</p>\n</div><div style=\"--awb-popover-text-color:#515151;\" class=\"awb-image-hotspots awb-image-hotspots-2\"><div class=\"awb-image-hotspots-wrapper\"><img src=\"https://avada.com/wp-content/uploads/2021/10/Avada-element-library.png\" alt=\"Avada Winery\" width=\"2880\" height=\"1576\" title=\"Avada Winery\" class=\"awb-image-hotspots-image wp-image-887967\" srcset=\"https://avada.com/wp-content/uploads/2021/10/Avada-element-library-200x109.png 200w, https://avada.com/wp-content/uploads/2021/10/Avada-element-library-300x164.png 300w, https://avada.com/wp-content/uploads/2021/10/Avada-element-library-400x219.png 400w, https://avada.com/wp-content/uploads/2021/10/Avada-element-library-600x328.png 600w, https://avada.com/wp-content/uploads/2021/10/Avada-element-library-768x420.png 768w, https://avada.com/wp-content/uploads/2021/10/Avada-element-library-800x438.png 800w, https://avada.com/wp-content/uploads/2021/10/Avada-element-library-1024x560.png 1024w, https://avada.com/wp-content/uploads/2021/10/Avada-element-library-1200x657.png 1200w, https://avada.com/wp-content/uploads/2021/10/Avada-element-library-1536x841.png 1536w, https://avada.com/wp-content/uploads/2021/10/Avada-element-library.png 2880w\" sizes=\"(max-width: 2880px) 100vw, 2880px\"/><a style=\"--awb-font-size:20px;--awb-hotspot-text-color:var(--awb-color1);--awb-hotspot-background-color:rgba(0,0,0,0.81);--awb-hotspot-hover-text-color:var(--awb-color1);--awb-hotspot-hover-background-color:var(--awb-color8);--awb-border-radius-top-left:25px;--awb-border-radius-top-right:25px;--awb-border-radius-bottom-right:25px;--awb-border-radius-bottom-left:25px;--awb-pos-x:2.0%;--awb-pos-y:86.0%;\" class=\"awb-image-hotspots-hotspot awb-image-hotspots-hotspot-2\" role=\"button\" tabindex=\"0\" data-awb-toggle-image-hotspot-popover=\"true\" data-content=\"Avada’s impressive library of Design Elements\" data-trigger=\"hover focus\" data-placement=\"auto\"><i class=\"icon-avada-help\"></i> </a></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-133\" style=\"--awb-text-transform:none;\"><p>But suppose you do need some inspiration to feed your inner creator. In that case, you can get started by using one of the professionally designed, <a href=\"https://avada.com/prebuilt-websites/\">prebuilt websites</a>. There are over 90 to choose from, and they are imported in a few straightforward steps.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div><div class=\"fusion-title title fusion-title-186 fusion-sep-none fusion-title-text fusion-title-size-three\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">How to Import an Avada Prebuilt Website</h3></div><div class=\"fusion-text fusion-text-134\" style=\"--awb-text-transform:none;\"><p>We’ll assume that you are using a fresh WordPress install with the Avada theme registered and activated. You’ll also see two Avada plugins installed and activated on your site:</p>\n</div><ul style=\"--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-38 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">Avada Core</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">Avada Builder</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-135\" style=\"--awb-text-transform:none;\"><p>The fastest way to install a prebuilt <a href=\"https://1.envato.market/jKdLZ\">Avada</a> website is to use the built in Importer tool.</p>\n</div><div style=\"--awb-popover-text-color:#515151;\" class=\"awb-image-hotspots awb-image-hotspots-3\"><div class=\"awb-image-hotspots-wrapper\"><img src=\"https://avada.com/wp-content/uploads/2021/10/Winery-import-starter-site.png\" alt=\"Avada Winery\" width=\"2878\" height=\"1428\" title=\"Avada Winery\" class=\"awb-image-hotspots-image wp-image-887968\" srcset=\"https://avada.com/wp-content/uploads/2021/10/Winery-import-starter-site-200x99.png 200w, https://avada.com/wp-content/uploads/2021/10/Winery-import-starter-site-300x149.png 300w, https://avada.com/wp-content/uploads/2021/10/Winery-import-starter-site-400x198.png 400w, https://avada.com/wp-content/uploads/2021/10/Winery-import-starter-site-600x298.png 600w, https://avada.com/wp-content/uploads/2021/10/Winery-import-starter-site-768x381.png 768w, https://avada.com/wp-content/uploads/2021/10/Winery-import-starter-site-800x397.png 800w, https://avada.com/wp-content/uploads/2021/10/Winery-import-starter-site-1024x508.png 1024w, https://avada.com/wp-content/uploads/2021/10/Winery-import-starter-site-1200x595.png 1200w, https://avada.com/wp-content/uploads/2021/10/Winery-import-starter-site-1536x762.png 1536w, https://avada.com/wp-content/uploads/2021/10/Winery-import-starter-site.png 2878w\" sizes=\"(max-width: 2878px) 100vw, 2878px\"/><a style=\"--awb-font-size:20px;--awb-hotspot-text-color:var(--awb-color1);--awb-hotspot-background-color:rgba(0,0,0,0.81);--awb-hotspot-hover-text-color:var(--awb-color1);--awb-hotspot-hover-background-color:var(--awb-color8);--awb-border-radius-top-left:25px;--awb-border-radius-top-right:25px;--awb-border-radius-bottom-right:25px;--awb-border-radius-bottom-left:25px;--awb-pos-x:2.0%;--awb-pos-y:86.0%;\" class=\"awb-image-hotspots-hotspot awb-image-hotspots-hotspot-3\" role=\"button\" tabindex=\"0\" data-awb-toggle-image-hotspot-popover=\"true\" data-content=\"Importing the Avada Winery prebuilt website\" data-trigger=\"hover focus\" data-placement=\"auto\"><i class=\"icon-avada-help\"></i> </a></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-136\" style=\"--awb-text-transform:none;\"><p>Here’s how:</p>\n</div><ul style=\"--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-39 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>From the WordPress Sidebar, navigate to <strong>Avada → Websites</strong>.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>Select the Avada prebuilt website you wish to use and click the <b>Import</b> button. This will launch the <b>Prebuilt Website Importer,</b> where you can choose which types of content to import.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>Once you’ve made your selection(s), click <b>Import</b> to start the process. When complete, click the <b>Done</b> button.</p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-137\" style=\"--awb-text-transform:none;\"><p>And that&#8217;s it! You&#8217;ve installed an Avada prebuilt website in a few simple steps.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-187 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Step 2: Populate Your Content</h2></div><div class=\"fusion-text fusion-text-138\" style=\"--awb-text-transform:none;\"><p>In this tutorial, we will keep the <a href=\"https://avada.website/winery\">Avada Winery</a> prebuilt website content. Since WooCommerce comes pre-installed, we will use this as an opportunity to show how WPML seamlessly handles the translation of e-commerce content.&nbsp;</p>\n<p>But, in your case, you’ll need to start <a href=\"https://avada.com/documentation/avada-builder-quick-start-guide\">personalizing and adapting the content</a> of your prebuilt website to make it exactly how you want it—for example, adding products.</p>\n</div><div class=\"fusion-alert alert notice alert-warning fusion-alert-left awb-alert-inherit-link-color\" role=\"alert\"><div class=\"fusion-alert-content-wrapper\"><span class=\"alert-icon\"><i class=\"awb-icon-cog\" aria-hidden=\"true\"></i></span><span class=\"fusion-alert-content\">Make sure you don’t leave any demo content so that you don’t want to waste any time or resources translating content that you don’t need. Of course, you can always add more content at a later stage.</span></div></div><div class=\"fusion-text fusion-text-139\" style=\"--awb-text-transform:none;\"><p>When you’re happy with your first iteration of content, it’s time to turn your website multilingual.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-188 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Step 3: Translate Your Site in Minutes Using the WPML Plugin</h2></div><div class=\"fusion-text fusion-text-140\" style=\"--awb-text-transform:none;\"><p>The easiest and quickest way to turn your site multilingual is by using a translation plugin like WPML. As one of the most comprehensive and affordable solutions available, WPML lets you translate your website into multiple languages and works seamlessly with the <a href=\"https://1.envato.market/jKdLZ\">Avada Website Builder</a>.</p>\n<p>Various methods are available to translate your website with WPML, including translating by yourself or sending content to professional translators. Still, we’ll cover the fastest: translating your entire site automatically.</p>\n</div><div class=\"fusion-alert alert notice alert-warning fusion-alert-left awb-alert-inherit-link-color\" role=\"alert\"><div class=\"fusion-alert-content-wrapper\"><span class=\"alert-icon\"><i class=\"awb-icon-cog\" aria-hidden=\"true\"></i></span><span class=\"fusion-alert-content\"><strong>Please note:</strong> WPML CMS Multilingual and CMS Agency subscriptions come with some free translation credits, but depending on your website’s translation needs, you may need more. <a href=\"https://wpml.org/documentation/automatic-translation/automatic-translation-pricing/\">Pricing</a> for automatic translation is determined by the translation engine you use and the number of words you translate.</span></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-title title fusion-title-189 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">WPML&#8217;s &#8216;Translate Everything Automatically&#8217; Mode</h2></div><div class=\"fusion-text fusion-text-141\" style=\"--awb-text-transform:none;\"><p>With the click of a button, you can set up WPML’s <b>Translate Everything Automatically</b> mode – and make your content translation faster and easier than ever.</p>\n</div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-114 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><a class=\"fusion-no-lightbox\" href=\"https://wpml.org/?aid=38405&amp;affiliate_key=DYLA9bEPLvPY\" target=\"_self\" aria-label=\"WPML Translation\"><img decoding=\"async\" width=\"2332\" height=\"2500\" alt=\"WPML Translation\" src=\"https://avada.com/wp-content/uploads/2023/07/post-wpml-wizard.png\" class=\"img-responsive wp-image-892837\" srcset=\"https://avada.com/wp-content/uploads/2023/07/post-wpml-wizard-200x214.png 200w, https://avada.com/wp-content/uploads/2023/07/post-wpml-wizard-400x429.png 400w, https://avada.com/wp-content/uploads/2023/07/post-wpml-wizard-600x643.png 600w, https://avada.com/wp-content/uploads/2023/07/post-wpml-wizard-800x858.png 800w, https://avada.com/wp-content/uploads/2023/07/post-wpml-wizard-1200x1286.png 1200w, https://avada.com/wp-content/uploads/2023/07/post-wpml-wizard.png 2332w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 2332px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-142\" style=\"--awb-text-transform:none;\"><p>The <b>Translate Everything Automatically</b> mode typically reduces 90% of the effort required to translate a WordPress website. In addition, it automatically translates your main site content into all secondary languages as you create or update it.</p>\n<p>Although automatic translation is far more accurate than it used to be, all translations can be reviewed on the front-end either pre-or-post publishing. Thus, it gives you peace of mind and lets you – or a professional reviewer – make any immediate changes to the translations if needed.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-190 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">How to Translate Your Avada Website Using WPML</h2></div><div class=\"fusion-text fusion-text-143\" style=\"--awb-text-transform:none;\"><p>We’ll use our prebuilt WooCommerce website to show you exactly how to translate your site in minutes using WPML’s <b>Translate Everything Automatically</b> mode.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:10px;width:100%;\"></div><div class=\"fusion-title title fusion-title-191 fusion-sep-none fusion-title-text fusion-title-size-three\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Setting up WPML</h3></div><div class=\"fusion-text fusion-text-144\" style=\"--awb-text-transform:none;\"><p>You’ll need a <a href=\"https://wpml.org/?aid=38405&amp;affiliate_key=DYLA9bEPLvPY\">WPML CMS or Agency account</a> to get started. Then, <a href=\"https://wpml.org/faq/install-wpml/#first-install\">install WPML on your website via the <b>OTGS Installer</b> plugin</a>. This plugin includes all the necessary WPML components.</p>\n<p>Once you register WPML on your site, you’ll need to configure it with the help of a simple setup wizard. This wizard takes you through the steps, which involve choosing your secondary language and deciding how you want to translate your site.</p>\n<p>For this guide, we’ll work with the<b> Translate Everything Automatically</b> mode, which automatically translates content as you publish or update it. You can choose whether you’d like to publish your translated content immediately without review, publish it and review it later, or review it before publishing. The choice is yours.</p>\n</div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-115 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><a class=\"fusion-no-lightbox\" href=\"https://wpml.org/?aid=38405&amp;affiliate_key=DYLA9bEPLvPY\" target=\"_self\" aria-label=\"WPML Translation\"><img decoding=\"async\" width=\"1878\" height=\"1300\" alt=\"WPML Translation\" src=\"https://avada.com/wp-content/uploads/2023/07/post-wpml-setup.png\" class=\"img-responsive wp-image-892834\" srcset=\"https://avada.com/wp-content/uploads/2023/07/post-wpml-setup-200x138.png 200w, https://avada.com/wp-content/uploads/2023/07/post-wpml-setup-400x277.png 400w, https://avada.com/wp-content/uploads/2023/07/post-wpml-setup-600x415.png 600w, https://avada.com/wp-content/uploads/2023/07/post-wpml-setup-800x554.png 800w, https://avada.com/wp-content/uploads/2023/07/post-wpml-setup-1200x831.png 1200w, https://avada.com/wp-content/uploads/2023/07/post-wpml-setup.png 1878w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1878px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-145\" style=\"--awb-text-transform:none;\"><p>In the setup wizard, you can also install and activate additional WPML components. To fully translate your WordPress website, you’ll need the WPML String Translation add-on.</p>\n<p>If you’re looking to translate your WooCommerce site, you’ll also need to install <a href=\"https://wpml.org/documentation/related-projects/woocommerce-multilingual/\">WooCommerce Multilingual and Multicurrency</a>. This glue plugin comes with the WPML CMS Multilingual and CMS Agency account types and ensures that you can easily translate product pages, your shop page, cart and checkout pages, and more. It also lets you <a href=\"https://wpml.org/documentation/related-projects/woocommerce-multilingual/multi-currency-support-woocommerce/\">sell your products in multiple currencies</a>.</p>\n</div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-116 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><a class=\"fusion-no-lightbox\" href=\"https://wpml.org/?aid=38405&amp;affiliate_key=DYLA9bEPLvPY\" target=\"_self\" aria-label=\"WPML Translation\"><img decoding=\"async\" width=\"1826\" height=\"1400\" alt=\"WPML Translation\" src=\"https://avada.com/wp-content/uploads/2023/07/post-wpml-wizard-two.png\" class=\"img-responsive wp-image-892835\" srcset=\"https://avada.com/wp-content/uploads/2023/07/post-wpml-wizard-two-200x153.png 200w, https://avada.com/wp-content/uploads/2023/07/post-wpml-wizard-two-400x307.png 400w, https://avada.com/wp-content/uploads/2023/07/post-wpml-wizard-two-600x460.png 600w, https://avada.com/wp-content/uploads/2023/07/post-wpml-wizard-two-800x613.png 800w, https://avada.com/wp-content/uploads/2023/07/post-wpml-wizard-two-1200x920.png 1200w, https://avada.com/wp-content/uploads/2023/07/post-wpml-wizard-two.png 1826w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1826px\" /></a></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-146\" style=\"--awb-text-transform:none;\"><p>It’s worth noting that once you complete the setup wizard for WPML, you’ll need to do the same for WooCommerce Multilingual &amp; Multicurrency (WCML). This setup wizard automatically creates the store pages in all the languages on your site and lets you choose the translation mode for your products.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-title title fusion-title-192 fusion-sep-none fusion-title-text fusion-title-size-three\"><h3 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:24;line-height:1.33;\">Let WPML work its magic!</h3></div><div class=\"fusion-text fusion-text-147\" style=\"--awb-text-transform:none;\"><p>After finishing the setup wizards for WPML and WCML, you’ll be taken to the <b>Translation Management</b> <b>Dashboard</b>, where you can see the status of your automatic translations. You’ll see when <a href=\"https://wpml.org/?aid=38405&amp;affiliate_key=DYLA9bEPLvPY\">WPML</a> has done its work and translated the site’s content into all your secondary languages.</p>\n</div><div class=\"fusion-image-element \" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-117 hover-type-none\" style=\"border:1px solid var(--awb-color3);\"><img decoding=\"async\" width=\"1698\" height=\"1375\" alt=\"WPML Translation\" title=\"WPML Translation\" src=\"https://avada.com/wp-content/uploads/2023/07/post-wpml-dashboard.png\" class=\"img-responsive wp-image-892836\" srcset=\"https://avada.com/wp-content/uploads/2023/07/post-wpml-dashboard-200x162.png 200w, https://avada.com/wp-content/uploads/2023/07/post-wpml-dashboard-400x324.png 400w, https://avada.com/wp-content/uploads/2023/07/post-wpml-dashboard-600x486.png 600w, https://avada.com/wp-content/uploads/2023/07/post-wpml-dashboard-800x648.png 800w, https://avada.com/wp-content/uploads/2023/07/post-wpml-dashboard-1200x972.png 1200w, https://avada.com/wp-content/uploads/2023/07/post-wpml-dashboard.png 1698w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1698px\" /></span></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-148\" style=\"--awb-text-transform:none;\"><p>Depending on which review option you choose during setup, you can either review your translated content immediately or at a later date. You can do this by yourself or assign it to someone more familiar with your secondary languages, like a professional translator.</p>\n<p>And that’s it! Your primary website content has been turned multilingual. Don’t worry if you need to change your content over time. WPML automatically updates the translations any time you make a change to your default language content.</p>\n</div><div style=\"--awb-popover-text-color:#515151;\" class=\"awb-image-hotspots awb-image-hotspots-4\"><div class=\"awb-image-hotspots-wrapper\"><img src=\"https://avada.com/wp-content/uploads/2021/10/Translated-product-page-1920x1032-1.png\" alt=\"Avada Winery\" width=\"1920\" height=\"1032\" title=\"Avada Winery\" class=\"awb-image-hotspots-image wp-image-887972\" srcset=\"https://avada.com/wp-content/uploads/2021/10/Translated-product-page-1920x1032-1-200x108.png 200w, https://avada.com/wp-content/uploads/2021/10/Translated-product-page-1920x1032-1-300x161.png 300w, https://avada.com/wp-content/uploads/2021/10/Translated-product-page-1920x1032-1-400x215.png 400w, https://avada.com/wp-content/uploads/2021/10/Translated-product-page-1920x1032-1-600x323.png 600w, https://avada.com/wp-content/uploads/2021/10/Translated-product-page-1920x1032-1-768x413.png 768w, https://avada.com/wp-content/uploads/2021/10/Translated-product-page-1920x1032-1-800x430.png 800w, https://avada.com/wp-content/uploads/2021/10/Translated-product-page-1920x1032-1-1024x550.png 1024w, https://avada.com/wp-content/uploads/2021/10/Translated-product-page-1920x1032-1-1200x645.png 1200w, https://avada.com/wp-content/uploads/2021/10/Translated-product-page-1920x1032-1-1536x826.png 1536w, https://avada.com/wp-content/uploads/2021/10/Translated-product-page-1920x1032-1.png 1920w\" sizes=\"(max-width: 1920px) 100vw, 1920px\"/><a style=\"--awb-font-size:20px;--awb-hotspot-text-color:var(--awb-color1);--awb-hotspot-background-color:rgba(0,0,0,0.81);--awb-hotspot-hover-text-color:var(--awb-color1);--awb-hotspot-hover-background-color:var(--awb-color8);--awb-border-radius-top-left:25px;--awb-border-radius-top-right:25px;--awb-border-radius-bottom-right:25px;--awb-border-radius-bottom-left:25px;--awb-pos-x:2.0%;--awb-pos-y:86.0%;\" class=\"awb-image-hotspots-hotspot awb-image-hotspots-hotspot-4\" role=\"button\" tabindex=\"0\" data-awb-toggle-image-hotspot-popover=\"true\" data-content=\"The main site content, including the products and shop page, gets translated automatically into secondary languages\" data-trigger=\"hover focus\" data-placement=\"auto\"><i class=\"icon-avada-help\"></i> </a></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-title title fusion-title-193 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Texts That Don&#8217;t Get Translated Automatically</h2></div><div class=\"fusion-text fusion-text-149\" style=\"--awb-text-transform:none;\"><p>WPML’s <b>Translate Everything Automatically</b> mode translates everything from pages, posts, and custom fields, to taxonomies and WooCommerce products. But, it can’t translate more minor texts, like those in menus, widgets, and form fields, for example.</p>\n</div><div style=\"--awb-popover-text-color:#515151;\" class=\"awb-image-hotspots awb-image-hotspots-5\"><div class=\"awb-image-hotspots-wrapper\"><img src=\"https://avada.com/wp-content/uploads/2021/10/Translated-blog-page-1920x1034-1.png\" alt=\"Avada Winery\" width=\"1920\" height=\"1034\" title=\"Avada Winery\" class=\"awb-image-hotspots-image wp-image-887973\" srcset=\"https://avada.com/wp-content/uploads/2021/10/Translated-blog-page-1920x1034-1-200x108.png 200w, https://avada.com/wp-content/uploads/2021/10/Translated-blog-page-1920x1034-1-300x162.png 300w, https://avada.com/wp-content/uploads/2021/10/Translated-blog-page-1920x1034-1-400x215.png 400w, https://avada.com/wp-content/uploads/2021/10/Translated-blog-page-1920x1034-1-600x323.png 600w, https://avada.com/wp-content/uploads/2021/10/Translated-blog-page-1920x1034-1-768x414.png 768w, https://avada.com/wp-content/uploads/2021/10/Translated-blog-page-1920x1034-1-800x431.png 800w, https://avada.com/wp-content/uploads/2021/10/Translated-blog-page-1920x1034-1-1024x551.png 1024w, https://avada.com/wp-content/uploads/2021/10/Translated-blog-page-1920x1034-1-1200x646.png 1200w, https://avada.com/wp-content/uploads/2021/10/Translated-blog-page-1920x1034-1-1536x827.png 1536w, https://avada.com/wp-content/uploads/2021/10/Translated-blog-page-1920x1034-1.png 1920w\" sizes=\"(max-width: 1920px) 100vw, 1920px\"/><a style=\"--awb-font-size:20px;--awb-hotspot-text-color:var(--awb-color1);--awb-hotspot-background-color:rgba(0,0,0,0.81);--awb-hotspot-hover-text-color:var(--awb-color1);--awb-hotspot-hover-background-color:var(--awb-color8);--awb-border-radius-top-left:25px;--awb-border-radius-top-right:25px;--awb-border-radius-bottom-right:25px;--awb-border-radius-bottom-left:25px;--awb-pos-x:2.0%;--awb-pos-y:86.0%;\" class=\"awb-image-hotspots-hotspot awb-image-hotspots-hotspot-5\" role=\"button\" tabindex=\"0\" data-awb-toggle-image-hotspot-popover=\"true\" data-content=\"The blog page and all posts are translated; however, the menu must be translated via WPML&#039;s String Translation Module\" data-trigger=\"hover focus\" data-placement=\"auto\"><i class=\"icon-avada-help\"></i> </a></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-150\" style=\"--awb-text-transform:none;\"><p>There isn’t enough context for automatic translation to translate minor texts accurately. To learn how to translate such content, you can <a href=\"https://wpml.org/documentation/getting-started-guide/string-translation/\">follow WPML’s guide to String Translation</a>.</p>\n</div><div style=\"--awb-popover-text-color:#515151;\" class=\"awb-image-hotspots awb-image-hotspots-6\"><div class=\"awb-image-hotspots-wrapper\"><img src=\"https://avada.com/wp-content/uploads/2021/10/String-translation-WPML-1920x1041-1.png\" alt=\"Avada Winery\" width=\"1920\" height=\"1041\" title=\"Avada Winery\" class=\"awb-image-hotspots-image wp-image-887974\" srcset=\"https://avada.com/wp-content/uploads/2021/10/String-translation-WPML-1920x1041-1-200x108.png 200w, https://avada.com/wp-content/uploads/2021/10/String-translation-WPML-1920x1041-1-300x163.png 300w, https://avada.com/wp-content/uploads/2021/10/String-translation-WPML-1920x1041-1-400x217.png 400w, https://avada.com/wp-content/uploads/2021/10/String-translation-WPML-1920x1041-1-600x325.png 600w, https://avada.com/wp-content/uploads/2021/10/String-translation-WPML-1920x1041-1-768x416.png 768w, https://avada.com/wp-content/uploads/2021/10/String-translation-WPML-1920x1041-1-800x434.png 800w, https://avada.com/wp-content/uploads/2021/10/String-translation-WPML-1920x1041-1-1024x555.png 1024w, https://avada.com/wp-content/uploads/2021/10/String-translation-WPML-1920x1041-1-1200x651.png 1200w, https://avada.com/wp-content/uploads/2021/10/String-translation-WPML-1920x1041-1-1536x833.png 1536w, https://avada.com/wp-content/uploads/2021/10/String-translation-WPML-1920x1041-1.png 1920w\" sizes=\"(max-width: 1920px) 100vw, 1920px\"/><a style=\"--awb-font-size:20px;--awb-hotspot-text-color:var(--awb-color1);--awb-hotspot-background-color:rgba(0,0,0,0.81);--awb-hotspot-hover-text-color:var(--awb-color1);--awb-hotspot-hover-background-color:var(--awb-color8);--awb-border-radius-top-left:25px;--awb-border-radius-top-right:25px;--awb-border-radius-bottom-right:25px;--awb-border-radius-bottom-left:25px;--awb-pos-x:2.0%;--awb-pos-y:86.0%;\" class=\"awb-image-hotspots-hotspot awb-image-hotspots-hotspot-6\" role=\"button\" tabindex=\"0\" data-awb-toggle-image-hotspot-popover=\"true\" data-content=\"Smaller strings, like button texts, continue to be translatable via WPML&#039;s String Translation Module\" data-trigger=\"hover focus\" data-placement=\"auto\"><i class=\"icon-avada-help\"></i> </a></div></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;width:100%;\"></div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-151\"><p>If you need any further guidance about specific Avada settings, including how to translate Avada Sliders and Forms, check out <a href=\"https://wpml.org/documentation/theme-compatibility/using-wpml-with-the-avada-theme/\">WPML’s documentation about building multilingual Avada websites</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:50px;width:100%;\"></div><div class=\"fusion-title title fusion-title-194 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">Want to Create Different Designs For Different Languages? No Problem</h2></div><div class=\"fusion-text fusion-text-152\" style=\"--awb-text-transform:none;\"><p>If you would like to create different designs for different languages, WPML and <a href=\"https://1.envato.market/jKdLZ\">Avada</a> also have you covered. For this, you’ll need to manually translate your content:</p>\n</div><ul style=\"--awb-line-height:27.2px;--awb-icon-width:27.2px;--awb-icon-height:27.2px;--awb-icon-margin:11.2px;--awb-content-margin:38.4px;\" class=\"fusion-checklist fusion-checklist-40 fusion-checklist-default type-icons\"><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">When configuring <a href=\"https://wpml.org/?aid=38405&amp;affiliate_key=DYLA9bEPLvPY\">WPML</a>, choose the <b>Translate What You Choose</b> option. If you’ve already configured WPML, you can select this translation option by going to <b>WPML → Settings</b>.</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>Open the page or post you would like to translate and switch to translating with the <b>WordPress Editor</b>. In the dialogue box that appears, select that you want to translate <b>This page</b>.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>In the <b>Language</b> box, select the language you want to create the different designs for and click the <b>Duplicate</b> button.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>Click on the <b>pencil</b> icon next to one of the languages you just duplicated the page into. If you don’t see the pencil icon, click <b>Show</b>.</p>\n</div></li><li class=\"fusion-li-item\" style=\"\"><span class=\"icon-wrapper circle-no\"><i class=\"fusion-li-icon fa-arrow-alt-circle-right far\" aria-hidden=\"true\"></i></span><div class=\"fusion-li-item-content\">\n<p>In the same <b>Language</b> box, click the option to<b> Translate independently</b>. This ensures that your translations are not kept in sync with any updates you make to the default language page.</p>\n</div></li></ul><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:20px;width:100%;\"></div><div class=\"fusion-text fusion-text-153\" style=\"--awb-text-transform:none;\"><p>You can now edit the design for this page independently. You can find the full, step-by-step instructions in <a href=\"https://wpml.org/documentation/translating-your-contents/using-different-translation-editors-for-different-pages/\">WPML’s guide to translating content manually</a>.</p>\n</div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"></div><div class=\"fusion-title title fusion-title-195 fusion-sep-none fusion-title-text fusion-title-size-two\"><h2 class=\"fusion-title-heading title-heading-left fusion-responsive-typography-calculated\" style=\"margin:0;text-transform:capitalize;--fontSize:32;line-height:1.25;\">In Summary</h2></div><div class=\"fusion-text fusion-text-154\" style=\"--awb-text-transform:none;\"><p>As you can see, <a href=\"https://1.envato.market/jKdLZ\">Avada</a> and <a href=\"https://wpml.org/?aid=38405&amp;affiliate_key=DYLA9bEPLvPY\">WPML</a> are a powerful combination. Everything you need to build a multilingual website that’s ready to drive business and capture leads is right at your fingertips. With these plugins, it’s easier than ever to make your WooCommerce store multilingual and push your products and services to a global audience!</p>\n</div></div></div></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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://avada.com/blog/how-to-build-a-multilingual-website-in-minutes-using-avada-and-wpml/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:23:\"https://avada.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:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:18:{s:4:\"date\";s:29:\"Wed, 23 Aug 2023 04:20:14 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:49:\"Accept-Encoding, Accept-Encoding, Accept-Encoding\";s:12:\"x-powered-by\";s:9:\"WP Engine\";s:13:\"last-modified\";s:29:\"Tue, 22 Aug 2023 14:20:04 GMT\";s:4:\"etag\";s:36:\"W/\"6a0b39d736ede13cbb3dd3f4778698e2\"\";s:4:\"link\";s:54:\"<https://avada.com/wp-json/>; rel=\"https://api.w.org/\"\";s:11:\"x-cacheable\";s:17:\"CacheAlways: feed\";s:13:\"cache-control\";s:28:\"max-age=600, must-revalidate\";s:7:\"x-cache\";s:7:\"HIT: 81\";s:16:\"x-wpe-request-id\";s:32:\"0c7262ccc9c22f7366f6a7938163bf50\";s:20:\"x-orig-cache-control\";s:28:\"max-age=600, must-revalidate\";s:15:\"cf-cache-status\";s:7:\"DYNAMIC\";s:9:\"report-to\";s:239:\"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=6PjucGEuDO2G5qbsr1DKdsPNG3sSqE7%2F5%2B3Pp8X6CmucSctkXmhRZfju6fFylDFrbh0ShGHWzGHIz%2BgEbwuwVAuNDuqEOTezeyMUOC7ponNNE9WnZ1344VYmpw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}\";s:3:\"nel\";s:60:\"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}\";s:6:\"server\";s:10:\"cloudflare\";s:6:\"cf-ray\";s:20:\"7fb08fd46f9e2f6a-LAX\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";}}s:5:\"build\";s:14:\"20211221080300\";}','no'),(2126,'_transient_timeout_jetpack_https_test','1692811309','no'),(2127,'_transient_jetpack_https_test','1','no'),(398,'_transient_timeout_jetpack_https_test_message','1692811309','no'),(399,'_transient_jetpack_https_test_message','','no'),(400,'_site_transient_timeout_browser_4355e917423cadf894833f03efa36503','1693243198','no'),(401,'_site_transient_browser_4355e917423cadf894833f03efa36503','a:10:{s:4:\"name\";s:6:\"Safari\";s:7:\"version\";s:4:\"16.6\";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'),(2597,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1692807624','no'),(2598,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1692764424','no'),(261,'_transient_timeout_jetpack_file_data_12.4','1694830379','no'),(262,'_transient_jetpack_file_data_12.4','a:1:{s:32:\"3fd340ad52927afb3bbb9e98575eccfd\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:24:\"requires_user_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}}','no'),(2550,'_transient_boldgrid_backup_is_functional','1','no'),(304,'_transient_health-check-site-status-result','{\"good\":17,\"recommended\":4,\"critical\":2}','yes'),(3458,'_transient_fusion_subsets_preload_tags','<link rel=\"preload\" href=\"//test-site.goodcausepartners.com/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.goodcausepartners.com/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.goodcausepartners.com/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-solid-900.woff2\" as=\"font\" type=\"font/woff2\" crossorigin>','yes'),(3459,'_transient_fusion_custom_icons_preload_tags','<link rel=\"preload\" href=\"https://test-site.goodcausepartners.com/wp-content/uploads/fusion-icons/hosting-template-v4.4/fonts/hosting-template.ttf?6nsyts\" as=\"font\" type=\"font/ttf\" crossorigin>','yes'),(3460,'_transient_timeout_fusion_dynamic_js_filenames','1692812533','no'),(3461,'_transient_fusion_dynamic_js_filenames','a:3:{s:36:\"1647eac809aa4a7315f3ec10ab825dbcaac7\";s:32:\"584c7fddbaf9058b2ab96bfffb557316\";s:34:\"3487ffac987e44261ac421264195259999\";s:32:\"247c8c227ffff8d80d19f9dad49d0adf\";s:36:\"1127550568bf90816f2f4e09cbe04fbf358d\";s:32:\"81c09c36f09e46edeac60d8fb6d9ca75\";}','no'),(3462,'_transient_fusion_dynamic_js_readable','1','yes'),(819,'wpmudev_notices','a:3:{s:7:\"plugins\";a:1:{s:5:\"smush\";i:1692654199;}s:5:\"queue\";a:1:{s:5:\"smush\";a:3:{s:5:\"email\";i:1692654198;s:4:\"rate\";i:1692654198;s:8:\"giveaway\";i:1692654198;}}s:4:\"done\";a:0:{}}','no'),(3450,'_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:6:\"5.11.2\";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:6:\"5.11.2\";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:6:\"3.11.2\";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:6:\"3.11.2\";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:6:\"6.6.15\";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:6:\"6.6.15\";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:3:\"7.8\";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:3:\"7.8\";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.2.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/2017/12/acf_pro_company_site.jpg\";s:11:\"has_package\";b:1;s:7:\"version\";s:5:\"6.2.0\";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:3:\"5.5\";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:3:\"5.5\";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'),(2637,'jetpack_dismissed_connection_banner','1','yes'),(504,'fusion_demo_history','a:1:{s:9:\"hosting_2\";a:11:{s:24:\"fusion_tb_layout_default\";b:0;s:5:\"terms\";a:21:{i:0;a:2:{s:7:\"term_id\";i:2;s:8:\"taxonomy\";s:8:\"category\";}i:1;a:2:{s:7:\"term_id\";i:3;s:8:\"taxonomy\";s:8:\"category\";}i:2;a:2:{s:7:\"term_id\";i:4;s:8:\"taxonomy\";s:8:\"category\";}i:3;a:2:{s:7:\"term_id\";i:5;s:8:\"taxonomy\";s:8:\"post_tag\";}i:4;a:2:{s:7:\"term_id\";i:6;s:8:\"taxonomy\";s:8:\"post_tag\";}i:5;a:2:{s:7:\"term_id\";i:7;s:8:\"taxonomy\";s:8:\"post_tag\";}i:6;a:2:{s:7:\"term_id\";i:8;s:8:\"taxonomy\";s:8:\"post_tag\";}i:7;a:2:{s:7:\"term_id\";i:9;s:8:\"taxonomy\";s:8:\"post_tag\";}i:8;a:2:{s:7:\"term_id\";i:10;s:8:\"taxonomy\";s:18:\"fusion_tb_category\";}i:9;a:2:{s:7:\"term_id\";i:11;s:8:\"taxonomy\";s:18:\"fusion_tb_category\";}i:10;a:2:{s:7:\"term_id\";i:12;s:8:\"taxonomy\";s:18:\"fusion_tb_category\";}i:11;a:2:{s:7:\"term_id\";i:13;s:8:\"taxonomy\";s:16:\"element_category\";}i:12;a:2:{s:7:\"term_id\";i:14;s:8:\"taxonomy\";s:18:\"fusion_tb_category\";}i:13;a:2:{s:7:\"term_id\";i:15;s:8:\"taxonomy\";s:16:\"element_category\";}i:14;a:2:{s:7:\"term_id\";i:16;s:8:\"taxonomy\";s:16:\"element_category\";}i:15;a:2:{s:7:\"term_id\";i:17;s:8:\"taxonomy\";s:8:\"nav_menu\";}i:16;a:2:{s:7:\"term_id\";i:18;s:8:\"taxonomy\";s:8:\"nav_menu\";}i:17;a:2:{s:7:\"term_id\";i:19;s:8:\"taxonomy\";s:8:\"nav_menu\";}i:18;a:2:{s:7:\"term_id\";i:20;s:8:\"taxonomy\";s:8:\"nav_menu\";}i:19;a:2:{s:7:\"term_id\";i:21;s:8:\"taxonomy\";s:8:\"nav_menu\";}i:20;a:2:{s:7:\"term_id\";i:22;s:8:\"taxonomy\";s:8:\"nav_menu\";}}s:13:\"theme_options\";b:0;s:7:\"widgets\";a:30:{i:0;O:8:\"stdClass\":4:{s:9:\"option_id\";s:3:\"453\";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:\"463\";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:\"455\";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:\"119\";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:\"461\";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:\"459\";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:\"464\";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:\"454\";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:\"462\";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:\"118\";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:\"456\";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:\"457\";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:3:\"116\";s:11:\"option_name\";s:22:\"widget_recent-comments\";s:12:\"option_value\";s:30:\"a:1:{s:12:\"_multiwidget\";i:1;}\";s:8:\"autoload\";s:3:\"yes\";}i:23;O:8:\"stdClass\":4:{s:9:\"option_id\";s:3:\"115\";s:11:\"option_name\";s:19:\"widget_recent-posts\";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: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:25;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:26;O:8:\"stdClass\":4:{s:9:\"option_id\";s:3:\"460\";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:27;O:8:\"stdClass\":4:{s:9:\"option_id\";s:3:\"117\";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:28;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:29;O:8:\"stdClass\":4:{s:9:\"option_id\";s:3:\"458\";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:7:\"My Blog\";s:13:\"page_on_front\";s:1:\"0\";s:13:\"show_on_front\";s:5:\"posts\";s:18:\"nav_menu_locations\";a:0:{}s:12:\"general_data\";s:8:\"imported\";}}','no'),(505,'fusion_import_data','a:18:{s:4:\"post\";a:1:{i:0;s:9:\"hosting_2\";}s:4:\"page\";a:1:{i:0;s:9:\"hosting_2\";}s:15:\"avada_portfolio\";a:0:{}s:9:\"avada_faq\";a:0:{}s:12:\"avada_layout\";a:1:{i:0;s:9:\"hosting_2\";}s:12:\"fusion_icons\";a:1:{i:0;s:9:\"hosting_2\";}s:10:\"attachment\";a:1:{i:0;s:9:\"hosting_2\";}s:7:\"product\";a:0:{}s:5:\"event\";a:0:{}s:5:\"forum\";a:0:{}s:7:\"sliders\";a:1:{i:0;s:9:\"hosting_2\";}s:7:\"widgets\";a:1:{i:0;s:9:\"hosting_2\";}s:13:\"theme_options\";a:1:{i:0;s:9:\"hosting_2\";}s:11:\"convertplug\";a:0:{}s:8:\"acf_data\";a:0:{}s:12:\"general_data\";a:1:{i:0;s:9:\"hosting_2\";}s:3:\"all\";a:1:{i:0;s:9:\"hosting_2\";}s:11:\"fusion_form\";a:1:{i:0;s:9:\"hosting_2\";}}','no'),(517,'fusion_tb_category_children','a:0:{}','yes'),(518,'portfolio_category_children','a:0:{}','yes'),(519,'portfolio_skills_children','a:0:{}','yes'),(520,'faq_category_children','a:0:{}','yes'),(521,'slide-page_children','a:0:{}','yes'),(522,'element_category_children','a:0:{}','yes'),(523,'template_category_children','a:0:{}','yes'),(514,'fusion_tb_layout_default','{\\\"conditions\\\":[],\\\"template_terms\\\":{\\\"header\\\":\\\"12\\\",\\\"footer\\\":\\\"351\\\",\\\"page_title_bar\\\":\\\"\\\"}}','yes'),(515,'wp_calendar_block_has_published_posts','1','yes'),(525,'fusion_options','a:1041:{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: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: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:\"800\";s:17:\"visibility_medium\";s:4:\"1100\";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:\"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:\"#f2f2f2\";}s:6:\"color3\";a:2:{s:5:\"label\";s:7:\"Color 3\";s:5:\"color\";s:7:\"#e0e0e0\";}s:6:\"color4\";a:2:{s:5:\"label\";s:7:\"Color 4\";s:5:\"color\";s:7:\"#ff8b1e\";}s:6:\"color5\";a:2:{s:5:\"label\";s:7:\"Color 5\";s:5:\"color\";s:7:\"#008ee6\";}s:6:\"color6\";a:2:{s:5:\"label\";s:7:\"Color 6\";s:5:\"color\";s:7:\"#4c4c4c\";}s:6:\"color7\";a:2:{s:5:\"label\";s:7:\"Color 7\";s:5:\"color\";s:7:\"#262626\";}s:6:\"color8\";a:2:{s:5:\"label\";s:7:\"Color 8\";s:5:\"color\";s:7:\"#0f0f0f\";}}s:13:\"primary_color\";s:17:\"var(--awb-color4)\";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-color8)\";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-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:8:{s:11:\"font-family\";s:34:\"var(--awb-typography3-font-family)\";s:11:\"font-backup\";s:1:\"1\";s:10:\"font-style\";s:0:\"\";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:14:\"text-transform\";s:4:\"none\";s:5:\"color\";s:17:\"var(--awb-color8)\";}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: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:9:{s:11:\"font-family\";s:34:\"var(--awb-typography3-font-family)\";s:11:\"font-backup\";s:1:\"1\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:9:\"font-size\";s:32:\"var(--awb-typography3-font-size)\";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:4:\"none\";s:5:\"color\";s:17:\"var(--awb-color8)\";}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: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:92:\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/avada-hosting-logo-02.png\";s:2:\"id\";s:2:\"87\";s:6:\"height\";s:3:\"147\";s:5:\"width\";s:3:\"903\";s:9:\"thumbnail\";s:92:\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/avada-hosting-logo-02.png\";}s:11:\"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:18:\"sticky_header_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:25:\"sticky_header_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: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:80:\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/favicon-2.png\";s:2:\"id\";s:4:\"1631\";s:6:\"height\";s:3:\"192\";s:5:\"width\";s:3:\"192\";s:9:\"thumbnail\";s:80:\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/favicon-2.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-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\";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-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: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-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:205:\"Copyright 2012 - 2023 | <a href=\"https://bit.ly/2YJkGCr\">Avada Website Builder</a> by <a href=\"https://avada.com/\">Avada</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-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:9:{s:11:\"font-family\";s:34:\"var(--awb-typography2-font-family)\";s:11:\"font-backup\";s:1:\"1\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:22:\"var(--awb-typography2)\";s:9:\"font-size\";s:32:\"var(--awb-typography2-font-size)\";s:11:\"line-height\";s:34:\"var(--awb-typography2-line-height)\";s:14:\"letter-spacing\";s:37:\"var(--awb-typography2-letter-spacing)\";s:14:\"text-transform\";s:4:\"none\";s:5:\"color\";s:17:\"var(--awb-color1)\";}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: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-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\";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:10:\"Kumbh Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:7:\"variant\";s:3:\"700\";s:9:\"font-size\";s:4:\"48px\";s:11:\"line-height\";s:3:\"1.3\";s:14:\"letter-spacing\";s:1:\"0\";s:14:\"text-transform\";s:10:\"capitalize\";}s:11:\"typography2\";a:8:{s:5:\"label\";s:11:\"Subheadings\";s:11:\"font-family\";s:10:\"Kumbh Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:7:\"variant\";s:3:\"500\";s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:3:\"1.6\";s:14:\"letter-spacing\";s:1:\"0\";s:14:\"text-transform\";s:4:\"none\";}s:11:\"typography3\";a:8:{s:5:\"label\";s:4:\"Lead\";s:11:\"font-family\";s:10:\"Kumbh Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:7:\"variant\";s:3:\"600\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.2\";s:14:\"letter-spacing\";s:7:\"0.015em\";s:14:\"text-transform\";s:10:\"capitalize\";}s:11:\"typography4\";a:8:{s:5:\"label\";s:4:\"Body\";s:11:\"font-family\";s:10:\"Kumbh Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:7:\"variant\";s:3:\"300\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:4:\"1.72\";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:10:\"Kumbh Sans\";s:11:\"font-backup\";s:28:\"Arial, Helvetica, sans-serif\";s:7:\"variant\";s:3:\"400\";s:9:\"font-size\";s:4:\"14px\";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:1:\"1\";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:17:\"var(--awb-color8)\";s:16:\"link_hover_color\";s:17:\"var(--awb-color4)\";s:15:\"link_decoration\";s:1:\"1\";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:9:\"underline\";s:21:\"link_decoration_style\";s:6:\"dotted\";s:25:\"link_decoration_thickness\";s:3:\"1px\";s:32:\"link_decoration_underline_offset\";s:4:\"auto\";s:26:\"link_decoration_line_hover\";s:8:\"overline\";s:27:\"link_decoration_style_hover\";s:6:\"dotted\";s:31:\"link_decoration_thickness_hover\";s:3:\"1px\";s:38:\"link_decoration_underline_offset_hover\";s:4:\"auto\";s:13:\"h1_typography\";a:11:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:11:\"font-backup\";s:1:\"1\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:22:\"var(--awb-typography1)\";s:9:\"font-size\";s:4:\"48px\";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:\"0.67em\";s:13:\"margin-bottom\";s:6:\"0.67em\";s:14:\"text-transform\";s:10:\"capitalize\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:13:\"h2_typography\";a:11:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:11:\"font-backup\";s:1:\"1\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:22:\"var(--awb-typography1)\";s:9:\"font-size\";s:4:\"36px\";s:11:\"line-height\";s:3:\"1.4\";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:10:\"capitalize\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:13:\"h3_typography\";a:11:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:11:\"font-backup\";s:1:\"1\";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:10:\"capitalize\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:13:\"h4_typography\";a:11:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:11:\"font-backup\";s:1:\"1\";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:3:\"1.6\";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:10:\"capitalize\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:13:\"h5_typography\";a:11:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:11:\"font-backup\";s:1:\"1\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:22:\"var(--awb-typography1)\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.6\";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:10:\"capitalize\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:13:\"h6_typography\";a:11:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:11:\"font-backup\";s:1:\"1\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:22:\"var(--awb-typography1)\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.6\";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:10:\"capitalize\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:21:\"post_title_typography\";a:9:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:11:\"font-backup\";s:1:\"1\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:22:\"var(--awb-typography1)\";s:9:\"font-size\";s:4:\"48px\";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:10:\"capitalize\";s:5:\"color\";s:17:\"var(--awb-color8)\";}s:29:\"post_titles_extras_typography\";a:9:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:11:\"font-backup\";s:1:\"1\";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:14:\"text-transform\";s:10:\"capitalize\";s:5:\"color\";s:17:\"var(--awb-color8)\";}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-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\";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-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: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: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:\"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:22:\"social_sharing_padding\";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: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: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-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: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: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-color4)\";s:18:\"form_border_radius\";s:1:\"6\";s:19:\"form_views_counting\";s:3:\"all\";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: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:22:\"recaptcha_comment_form\";s:1:\"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: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\";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: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: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-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: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: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:6:\" [...]\";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:16:\"custom_scrollbar\";s:1:\"1\";s:20:\"scrollbar_background\";s:17:\"var(--awb-color2)\";s:16:\"scrollbar_handle\";s:97:\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) - 10%),var(--awb-color4-a))\";s:8:\"faq_slug\";s:9:\"faq-items\";s:13:\"cloning_posts\";s:1:\"1\";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:\"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:12:\"status_totop\";s:7:\"desktop\";s:14:\"totop_position\";s:14:\"right_floating\";s:19:\"totop_border_radius\";s:1:\"6\";s:16:\"totop_background\";s:97:\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\";s:22:\"totop_background_hover\";s:17:\"var(--awb-color4)\";s:16:\"totop_icon_color\";s:17:\"var(--awb-color1)\";s:16:\"totop_icon_hover\";s:17:\"var(--awb-color1)\";s:22:\"totop_scroll_down_only\";s:1:\"1\";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:\"0\";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: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: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: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\";a:1:{i:0;s:3:\"400\";}s:21:\"preload_fonts_subsets\";a:1:{i:0;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:10:\"custom_css\";s:0:\"\";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:32:\"alert_box_link_color_inheritance\";s:2:\"no\";s:21:\"alert_box_dismissable\";s:5:\"boxed\";s:16:\"alert_box_shadow\";s:2:\"no\";s:17:\"alert_border_size\";s:1:\"1\";s:19:\"alert_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: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-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\";s:1:\"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\";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-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:\"20px\";s:5:\"right\";s:4:\"34px\";s:6:\"bottom\";s:4:\"22px\";s:4:\"left\";s:4:\"34px\";}s:11:\"button_span\";s:2:\"no\";s:11:\"button_type\";s:4:\"Flat\";s:17:\"button_typography\";a:8:{s:11:\"font-family\";s:34:\"var(--awb-typography3-font-family)\";s:11:\"font-backup\";s:1:\"1\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:22:\"var(--awb-typography3)\";s:9:\"font-size\";s:32:\"var(--awb-typography3-font-size)\";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-color4)\";s:28:\"button_gradient_bottom_color\";s:17:\"var(--awb-color4)\";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:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";}s:20:\"button_border_radius\";a:4:{s:8:\"top_left\";s:3:\"5px\";s:9:\"top_right\";s:3:\"5px\";s:12:\"bottom_right\";s:3:\"5px\";s:11:\"bottom_left\";s:3:\"5px\";}s:19:\"button_border_color\";s:0:\"\";s:25:\"button_border_hover_color\";s:0:\"\";s:14:\"button_presets\";s:1:\"0\";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: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:98:\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 100%))\";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:3:\"0px\";}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: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: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: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-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\";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-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: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-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: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:29:\"before_after_label_hover_type\";s:8:\"together\";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: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:23:\"openstreetmap_map_style\";s:9:\"osm-carto\";s:33:\"openstreetmap_mapbox_access_token\";s:0:\"\";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: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: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-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: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:17:\"var(--awb-color3)\";s:31:\"social_links_border_color_hover\";s:17:\"var(--awb-color4)\";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: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: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: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: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:9:{s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:11:\"font-backup\";s:1:\"1\";s:10:\"font-style\";s:0:\"\";s:11:\"font-weight\";s:22:\"var(--awb-typography1)\";s:9:\"font-size\";s:4:\"17px\";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:\"18\";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:9:{s:11:\"font-family\";s:34:\"var(--awb-typography4-font-family)\";s:11:\"font-backup\";s:1:\"1\";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-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:\"plugins_used_direction\";s:3:\"row\";s:30:\"plugins_used_content_alignment\";s:4:\"left\";s:22:\"plugins_used_outer_gap\";s:2:\"15\";s:26:\"plugins_used_outer_padding\";a:4:{s:3:\"top\";s:3:\"1em\";s:5:\"right\";s:3:\"1em\";s:6:\"bottom\";s:3:\"1em\";s:4:\"left\";s:3:\"1em\";}s:35:\"plugins_used_outer_background_color\";s:7:\"#F2F7F8\";s:30:\"plugins_used_outer_border_size\";s:1:\"0\";s:31:\"plugins_used_outer_border_color\";s:7:\"#F2F7F8\";s:32:\"plugins_used_outer_border_radius\";s:1:\"7\";s:22:\"plugins_used_font_size\";s:5:\"1.2em\";s:23:\"plugins_used_text_color\";s:7:\"#333333\";s:22:\"prebuilt_site_tags_gap\";s:2:\"10\";s:36:\"prebuilt_site_tags_content_alignment\";s:4:\"left\";s:26:\"prebuilt_site_tags_padding\";a:4:{s:3:\"top\";s:5:\"0.5em\";s:5:\"right\";s:5:\"0.5em\";s:6:\"bottom\";s:5:\"0.5em\";s:4:\"left\";s:5:\"0.5em\";}s:35:\"prebuilt_site_tags_background_color\";s:7:\"#F2F7F8\";s:30:\"prebuilt_site_tags_border_size\";s:1:\"0\";s:31:\"prebuilt_site_tags_border_color\";s:7:\"#F2F7F8\";s:32:\"prebuilt_site_tags_border_radius\";s:1:\"7\";s:28:\"prebuilt_site_tags_font_size\";s:3:\"1em\";s:29:\"prebuilt_site_tags_text_color\";s:7:\"#333333\";s:18:\"swatches_direction\";s:3:\"row\";s:24:\"swatches_justify_content\";s:6:\"center\";s:20:\"swatches_align_items\";s:10:\"flex-start\";s:18:\"swatches_outer_gap\";s:2:\"15\";s:22:\"swatches_outer_padding\";a:4:{s:3:\"top\";s:4:\"50px\";s:5:\"right\";s:4:\"60px\";s:6:\"bottom\";s:4:\"50px\";s:4:\"left\";s:4:\"60px\";}s:31:\"swatches_outer_background_color\";s:7:\"#F2F7F8\";s:26:\"swatches_outer_border_size\";s:1:\"0\";s:28:\"swatches_outer_border_radius\";s:1:\"7\";s:20:\"swatches_swatch_size\";s:3:\"100\";s:27:\"swatches_swatch_border_size\";s:2:\"10\";s:28:\"swatches_swatch_border_color\";s:7:\"#ffffff\";s:29:\"swatches_swatch_border_radius\";s:2:\"50\";s:18:\"swatches_font_size\";s:4:\"15px\";s:19:\"swatches_text_color\";s:7:\"#333333\";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: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-weight\";s:22:\"var(--awb-typography1)\";s:9:\"font-size\";s:4:\"24px\";s:11:\"font-family\";s:34:\"var(--awb-typography1-font-family)\";s:11:\"font-backup\";s:4:\"true\";s:6:\"google\";s:4:\"true\";s:11:\"line-height\";s:3:\"1.6\";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: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-weight\";s:22:\"var(--awb-typography4)\";s:9:\"font-size\";s:32:\"var(--awb-typography4-font-size)\";s:11:\"font-family\";s:34:\"var(--awb-typography4-font-family)\";s:11:\"font-backup\";s:4:\"true\";s:6:\"google\";s:4:\"true\";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:22:\"reset_instagram_caches\";s:0:\"\";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: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:30:\"stripe_button_validate_test_sk\";s:0:\"\";s:30:\"stripe_button_validate_live_sk\";s:0:\"\";}','yes'),(3453,'_transient_timeout_fusion_fb_tos','1693413465','no');
INSERT INTO `wp_gc2023options` VALUES (3454,'_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:15:{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:32:\"alert_box_link_color_inheritance\";a:7:{s:5:\"label\";s:22:\"Link Color Inheritance\";s:11:\"description\";s:56:\"Choose if links should inherit the alert box text color.\";s:2:\"id\";s:32:\"alert_box_link_color_inheritance\";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:28:\"awb-alert-inherit-link-color\";s:12:\"remove_attrs\";a:1:{i:0;s:27:\"awb-alert-native-link-color\";}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:27:\"awb-alert-native-link-color\";s:12:\"remove_attrs\";a:1:{i:0;s:28:\"awb-alert-inherit-link-color\";}s:7:\"exclude\";a:1:{i:0;s:3:\"yes\";}}}}s:21:\"alert_box_dismissable\";a:7:{s:5:\"label\";s:14:\"Dismiss Button\";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:3:{s:5:\"boxed\";s:5:\"Boxed\";s:7:\"floated\";s:7:\"Floated\";s:2:\"no\";s:4:\"None\";}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:19:\"alert_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:\"alert_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-alert-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-alert-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-alert-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-alert-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: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:41:\"Container Padding for Site Width Template\";s:11:\"description\";s:109:\"Controls the top/right/bottom/left padding of the container element when using the Site Width 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:44:\"https://avada.com/documentation/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:3:\"1.6\";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: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:9:\"transport\";s:11:\"postMessage\";}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:15:{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:29:\"before_after_label_hover_type\";a:8:{s:5:\"label\";s:16:\"Label Hover Type\";s:11:\"description\";s:116:\"Choose if labels should appear together on hover, or if only the label of the currently hovered image should appear.\";s:2:\"id\";s:29:\"before_after_label_hover_type\";s:7:\"default\";s:8:\"together\";s:4:\"type\";s:6:\"select\";s:9:\"transport\";s:11:\"postMessage\";s:7:\"choices\";a:2:{s:8:\"together\";s:8:\"Together\";s:10:\"individual\";s:10:\"Individual\";}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:1423:\"<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.goodcausepartners.com%2Fwp-admin%2Fadmin.php%3Fpage%3Davada_wpnonce%3Dc288ebc921\">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.goodcausepartners.com%2Fwp-admin%2Fadmin.php%3Fpage%3Davada_wpnonce%3Dc288ebc921\">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.goodcausepartners.com/wp-admin/admin.php?page=avada&#038;revoke_instagram=1&#038;_wpnonce=c288ebc921\">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:31:\"openstreetmap_shortcode_section\";a:5:{s:5:\"label\";s:13:\"OpenStreetMap\";s:2:\"id\";s:31:\"openstreetmap_shortcode_section\";s:4:\"type\";s:9:\"accordion\";s:4:\"icon\";s:19:\"fusiona-check-empty\";s:6:\"fields\";a:2:{s:23:\"openstreetmap_map_style\";a:7:{s:4:\"type\";s:6:\"select\";s:5:\"label\";s:9:\"Map Style\";s:11:\"description\";s:72:\"Select the map style. Using Mapbox Style will required API Access Token.\";s:2:\"id\";s:23:\"openstreetmap_map_style\";s:7:\"choices\";a:19:{s:9:\"osm-carto\";s:9:\"OSM Carto\";s:6:\"osm-fr\";s:10:\"OSM France\";s:6:\"osm-de\";s:15:\"OSM Deutschland\";s:12:\"stamen-toner\";s:12:\"Stamen Toner\";s:14:\"stamen-terrain\";s:14:\"Stamen Terrain\";s:17:\"stamen-watercolor\";s:17:\"Stamen Watercolor\";s:7:\"topomap\";s:10:\"Topography\";s:8:\"carto-db\";s:8:\"Carto DB\";s:10:\"esri-world\";s:17:\"Esri World Street\";s:12:\"esri-imagery\";s:12:\"Esri Imagery\";s:9:\"esri-topo\";s:13:\"Esri Topo Map\";s:14:\"mb-streets-v12\";s:14:\"Mapbox Streets\";s:15:\"mb-outdoors-v12\";s:15:\"Mapbox Outdoors\";s:12:\"mb-light-v11\";s:12:\"Mapbox Light\";s:11:\"mb-dark-v11\";s:11:\"Mapbox Dark\";s:15:\"mb-satellite-v9\";s:16:\"Mapbox Satellite\";s:24:\"mb-satellite-streets-v12\";s:24:\"Mapbox Satellite Streets\";s:20:\"mb-navigation-day-v1\";s:21:\"Mapbox Navigation Day\";s:22:\"mb-navigation-night-v1\";s:23:\"Mapbox Navigation Night\";}s:7:\"default\";s:9:\"osm-carto\";s:9:\"transport\";s:11:\"postMessage\";}s:33:\"openstreetmap_mapbox_access_token\";a:5:{s:5:\"label\";s:19:\"MapBox Access Token\";s:11:\"description\";s:207:\"Enter your MapBox Access Token to use custom MapBox tiles. For more information please see <a href=\"https://docs.mapbox.com/help/getting-started/access-tokens/\" target=\"_blank\">MapBox Access Token Guide</a>.\";s:2:\"id\";s:33:\"openstreetmap_mapbox_access_token\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:4:\"text\";}}}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:9:{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:4:\"wavy\";s:4:\"Wavy\";}}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:3:\"1.6\";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>\";}}}}','no'),(3421,'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'),(3429,'wp_smush_global_stats','a:4:{s:30:\"stats_update_started_timestamp\";i:1692807968;s:22:\"image_attachment_count\";i:46;s:22:\"optimized_images_count\";i:12;s:23:\"stats_updated_timestamp\";i:1692807970;}','no'),(828,'WPLANG','','yes'),(829,'new_admin_email','info@goodcausepartners.com','yes'),(3451,'_transient_timeout_fusion_tos','1693413465','no'),(3452,'_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:8:{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: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>1100</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:462:\"<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.goodcausepartners.com/wp-admin/admin.php?page=avada-layouts\" target=\"_blank\">this page</a>, or <a href=\"https://test-site.goodcausepartners.com/wp-admin/post.php?post=12&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:337:\"<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.goodcausepartners.com/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:98:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/header1.jpg\";s:2:\"v2\";s:98:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/header2.jpg\";s:2:\"v3\";s:98:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/header3.jpg\";s:2:\"v4\";s:98:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/header4.jpg\";s:2:\"v5\";s:98:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/header5.jpg\";s:2:\"v6\";s:98:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/header6.jpg\";s:2:\"v7\";s:98:\"https://test-site.goodcausepartners.com/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:337:\"<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.goodcausepartners.com/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:337:\"<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.goodcausepartners.com/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:337:\"<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.goodcausepartners.com/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:334:\"<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.goodcausepartners.com/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:337:\"<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.goodcausepartners.com/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>215</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:82:\"https://test-site.goodcausepartners.com/wp-admin/nav-menus.php?action=edit&menu=20\";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:495:\"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://avada.com/documentation/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:348:\"<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.goodcausepartners.com/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:86:\"https://test-site.goodcausepartners.com/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:89:\"https://test-site.goodcausepartners.com/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:342:\"<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.goodcausepartners.com/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:353:\"<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.goodcausepartners.com/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:301:\"Controls what displays in the breadcrumbs area.   <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:300:\"Turn on to display the page title bar headings.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:377:\"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://avada.com/documentation/the-avada-options-network/\" 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:306:\"Controls the height of the page title bar on desktop.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:305:\"Controls the height of the page title bar on mobile.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:305:\"Controls the background color of the page title bar.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:302:\"Controls the border colors of the page title bar.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:312:\"Controls the font size for the page title bar main heading.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:314:\"Controls the line height for the page title bar main heading.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:312:\"Controls the text color of the page title bar main heading.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:309:\"Controls the font size for the page titlebar subheading.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:310:\"Controls the text color of the page title bar subheading.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:418:\"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://avada.com/documentation/the-avada-options-network/\" 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:368:\"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://avada.com/documentation/the-avada-options-network/\" 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:392:\"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://avada.com/documentation/the-avada-options-network/\" 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:370:\"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://avada.com/documentation/the-avada-options-network/\" 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:320:\"Turn on to use a parallax scrolling effect on the background image.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:304:\"Turn on to have the page title text fade on scroll.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:302:\"Turn on to display breadcrumbs on mobile devices.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:298:\"Controls the text before the breadcrumb menu.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:308:\"Controls the type of separator between each breadcrumb.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:8:\"css_vars\";a:1:{i:0;a:4:{s:4:\"name\";s:23:\"--breadcrumbs_separator\";s:7:\"element\";s:63:\".fusion-page-title-bar, .fusion-breadcrumbs .awb-breadcrumb-sep\";s:13:\"value_pattern\";s:3:\"\"$\"\";s:8:\"callback\";a:2:{i:0;s:13:\"replace_chars\";i:1;a:1:{s:12:\"replacements\";a:1:{s:1:\"\\\";s:2:\"\\\\\";}}}}}}s:21:\"breadcrumbs_font_size\";a:8:{s:5:\"label\";s:21:\"Breadcrumbs Font Size\";s:11:\"description\";s:301:\"Controls the font size for the breadcrumbs text.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:301:\"Controls the text color of the breadcrumbs font.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:307:\"Controls the text hover color of the breadcrumbs font.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:322:\"Turn on to display the post categories/terms in the breadcrumbs path.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:315:\"Turn on to display post type archives in the breadcrumbs path.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:310:\"Turn on to display the post name in the breadcrumbs path.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:353:\"<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.goodcausepartners.com/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:60:\"https://test-site.goodcausepartners.com/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:334:\"<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.goodcausepartners.com/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:337:\"<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.goodcausepartners.com/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:60:\"https://test-site.goodcausepartners.com/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:298:\"Controls the number of columns in the footer.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:297:\"Turn on to center the footer widget content.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:297:\"Turn on to center the copyright bar content.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:328:\"Enter the text that displays in the copyright bar. HTML markup can be used.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:205:\"Copyright 2012 - 2023 | <a href=\"https://bit.ly/2YJkGCr\">Avada Website Builder</a> by <a href=\"https://avada.com/\">Avada</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:337:\"<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.goodcausepartners.com/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:359:\"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://avada.com/documentation/the-avada-options-network/\" 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:362:\"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://avada.com/documentation/the-avada-options-network/\" 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:295:\"Controls how the background image repeats.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:301:\"Controls how the background image is positioned.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:337:\"<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.goodcausepartners.com/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:367:\"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://avada.com/documentation/the-avada-options-network/\" 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:311:\"Controls the top/right/bottom/left padding for the footer.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:297:\"Controls the background color of the footer.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:296:\"Controls the size of the top footer border.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:294:\"Controls the border colors of the footer.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:338:\"Turn on to have the footer widget area display vertical divider line between columns.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:335:\"Controls the size of the vertical divider line between footer widget area columns.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:336:\"Controls the style of the vertical divider line between footer widget area columns.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:359:\"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://avada.com/documentation/the-avada-options-network/\" 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:313:\"Controls the right/left padding for the footer widget areas.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:308:\"Controls the top/bottom padding for the copyright area.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:312:\"Controls the background color of the footer copyright area.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:299:\"Controls the size of the top copyright border.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:310:\"Controls the border colors for the footer copyright area.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:315:\"These settings control the typography for the footer headings.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:296:\"Controls the text color of the footer font.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:301:\"Controls the text color of the footer link font.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:307:\"Controls the text hover color of the footer link font.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:299:\"Controls the font size for the copyright text.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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: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:99:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern1.png\";s:8:\"pattern2\";s:99:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern2.png\";s:8:\"pattern3\";s:99:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern3.png\";s:8:\"pattern4\";s:99:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern4.png\";s:8:\"pattern5\";s:99:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern5.png\";s:8:\"pattern6\";s:99:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern6.png\";s:8:\"pattern7\";s:99:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern7.png\";s:8:\"pattern8\";s:99:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern8.png\";s:8:\"pattern9\";s:99:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern9.png\";s:9:\"pattern10\";s:100:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern10.png\";s:9:\"pattern11\";s:100:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern11.png\";s:9:\"pattern12\";s:100:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern12.png\";s:9:\"pattern13\";s:100:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern13.png\";s:9:\"pattern14\";s:100:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern14.png\";s:9:\"pattern15\";s:100:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern15.png\";s:9:\"pattern16\";s:100:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern16.png\";s:9:\"pattern17\";s:100:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern17.png\";s:9:\"pattern18\";s:100:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern18.png\";s:9:\"pattern19\";s:100:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern19.png\";s:9:\"pattern20\";s:100:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern20.png\";s:9:\"pattern21\";s:100:\"https://test-site.goodcausepartners.com/wp-content/themes/Avada/assets/images/patterns/pattern21.png\";s:9:\"pattern22\";s:100:\"https://test-site.goodcausepartners.com/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:99:\"url(\"https://test-site.goodcausepartners.com/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:14:{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:32:\"link_decoration_underline_offset\";a:8:{s:5:\"label\";s:37:\"Link Text Decoration Underline Offset\";s:11:\"description\";s:67:\"Controls the text decoration underline offset of all general links.\";s:2:\"id\";s:32:\"link_decoration_underline_offset\";s:7:\"default\";s:4:\"auto\";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:4:{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\";}i:2;a:3:{s:7:\"setting\";s:20:\"link_decoration_line\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:8:\"overline\";}i:3;a:3:{s:7:\"setting\";s:20:\"link_decoration_line\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:12:\"line-through\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:38:\"--awb-link_decoration_underline_offset\";}}}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:\"link_decoration_underline_offset_hover\";a:8:{s:5:\"label\";s:43:\"Link Hover Text Decoration Underline Offset\";s:11:\"description\";s:73:\"Controls the text hover decoration underline offset of all general links.\";s:2:\"id\";s:38:\"link_decoration_underline_offset_hover\";s:7:\"default\";s:4:\"auto\";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:4:{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\";}i:2;a:3:{s:7:\"setting\";s:26:\"link_decoration_line_hover\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:8:\"overline\";}i:3;a:3:{s:7:\"setting\";s:26:\"link_decoration_line_hover\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:12:\"line-through\";}}s:8:\"css_vars\";a:1:{i:0;a:1:{s:4:\"name\";s:44:\"--awb-link_decoration_underline_offset_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:335:\"<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.goodcausepartners.com/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:336:\"<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.goodcausepartners.com/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:356:\"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.goodcausepartners.com/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:326:\"Controls the number of words in the excerpts for portfolio archive pages.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:353:\"Controls the padding for the portfolio text layout when using boxed mode in portfolio archive pages.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:335:\"<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.goodcausepartners.com/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:336:\"<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.goodcausepartners.com/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:334:\"<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.goodcausepartners.com/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:337:\"<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.goodcausepartners.com/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:334:\"<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.goodcausepartners.com/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:337:\"<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.goodcausepartners.com/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:3:{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:298:\"Controls the border color of the form fields.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:319:\"Controls the border color of the form fields when they have focus.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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: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:1885:\"<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://avada.com/documentation/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.goodcausepartners.com%2Fwp-admin%2Fadmin.php%3Fpage%3Davada%26_wpnonce%3D9e32549519\">Try again.</a></div><div data-id=\"no_token\"  style=\"display:flex\"><span><strong>Currently not connected. </strong><a target=\"_blank\" href=\"https://avada.com/documentation/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.goodcausepartners.com%2Fwp-admin%2Fadmin.php%3Fpage%3Davada%26_wpnonce%3D9e32549519\">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.goodcausepartners.com/wp-admin/admin.php?page=avada&#038;revoke_hubspot=1&#038;_wpnonce=9e32549519\">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:1523:\"<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://avada.com/documentation/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.goodcausepartners.com%2Fwp-admin%2Fadmin.php%3Fpage%3Davada%26_wpnonce%3D582003fb0c\">Try again.</a></div><div data-id=\"no_token\"  style=\"display:flex\"><span><strong>Currently not connected. </strong><a target=\"_blank\" href=\"https://avada.com/documentation/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.goodcausepartners.com%2Fwp-admin%2Fadmin.php%3Fpage%3Davada%26_wpnonce%3D582003fb0c\">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.goodcausepartners.com/wp-admin/admin.php?page=avada&#038;revoke_mailchimp=1&#038;_wpnonce=582003fb0c\">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:9:\"recaptcha\";a:7:{s:5:\"label\";s:16:\"Google reCaptcha\";s:2:\"id\";s:17:\"recaptcha_section\";s:8:\"priority\";i:22;s:8:\"is_panel\";b:1;s:4:\"icon\";s:14:\"el-icon-puzzle\";s:8:\"alt_icon\";s:26:\"fusiona-avada-form-element\";s:6:\"fields\";a:8:{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:169:\"Follow the steps in <a href=\"https://avada.com/documentation/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:171:\"Follow the steps in <a href=\"https://avada.com/documentation/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:22:\"recaptcha_comment_form\";a:5:{s:5:\"label\";s:22:\"reCAPTCHA For Comments\";s:11:\"description\";s:42:\"Turn on to add reCAPTCHA to comment forms.\";s:2:\"id\";s:22:\"recaptcha_comment_form\";s:7:\"default\";s:1:\"0\";s:4:\"type\";s:6:\"switch\";}}}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:4:\"data\";s:10:\"post_types\";s:5:\"multi\";b:1;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:312:\"Set the minimal character count to trigger the live search.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:336:\"Controls the number of posts that should be displayed as search result suggestions.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:333:\"Controls the height of the container in which the search results will be listed.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:2:{s:4:\"name\";s:28:\"--live_search_results_height\";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:318:\"Turn on to display the featured image of each live search result.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:313:\"Turn on to display the post type of each live search result.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:335:\"<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.goodcausepartners.com/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:336:\"<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.goodcausepartners.com/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:6:{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:17:{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:6:\" [...]\";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: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:13:\"cloning_posts\";a:6:{s:5:\"label\";s:26:\"Enable Cloning Pages/Posts\";s:11:\"description\";s:151:\"Adds a button in posts/pages view under each item to allow an easy and fast way to clone the item. The button is also added to avada custom post types.\";s:2:\"id\";s:13:\"cloning_posts\";s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"switch\";s:9:\"transport\";s:11:\"postMessage\";}}}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:301:\"Controls the direction the rollover starts from.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:309:\"Turn on to display the post title in the image rollover.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:314:\"Turn on to display the post categories in the image rollover.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:321:\"Turn on to display the icon background circle in the image rollover.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:309:\"Controls the top color of the image rollover background.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:312:\"Controls the bottom color of the image rollover background.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:325:\"Controls the color of image rollover text and icon circular backgrounds.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:307:\"Controls the color of the icons in the image rollover.  <span class=\"fusion-hover-description\"><a href=\"https://avada.com/documentation/the-avada-options-network/\" 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:13:\"totop_section\";a:5:{s:5:\"label\";s:5:\"ToTop\";s:11:\"description\";s:0:\"\";s:2:\"id\";s:13:\"totop_section\";s:4:\"type\";s:11:\"sub-section\";s:6:\"fields\";a:8:{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:14:\"totop_position\";a:8:{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:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:12:\"status_totop\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"off\";}}}s:19:\"totop_border_radius\";a:8:{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:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:12:\"status_totop\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"off\";}}}s:16:\"totop_background\";a:7:{s:5:\"label\";s:16:\"ToTop Background\";s:11:\"description\";s:50:\"Controls the background color of the ToTop button.\";s:2:\"id\";s:16:\"totop_background\";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:18:\"--totop_background\";s:7:\"element\";s:6:\"#toTop\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:12:\"status_totop\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"off\";}}}s:22:\"totop_background_hover\";a:7:{s:5:\"label\";s:28:\"ToTop Background Hover Color\";s:11:\"description\";s:56:\"Controls the background hover color of the ToTop button.\";s:2:\"id\";s:22:\"totop_background_hover\";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:24:\"--totop_background_hover\";s:7:\"element\";s:6:\"#toTop\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:12:\"status_totop\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"off\";}}}s:16:\"totop_icon_color\";a:7:{s:5:\"label\";s:16:\"ToTop Icon Color\";s:11:\"description\";s:50:\"Controls the icon color color of the ToTop button.\";s:2:\"id\";s:16:\"totop_icon_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:18:\"--totop_icon_color\";s:7:\"element\";s:6:\"#toTop\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:12:\"status_totop\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"off\";}}}s:16:\"totop_icon_hover\";a:7:{s:5:\"label\";s:22:\"ToTop Icon Hover Color\";s:11:\"description\";s:50:\"Controls the icon hover color of the ToTop button.\";s:2:\"id\";s:16:\"totop_icon_hover\";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:18:\"--totop_icon_hover\";s:7:\"element\";s:6:\"#toTop\";s:8:\"callback\";a:1:{i:0;s:14:\"sanitize_color\";}}}s:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:12:\"status_totop\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"off\";}}}s:22:\"totop_scroll_down_only\";a:7:{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:8:\"required\";a:1:{i:0;a:3:{s:7:\"setting\";s:12:\"status_totop\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:3:\"off\";}}}}}}}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:24:{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:99:\"url(\"https://test-site.goodcausepartners.com/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:102:\"url(\"https://test-site.goodcausepartners.com/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: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:4:{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: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:124:\"Exclude parts of your site like feed, pages, or archives from Maintenance or Coming Soon mode. Add one slug or URL 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:26:{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:467:\"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.goodcausepartners.com/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:18:{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:\"800-italic\";s:21:\"Extra-Bold 800 Italic\";i:900;s:14:\"Ultra-Bold 900\";s:10:\"900-italic\";s:21:\"Ultra-Bold 900 Italic\";}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:16:\"js_compiler_note\";a:4:{s:5:\"label\";s:0:\"\";s:11:\"description\";s:151:\"<div class=\"fusion-redux-important-notice\"><strong>IMPORTANT NOTE:</strong> JS Compiler is disabled. File does not exist or access is restricted.</div>\";s:2:\"id\";s:16:\"js_compiler_note\";s:4:\"type\";s:6:\"custom\";}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:397:\"<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.goodcausepartners.com/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'),(985,'fs_active_plugins','O:8:\"stdClass\":0:{}','yes'),(3416,'_transient_timeout_wp-smush-conflict_check','1692811386','no'),(3417,'_transient_wp-smush-conflict_check','a:1:{i:0;s:7:\"Jetpack\";}','no'),(986,'fs_debug_mode','','yes'),(987,'fs_accounts','a:13:{s:21:\"id_slug_type_path_map\";a:1:{i:12503;a:2:{s:4:\"slug\";s:23:\"password-protected-free\";s:4:\"type\";s:6:\"plugin\";}}s:11:\"plugin_data\";a:1:{s:23:\"password-protected-free\";a:22:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:9:\"prev_path\";s:41:\"password-protected/password-protected.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1692657109;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:1;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:6:\"2.5.10\";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:5:\"2.6.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:31:\"test-site.goodcausepartners.com\";s:9:\"server_ip\";s:12:\"23.235.210.6\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1692657116;s:7:\"version\";s:5:\"2.6.4\";}s:15:\"prev_is_premium\";b:0;s:30:\"is_diagnostic_tracking_allowed\";b:1;s:30:\"is_extensions_tracking_allowed\";b:1;s:14:\"has_trial_plan\";b:0;s:19:\"keepalive_timestamp\";i:1692807786;s:20:\"activation_timestamp\";i:1692657116;s:14:\"sync_timestamp\";i:1692757183;s:22:\"install_sync_timestamp\";i:1692807786;}}s:13:\"file_slug_map\";a:1:{s:41:\"password-protected/password-protected.php\";s:23:\"password-protected-free\";}s:7:\"plugins\";a:1:{s:23:\"password-protected-free\";O:9:\"FS_Plugin\":24:{s:2:\"id\";s:5:\"12503\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;s:10:\"public_key\";s:32:\"pk_e9210517721d27b5112fa7773a600\";s:10:\"secret_key\";N;s:16:\"parent_plugin_id\";N;s:5:\"title\";s:18:\"Password Protected\";s:4:\"slug\";s:23:\"password-protected-free\";s:12:\"premium_slug\";s:34:\"password-protected-premium-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:41:\"password-protected/password-protected.php\";s:7:\"version\";s:5:\"2.6.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:17:\"opt_in_moderation\";N;}}s:9:\"unique_id\";s:32:\"267418d4a77f480d2aad6e76cd4b96f0\";s:5:\"plans\";a:1:{s:23:\"password-protected-free\";a:1:{i:0;O:14:\"FS_Plugin_Plan\":21:{s:2:\"id\";s:8:\"MjE0NTI=\";s:7:\"updated\";N;s:7:\"created\";s:28:\"MjAyMy0wNS0xNSAwNzo1MDozMw==\";s:22:\"\0FS_Entity\0_is_updated\";b:0;s:9:\"plugin_id\";s:8:\"MTI1MDM=\";s:4:\"name\";s:8:\"ZnJlZQ==\";s:5:\"title\";s:8:\"RnJlZQ==\";s:11:\"description\";s:20:\"RnJlZSBmb3JldmVyIQ==\";s:17:\"is_free_localhost\";s:4:\"MQ==\";s:17:\"is_block_features\";s:4:\"MQ==\";s:12:\"license_type\";s:4:\"MA==\";s:16:\"is_https_support\";s:0:\"\";s:12:\"trial_period\";N;s:23:\"is_require_subscription\";s:0:\"\";s:10:\"support_kb\";N;s:13:\"support_forum\";N;s:13:\"support_email\";N;s:13:\"support_phone\";N;s:13:\"support_skype\";N;s:18:\"is_success_manager\";s:0:\"\";s:11:\"is_featured\";s:0:\"\";}}}s:14:\"active_plugins\";O:8:\"stdClass\":3:{s:9:\"timestamp\";i:1692807786;s:3:\"md5\";s:32:\"ee45502bbf56a708c81041bc959ca651\";s:7:\"plugins\";a:8:{s:33:\"fusion-builder/fusion-builder.php\";a:5:{s:4:\"slug\";s:14:\"fusion-builder\";s:7:\"version\";s:6:\"3.11.2\";s:5:\"title\";s:13:\"Avada Builder\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:27:\"fusion-core/fusion-core.php\";a:5:{s:4:\"slug\";s:11:\"fusion-core\";s:7:\"version\";s:6:\"5.11.2\";s:5:\"title\";s:10:\"Avada Core\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:19:\"jetpack/jetpack.php\";a:5:{s:4:\"slug\";s:7:\"jetpack\";s:7:\"version\";s:4:\"12.4\";s:5:\"title\";s:7:\"Jetpack\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:41:\"password-protected/password-protected.php\";a:5:{s:4:\"slug\";s:18:\"password-protected\";s:7:\"version\";s:5:\"2.6.4\";s:5:\"title\";s:18:\"Password Protected\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:23:\"wp-smushit/wp-smush.php\";a:5:{s:4:\"slug\";s:10:\"wp-smushit\";s:7:\"version\";s:6:\"3.14.1\";s:5:\"title\";s:5:\"Smush\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:35:\"boldgrid-backup/boldgrid-backup.php\";a:5:{s:4:\"slug\";s:15:\"boldgrid-backup\";s:7:\"version\";s:6:\"1.15.7\";s:5:\"title\";s:12:\"Total Upkeep\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";a:5:{s:4:\"slug\";s:23:\"boldgrid-backup-premium\";s:7:\"version\";s:5:\"1.5.9\";s:5:\"title\";s:20:\"Total Upkeep Premium\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:33:\"duplicate-post/duplicate-post.php\";a:5:{s:4:\"slug\";s:14:\"duplicate-post\";s:7:\"version\";s:3:\"4.5\";s:5:\"title\";s:20:\"Yoast Duplicate Post\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}}}s:11:\"all_plugins\";O:8:\"stdClass\":3:{s:9:\"timestamp\";i:1692807786;s:3:\"md5\";s:32:\"3de5fc430fa69b8d417416f31b2dab83\";s:7:\"plugins\";a:12:{s:19:\"akismet/akismet.php\";a:5:{s:4:\"slug\";s:7:\"akismet\";s:7:\"version\";s:3:\"5.2\";s:5:\"title\";s:34:\"Akismet Anti-Spam: Spam Protection\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:33:\"fusion-builder/fusion-builder.php\";a:5:{s:4:\"slug\";s:14:\"fusion-builder\";s:7:\"version\";s:6:\"3.11.2\";s:5:\"title\";s:13:\"Avada Builder\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:27:\"fusion-core/fusion-core.php\";a:5:{s:4:\"slug\";s:11:\"fusion-core\";s:7:\"version\";s:6:\"5.11.2\";s:5:\"title\";s:10:\"Avada Core\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:9:\"hello.php\";a:5:{s:4:\"slug\";s:11:\"hello-dolly\";s:7:\"version\";s:5:\"1.7.2\";s:5:\"title\";s:11:\"Hello Dolly\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:19:\"jetpack/jetpack.php\";a:5:{s:4:\"slug\";s:7:\"jetpack\";s:7:\"version\";s:4:\"12.4\";s:5:\"title\";s:7:\"Jetpack\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:41:\"password-protected/password-protected.php\";a:5:{s:4:\"slug\";s:18:\"password-protected\";s:7:\"version\";s:5:\"2.6.4\";s:5:\"title\";s:18:\"Password Protected\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:23:\"wp-smushit/wp-smush.php\";a:5:{s:4:\"slug\";s:10:\"wp-smushit\";s:7:\"version\";s:6:\"3.14.1\";s:5:\"title\";s:5:\"Smush\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:35:\"boldgrid-backup/boldgrid-backup.php\";a:5:{s:4:\"slug\";s:15:\"boldgrid-backup\";s:7:\"version\";s:6:\"1.15.7\";s:5:\"title\";s:12:\"Total Upkeep\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";a:5:{s:4:\"slug\";s:23:\"boldgrid-backup-premium\";s:7:\"version\";s:5:\"1.5.9\";s:5:\"title\";s:20:\"Total Upkeep Premium\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:19:\"weforms/weforms.php\";a:5:{s:4:\"slug\";s:7:\"weforms\";s:7:\"version\";s:6:\"1.6.17\";s:5:\"title\";s:7:\"weForms\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:33:\"duplicate-post/duplicate-post.php\";a:5:{s:4:\"slug\";s:14:\"duplicate-post\";s:7:\"version\";s:3:\"4.5\";s:5:\"title\";s:20:\"Yoast Duplicate Post\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:24:\"wordpress-seo/wp-seo.php\";a:6:{s:4:\"slug\";s:13:\"wordpress-seo\";s:7:\"version\";s:5:\"20.13\";s:5:\"title\";s:9:\"Yoast SEO\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;s:7:\"Version\";s:4:\"21.0\";}}}s:10:\"all_themes\";O:8:\"stdClass\":3:{s:9:\"timestamp\";i:1692807786;s:3:\"md5\";s:32:\"5f3ab3d33286940be2f41eaaaea361a3\";s:6:\"themes\";a:5:{s:5:\"Avada\";a:5:{s:4:\"slug\";s:5:\"Avada\";s:7:\"version\";s:6:\"7.11.2\";s:5:\"title\";s:5:\"Avada\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:17:\"Avada-Child-Theme\";a:5:{s:4:\"slug\";s:17:\"Avada-Child-Theme\";s:7:\"version\";s:5:\"1.0.0\";s:5:\"title\";s:11:\"Avada Child\";s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;}s:15:\"twentytwentyone\";a:5:{s:4:\"slug\";s:15:\"twentytwentyone\";s:7:\"version\";s:3:\"1.9\";s:5:\"title\";s:17:\"Twenty Twenty-One\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:17:\"twentytwentythree\";a:5:{s:4:\"slug\";s:17:\"twentytwentythree\";s:7:\"version\";s:3:\"1.2\";s:5:\"title\";s:19:\"Twenty Twenty-Three\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}s:15:\"twentytwentytwo\";a:5:{s:4:\"slug\";s:15:\"twentytwentytwo\";s:7:\"version\";s:3:\"1.5\";s:5:\"title\";s:17:\"Twenty Twenty-Two\";s:9:\"is_active\";b:0;s:14:\"is_uninstalled\";b:0;}}}s:5:\"sites\";a:1:{s:23:\"password-protected-free\";O:7:\"FS_Site\":25:{s:2:\"id\";s:8:\"12903879\";s:7:\"updated\";s:19:\"2023-08-21 22:31:57\";s:7:\"created\";s:19:\"2023-08-21 22:31:55\";s:22:\"\0FS_Entity\0_is_updated\";b:0;s:10:\"public_key\";s:32:\"pk_b1b6e39c5fa3db7885f1f88ebf17c\";s:10:\"secret_key\";s:32:\"sk_ANC2w<-52lFXV14VS7_;<.oP?(PYw\";s:7:\"site_id\";s:9:\"188497099\";s:9:\"plugin_id\";s:5:\"12503\";s:7:\"user_id\";s:7:\"7361838\";s:5:\"title\";s:29:\"Good Cause Marketing Partners\";s:3:\"url\";s:39:\"https://test-site.goodcausepartners.com\";s:7:\"version\";s:5:\"2.6.4\";s:8:\"language\";s:5:\"en-US\";s:16:\"platform_version\";s:3:\"6.3\";s:11:\"sdk_version\";s:6:\"2.5.10\";s:28:\"programming_language_version\";s:6:\"8.1.21\";s:7:\"plan_id\";s:5:\"21452\";s:10:\"license_id\";N;s:13:\"trial_plan_id\";N;s:10:\"trial_ends\";N;s:10:\"is_premium\";b:0;s:15:\"is_disconnected\";b:0;s:9:\"is_active\";b:1;s:14:\"is_uninstalled\";b:0;s:7:\"is_beta\";b:0;}}s:5:\"users\";a:1:{i:7361838;O:7:\"FS_User\":12:{s:2:\"id\";s:7:\"7361838\";s:7:\"updated\";N;s:7:\"created\";s:19:\"2023-08-21 22:31:55\";s:22:\"\0FS_Entity\0_is_updated\";b:0;s:10:\"public_key\";s:32:\"pk_b17f34bcfe13511131dbc072a0970\";s:10:\"secret_key\";s:32:\"sk_4^$mvcUi1w<.i%nvr?2@Y*[SA5EZk\";s:5:\"email\";s:26:\"info@goodcausepartners.com\";s:5:\"first\";s:5:\"Admin\";s:4:\"last\";s:0:\"\";s:11:\"is_verified\";b:0;s:11:\"customer_id\";N;s:5:\"gross\";N;}}s:6:\"addons\";a:1:{i:12503;a:1:{i:0;O:9:\"FS_Plugin\":24:{s:2:\"id\";s:5:\"12504\";s:7:\"updated\";s:19:\"2023-08-22 21:10:15\";s:7:\"created\";s:19:\"2023-04-20 06:51:37\";s:22:\"\0FS_Entity\0_is_updated\";b:0;s:10:\"public_key\";s:32:\"pk_53b9eeff75298bb8a0fdf40cffa51\";s:10:\"secret_key\";N;s:16:\"parent_plugin_id\";s:5:\"12503\";s:5:\"title\";s:26:\"Password Protected Premium\";s:4:\"slug\";s:26:\"password-protected-premium\";s:12:\"premium_slug\";s:22:\"Password-Protected-Pro\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";N;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";i:2;s:4:\"file\";N;s:7:\"version\";N;s:11:\"auto_update\";N;s:4:\"info\";O:14:\"FS_Plugin_Info\":13:{s:2:\"id\";s:4:\"3502\";s:7:\"updated\";N;s:7:\"created\";s:19:\"2023-05-05 11:28:54\";s:22:\"\0FS_Entity\0_is_updated\";b:0;s:9:\"plugin_id\";s:5:\"12504\";s:11:\"description\";s:692:\"<ol>\n    <li>\n        Option to exclude individual pages and posts.\n    </li>\n    <li>\n        Exclude specific post types.\n    </li>\n    <li>\n        Feature to limit password attempts for certain interval.\n    </li>\n    <li>\n        Ability to manage multiple passwords with the following options:\n        <ol>\n            <li>\n                Option to activate and deactivate manually.\n            </li>\n            <li>\n                Set the expiry date for each password.\n            </li>\n            <li>\n                Set the usage limit for each password.\n            </li>\n        </ol>\n    </li>\n    <li>\n        Display activity log for each password attempt.\n    </li>\n</ol>\";s:17:\"short_description\";s:119:\"With Pro, get support for Multiple passwords, Bypass URL, Ability to exclude Post/Pages/Custom POST Type and much more.\";s:10:\"banner_url\";N;s:15:\"card_banner_url\";N;s:15:\"selling_point_0\";s:36:\"Ability to manage multiple passwords\";s:15:\"selling_point_1\";s:46:\"Display activity log for each password attempt\";s:15:\"selling_point_2\";s:34:\"Exclude individual pages and posts\";s:11:\"screenshots\";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:17:\"opt_in_moderation\";N;}}}s:13:\"admin_notices\";a:1:{s:23:\"password-protected-free\";a:0:{}}}','yes'),(988,'fs_api_cache','a:0:{}','no'),(991,'password_protected_version','2.6.4','yes'),(3418,'auto_update_plugins','a:1:{i:0;s:23:\"wp-smushit/wp-smush.php\";}','no'),(3423,'_transient_timeout_wp-smush-bulk_sent_count','1692808200','no'),(3424,'_transient_wp-smush-bulk_sent_count','1','no'),(3425,'dir_smush_stats','a:1:{s:9:\"dir_smush\";a:2:{s:5:\"total\";i:0;s:9:\"optimised\";i:0;}}','no'),(3426,'wp-smush-optimization-global-stats','a:8:{s:4:\"time\";d:1.7800000000000000266453525910037569701671600341796875;s:5:\"bytes\";i:683219;s:7:\"percent\";d:90.030000000000001136868377216160297393798828125;s:11:\"size_before\";i:758843;s:10:\"size_after\";i:75624;s:5:\"count\";i:1;s:14:\"attachment_ids\";s:4:\"1785\";s:11:\"lossy_count\";i:1;}','no'),(3427,'wp-smush-png2jpg-global-stats','a:7:{s:4:\"time\";d:0;s:5:\"bytes\";i:0;s:7:\"percent\";i:0;s:11:\"size_before\";i:0;s:10:\"size_after\";i:0;s:5:\"count\";i:0;s:14:\"attachment_ids\";s:0:\"\";}','no'),(3428,'wp-smush-resize-global-stats','a:7:{s:4:\"time\";d:0;s:5:\"bytes\";i:0;s:7:\"percent\";i:0;s:11:\"size_before\";i:0;s:10:\"size_after\";i:0;s:5:\"count\";i:0;s:14:\"attachment_ids\";s:0:\"\";}','no'),(994,'fs_gdpr','a:1:{s:2:\"u1\";a:1:{s:18:\"show_opt_in_notice\";b:0;}}','yes'),(995,'_site_transient_timeout_fs_locked_1','2008017117','no'),(996,'_site_transient_fs_locked_1','1','no'),(997,'password_protected_status','1','yes'),(998,'password_protected_feeds','0','yes'),(999,'password_protected_rest','0','yes'),(1000,'password_protected_administrators','0','yes'),(1001,'password_protected_users','0','yes'),(1002,'password_protected_password','35e15fa0caeb8fd3169f8d1241fc5b58','yes'),(1003,'password_protected_allowed_ip_addresses','','yes'),(1004,'password_protected_remember_me','1','yes'),(1005,'password_protected_remember_me_lifetime','14','yes'),(2489,'fusion_options-transients','a:2:{s:14:\"changed_values\";a:0:{}s:9:\"last_save\";i:1692749740;}','yes'),(2490,'_transient_timeout_select3-css_style_cdn_is_up','1692836140','no'),(2491,'_transient_select3-css_style_cdn_is_up','1','no'),(2492,'_transient_timeout_select3-js_script_cdn_is_up','1692836140','no'),(2493,'_transient_select3-js_script_cdn_is_up','1','no'),(2529,'avada_permalinks','a:3:{s:23:\"portfolio_category_base\";s:0:\"\";s:21:\"portfolio_skills_base\";s:0:\"\";s:19:\"portfolio_tags_base\";s:0:\"\";}','yes'),(3457,'_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.goodcausepartners.com/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-brands-400.eot);src:url(//test-site.goodcausepartners.com/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-brands-400.eot?#iefix) format(\"embedded-opentype\"),url(//test-site.goodcausepartners.com/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-brands-400.woff2) format(\"woff2\"),url(//test-site.goodcausepartners.com/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-brands-400.woff) format(\"woff\"),url(//test-site.goodcausepartners.com/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-brands-400.ttf) format(\"truetype\"),url(//test-site.goodcausepartners.com/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.goodcausepartners.com/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-regular-400.eot);src:url(//test-site.goodcausepartners.com/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-regular-400.eot?#iefix) format(\"embedded-opentype\"),url(//test-site.goodcausepartners.com/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-regular-400.woff2) format(\"woff2\"),url(//test-site.goodcausepartners.com/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-regular-400.woff) format(\"woff\"),url(//test-site.goodcausepartners.com/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-regular-400.ttf) format(\"truetype\"),url(//test-site.goodcausepartners.com/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.goodcausepartners.com/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-solid-900.eot);src:url(//test-site.goodcausepartners.com/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-solid-900.eot?#iefix) format(\"embedded-opentype\"),url(//test-site.goodcausepartners.com/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-solid-900.woff2) format(\"woff2\"),url(//test-site.goodcausepartners.com/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-solid-900.woff) format(\"woff\"),url(//test-site.goodcausepartners.com/wp-content/themes/Avada/includes/lib/assets/fonts/fontawesome/webfonts/fa-solid-900.ttf) format(\"truetype\"),url(//test-site.goodcausepartners.com/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\"}','yes');
/*!40000 ALTER TABLE `wp_gc2023options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_gc2023postmeta`
--

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

--
-- Dumping data for table `wp_gc2023postmeta`
--

LOCK TABLES `wp_gc2023postmeta` WRITE;
/*!40000 ALTER TABLE `wp_gc2023postmeta` DISABLE KEYS */;
INSERT INTO `wp_gc2023postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(8,87,'_wp_attached_file','2023/04/avada-hosting-logo-02.png'),(7,1,'_fusion','a:0:{}'),(9,87,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:903;s:6:\"height\";i:147;s:4:\"file\";s:33:\"2023/04/avada-hosting-logo-02.png\";s:8:\"filesize\";i:14570;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:{}}}'),(10,87,'_wxr_import_user_slug','atif'),(11,87,'fusion_demo_import','hosting_2'),(12,87,'_fusion_demo_imported_post','1f78414905ccc114bb4b087c8397df56'),(13,96,'_wp_attached_file','2023/04/avada-hosting-hero-1.png'),(14,96,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1372;s:6:\"height\";i:1308;s:4:\"file\";s:32:\"2023/04/avada-hosting-hero-1.png\";s:8:\"filesize\";i:1125131;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:{}}}'),(15,96,'_wxr_import_user_slug','atif'),(16,96,'fusion_demo_import','hosting_2'),(17,96,'_fusion_demo_imported_post','56ff643870c436407ec860c6ea14dec0'),(18,168,'_wp_attached_file','2023/04/wordpress-hosting.png'),(19,168,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:236;s:6:\"height\";i:216;s:4:\"file\";s:29:\"2023/04/wordpress-hosting.png\";s:8:\"filesize\";i:8191;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:{}}}'),(20,168,'_wp_old_slug','wordpress-hosting'),(21,168,'_wxr_import_user_slug','atif'),(22,168,'fusion_demo_import','hosting_2'),(23,168,'_fusion_demo_imported_post','76b82d170238253ec22e100b283b6dda'),(24,169,'_wp_attached_file','2023/04/dedicated-server.png'),(25,169,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:248;s:6:\"height\";i:216;s:4:\"file\";s:28:\"2023/04/dedicated-server.png\";s:8:\"filesize\";i:13747;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:{}}}'),(26,169,'_wp_old_slug','dedicated-server'),(27,169,'_wxr_import_user_slug','atif'),(28,169,'fusion_demo_import','hosting_2'),(29,169,'_fusion_demo_imported_post','5ee52d3951d29de35005594e1c4d05c4'),(30,170,'_wp_attached_file','2023/04/shared-hosting.png'),(31,170,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:249;s:6:\"height\";i:216;s:4:\"file\";s:26:\"2023/04/shared-hosting.png\";s:8:\"filesize\";i:7625;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:{}}}'),(32,170,'_wp_old_slug','shared-hosting'),(33,170,'_wxr_import_user_slug','atif'),(34,170,'fusion_demo_import','hosting_2'),(35,170,'_fusion_demo_imported_post','db7817fd118b33437eabcf9b42e23e25'),(36,171,'_wp_attached_file','2023/04/vps-hosting.png'),(37,171,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:250;s:6:\"height\";i:217;s:4:\"file\";s:23:\"2023/04/vps-hosting.png\";s:8:\"filesize\";i:11593;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:{}}}'),(38,171,'_wxr_import_user_slug','atif'),(39,171,'fusion_demo_import','hosting_2'),(40,171,'_fusion_demo_imported_post','0d32f2660779a89ac5f0f3ff126b40f8'),(41,192,'_wp_attached_file','2023/04/website-builder.png'),(42,192,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:248;s:6:\"height\";i:206;s:4:\"file\";s:27:\"2023/04/website-builder.png\";s:8:\"filesize\";i:9709;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:{}}}'),(43,192,'_wp_old_slug','website-builder'),(44,192,'_wxr_import_user_slug','atif'),(45,192,'fusion_demo_import','hosting_2'),(46,192,'_fusion_demo_imported_post','3d743b0e75220ecd779ce6e58bcb70fd'),(47,193,'_wp_attached_file','2023/04/managed-servers.png'),(48,193,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:248;s:6:\"height\";i:228;s:4:\"file\";s:27:\"2023/04/managed-servers.png\";s:8:\"filesize\";i:10736;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:{}}}'),(49,193,'_wxr_import_user_slug','atif'),(50,193,'fusion_demo_import','hosting_2'),(51,193,'_fusion_demo_imported_post','a9e81b62f7a4f1646d93f88847f56c55'),(52,205,'_wp_attached_file','2023/04/hosting-graphic-5.png'),(53,205,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:844;s:6:\"height\";i:734;s:4:\"file\";s:29:\"2023/04/hosting-graphic-5.png\";s:8:\"filesize\";i:183865;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:{}}}'),(54,205,'_wxr_import_user_slug','atif'),(55,205,'fusion_demo_import','hosting_2'),(56,205,'_fusion_demo_imported_post','119fbd9faa87729dd9343d9aa57581ec'),(57,283,'_wp_attached_file','2023/04/hosting-faqs-1.png'),(58,283,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1948;s:6:\"height\";i:718;s:4:\"file\";s:26:\"2023/04/hosting-faqs-1.png\";s:8:\"filesize\";i:122616;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:{}}}'),(59,283,'_wxr_import_user_slug','atif'),(60,283,'fusion_demo_import','hosting_2'),(61,283,'_fusion_demo_imported_post','4b36539eb28d9988ef37e2a5a0824d50'),(62,303,'_wp_attached_file','2023/04/drupal-logo-1.png'),(63,303,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:322;s:6:\"height\";i:116;s:4:\"file\";s:25:\"2023/04/drupal-logo-1.png\";s:8:\"filesize\";i:5177;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:{}}}'),(64,303,'_wxr_import_user_slug','atif'),(65,303,'fusion_demo_import','hosting_2'),(66,303,'_fusion_demo_imported_post','83d6b430caf86d9108cd7200d6cbfdac'),(67,304,'_wp_attached_file','2023/04/wordpress-logo-1.png'),(68,304,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:510;s:6:\"height\";i:116;s:4:\"file\";s:28:\"2023/04/wordpress-logo-1.png\";s:8:\"filesize\";i:11571;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:{}}}'),(69,304,'_wxr_import_user_slug','atif'),(70,304,'fusion_demo_import','hosting_2'),(71,304,'_fusion_demo_imported_post','1ef97b78ddedd0d20d0ae62dc432433c'),(72,305,'_wp_attached_file','2023/04/woo-logo-1.png'),(73,305,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:182;s:6:\"height\";i:108;s:4:\"file\";s:22:\"2023/04/woo-logo-1.png\";s:8:\"filesize\";i:4333;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:{}}}'),(74,305,'_wxr_import_user_slug','atif'),(75,305,'fusion_demo_import','hosting_2'),(76,305,'_fusion_demo_imported_post','98715de9f1f6d8f0c7a5887b924a4e88'),(77,306,'_wp_attached_file','2023/04/magento-logo-1.png'),(78,306,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:398;s:6:\"height\";i:116;s:4:\"file\";s:26:\"2023/04/magento-logo-1.png\";s:8:\"filesize\";i:7414;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:{}}}'),(79,306,'_wxr_import_user_slug','atif'),(80,306,'fusion_demo_import','hosting_2'),(81,306,'_fusion_demo_imported_post','40e98740479aa1c9f67b0e33b310eea8'),(82,307,'_wp_attached_file','2023/04/joomla-logo-1.png'),(83,307,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:517;s:6:\"height\";i:108;s:4:\"file\";s:25:\"2023/04/joomla-logo-1.png\";s:8:\"filesize\";i:7694;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:{}}}'),(84,307,'_wxr_import_user_slug','atif'),(85,307,'fusion_demo_import','hosting_2'),(86,307,'_fusion_demo_imported_post','9cd3c979a53e1958a83146622f52d74a'),(87,370,'_wp_attached_file','2023/04/avada-hosting-logo-footer.png'),(88,370,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:636;s:6:\"height\";i:149;s:4:\"file\";s:37:\"2023/04/avada-hosting-logo-footer.png\";s:8:\"filesize\";i:11465;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:{}}}'),(89,370,'_wxr_import_user_slug','atif'),(90,370,'fusion_demo_import','hosting_2'),(91,370,'_fusion_demo_imported_post','8783b8c9e95bcf97f01ce811689957be'),(92,424,'_wp_attached_file','2023/04/cards-logos-1.png'),(93,424,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:640;s:6:\"height\";i:72;s:4:\"file\";s:25:\"2023/04/cards-logos-1.png\";s:8:\"filesize\";i:8463;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:{}}}'),(94,424,'_wxr_import_user_slug','atif'),(95,424,'fusion_demo_import','hosting_2'),(96,424,'_fusion_demo_imported_post','97b83d6af19d67353e2f83daf35a1d6b'),(97,458,'_wp_attached_file','2023/05/avada-hosting-hero-mobile.png'),(98,458,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:667;s:4:\"file\";s:37:\"2023/05/avada-hosting-hero-mobile.png\";s:8:\"filesize\";i:468975;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:{}}}'),(99,458,'_wxr_import_user_slug','atif'),(100,458,'fusion_demo_import','hosting_2'),(101,458,'_fusion_demo_imported_post','b1f3b64870530e06ebb5031d0b317af5'),(102,534,'_wp_attached_file','2023/05/avada-hosting-logo-03.png'),(103,534,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:903;s:6:\"height\";i:147;s:4:\"file\";s:33:\"2023/05/avada-hosting-logo-03.png\";s:8:\"filesize\";i:12860;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:{}}}'),(104,534,'_wxr_import_user_slug','atif'),(105,534,'fusion_demo_import','hosting_2'),(106,534,'_fusion_demo_imported_post','16e2372007ba88cc581010014d14434b'),(107,579,'_wp_attached_file','2023/05/user-with-laptop-1.png'),(108,579,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:560;s:6:\"height\";i:532;s:4:\"file\";s:30:\"2023/05/user-with-laptop-1.png\";s:8:\"filesize\";i:25191;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:{}}}'),(109,579,'_wxr_import_user_slug','atif'),(110,579,'fusion_demo_import','hosting_2'),(111,579,'_fusion_demo_imported_post','5d71765d3e03a9f6f0f43d38316108c6'),(112,620,'_wp_attached_file','2023/05/hosting-banner-bg-2.png'),(113,620,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:268;s:6:\"height\";i:237;s:4:\"file\";s:31:\"2023/05/hosting-banner-bg-2.png\";s:8:\"filesize\";i:39448;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:{}}}'),(114,620,'_wxr_import_user_slug','atif'),(115,620,'fusion_demo_import','hosting_2'),(116,620,'_fusion_demo_imported_post','8d77e1dc3bae67aa0d13e8b437298f32'),(117,683,'_wp_attached_file','2023/05/efficient-avada-hosting.png'),(118,683,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1022;s:6:\"height\";i:745;s:4:\"file\";s:35:\"2023/05/efficient-avada-hosting.png\";s:8:\"filesize\";i:69812;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:{}}}'),(119,683,'_wxr_import_user_slug','atif'),(120,683,'fusion_demo_import','hosting_2'),(121,683,'_fusion_demo_imported_post','6e31ba870af03a6edebb807f1818fe12'),(122,706,'_wp_attached_file','2023/05/powerful-avada-hosting.png'),(123,706,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:949;s:6:\"height\";i:634;s:4:\"file\";s:34:\"2023/05/powerful-avada-hosting.png\";s:8:\"filesize\";i:72341;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:{}}}'),(124,706,'_wxr_import_user_slug','atif'),(125,706,'fusion_demo_import','hosting_2'),(126,706,'_fusion_demo_imported_post','5e63790345bb65832ab8ebc6e09503e3'),(127,738,'_wp_attached_file','2023/05/user-1.jpg'),(128,738,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:18:\"2023/05/user-1.jpg\";s:8:\"filesize\";i:8922;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:{}}}'),(129,738,'_wxr_import_user_slug','atif'),(130,738,'fusion_demo_import','hosting_2'),(131,738,'_fusion_demo_imported_post','4c28613040a4f679d0655412fef292e8'),(132,739,'_wp_attached_file','2023/05/user-5.jpg'),(133,739,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:18:\"2023/05/user-5.jpg\";s:8:\"filesize\";i:8329;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:{}}}'),(134,739,'_wxr_import_user_slug','atif'),(135,739,'fusion_demo_import','hosting_2'),(136,739,'_fusion_demo_imported_post','cf7a6afd77a4fc0bad49b6679c9b25d0'),(137,740,'_wp_attached_file','2023/05/user-6.jpg'),(138,740,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:18:\"2023/05/user-6.jpg\";s:8:\"filesize\";i:10101;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:{}}}'),(139,740,'_wxr_import_user_slug','atif'),(140,740,'fusion_demo_import','hosting_2'),(141,740,'_fusion_demo_imported_post','fb74e0c792bb83a1d39e0c2a7642dce6'),(142,741,'_wp_attached_file','2023/05/user-4.jpg'),(143,741,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:18:\"2023/05/user-4.jpg\";s:8:\"filesize\";i:5803;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:{}}}'),(144,741,'_wxr_import_user_slug','atif'),(145,741,'fusion_demo_import','hosting_2'),(146,741,'_fusion_demo_imported_post','27402a81fd8610639d010554e3b38abf'),(147,742,'_wp_attached_file','2023/05/user-3.jpg'),(148,742,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:18:\"2023/05/user-3.jpg\";s:8:\"filesize\";i:8115;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:{}}}'),(149,742,'_wxr_import_user_slug','atif'),(150,742,'fusion_demo_import','hosting_2'),(151,742,'_fusion_demo_imported_post','b29ddd6631fde42635ddccacaed18d41'),(152,743,'_wp_attached_file','2023/05/user-2.jpg'),(153,743,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:18:\"2023/05/user-2.jpg\";s:8:\"filesize\";i:9697;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:{}}}'),(154,743,'_wxr_import_user_slug','atif'),(155,743,'fusion_demo_import','hosting_2'),(156,743,'_fusion_demo_imported_post','b3d53a4d7148abd17d688f047208642a'),(157,750,'_wp_attached_file','2023/05/world-map.png'),(158,750,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:1010;s:4:\"file\";s:21:\"2023/05/world-map.png\";s:8:\"filesize\";i:111593;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:{}}}'),(159,750,'_wxr_import_user_slug','atif'),(160,750,'fusion_demo_import','hosting_2'),(161,750,'_fusion_demo_imported_post','6518c482ab2cd0ebce59e63619d2ea50'),(162,782,'_wp_attached_file','2023/05/blog-image-3.jpg'),(163,782,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1160;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2023/05/blog-image-3.jpg\";s:8:\"filesize\";i:179967;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:{}}}'),(964,1373,'avada_post_views_count','1'),(166,782,'fusion_demo_import','hosting_2'),(167,782,'_fusion_demo_imported_post','72d2caea6014497eda492478e51dc08c'),(168,783,'_wp_attached_file','2023/05/blog-image-2.jpg'),(169,783,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1160;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2023/05/blog-image-2.jpg\";s:8:\"filesize\";i:136521;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:{}}}'),(963,903,'avada_post_views_count_today_date','21-08-2023'),(172,783,'fusion_demo_import','hosting_2'),(173,783,'_fusion_demo_imported_post','03803ad55152b8d0fde72667349b1c90'),(174,862,'_wp_attached_file','2023/05/blog-image-6.jpg'),(175,862,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1160;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2023/05/blog-image-6.jpg\";s:8:\"filesize\";i:131757;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:{}}}'),(962,903,'avada_today_post_views_count','1'),(961,903,'avada_post_views_count','1'),(178,862,'fusion_demo_import','hosting_2'),(179,862,'_fusion_demo_imported_post','8334ce7002d6582eb67461063499306a'),(180,899,'_wp_attached_file','2023/05/home-01-preview.jpg'),(181,899,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:250;s:6:\"height\";i:1100;s:4:\"file\";s:27:\"2023/05/home-01-preview.jpg\";s:8:\"filesize\";i:52027;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:{}}}'),(182,899,'_wxr_import_user_slug','atif'),(183,899,'fusion_demo_import','hosting_2'),(184,899,'_fusion_demo_imported_post','4785f039450bfda964cc6c6e26c4d577'),(185,969,'_wp_attached_file','2023/05/hosting-template-v4.4.zip'),(186,969,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:198207;}'),(187,969,'_fusion_icon_set_id','78111570a7c73234b9c1d28182759030'),(188,969,'_wxr_import_user_slug','atif'),(189,969,'fusion_demo_import','hosting_2'),(190,969,'_fusion_demo_imported_post','4ae109b87589d113a608bf63bb9aeb97'),(191,1030,'_wp_attached_file','2023/05/avada-hosting-image-1.jpg'),(192,1030,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:33:\"2023/05/avada-hosting-image-1.jpg\";s:8:\"filesize\";i:244960;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:{}}}'),(193,1030,'_wxr_import_user_slug','atif'),(194,1030,'fusion_demo_import','hosting_2'),(195,1030,'_fusion_demo_imported_post','d7ed8406f90e427abbd77b4cbc9a7c8b'),(196,1249,'_wp_attached_file','2023/05/blog-image-7.jpg'),(197,1249,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1160;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2023/05/blog-image-7.jpg\";s:8:\"filesize\";i:118725;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:{}}}'),(198,1249,'_wxr_import_user_slug','atif'),(199,1249,'fusion_demo_import','hosting_2'),(200,1249,'_fusion_demo_imported_post','c693fd6f0f1a951f932486790cd217b1'),(201,1254,'_wp_attached_file','2023/05/blog-image-10.jpg'),(202,1254,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1160;s:6:\"height\";i:700;s:4:\"file\";s:25:\"2023/05/blog-image-10.jpg\";s:8:\"filesize\";i:124126;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:{}}}'),(960,529,'avada_post_views_count_today_date','21-08-2023'),(205,1254,'fusion_demo_import','hosting_2'),(206,1254,'_fusion_demo_imported_post','f6a1724f56eb13c9f7274726575d9d36'),(207,1257,'_wp_attached_file','2023/05/blog-image-11.jpg'),(208,1257,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1160;s:6:\"height\";i:700;s:4:\"file\";s:25:\"2023/05/blog-image-11.jpg\";s:8:\"filesize\";i:102719;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:{}}}'),(959,529,'avada_today_post_views_count','1'),(211,1257,'fusion_demo_import','hosting_2'),(212,1257,'_fusion_demo_imported_post','d30a18c590816f3d3b4b406ae6e67a73'),(213,1370,'_wp_attached_file','2023/05/hosting-plans-1.png'),(214,1370,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1075;s:6:\"height\";i:745;s:4:\"file\";s:27:\"2023/05/hosting-plans-1.png\";s:8:\"filesize\";i:50305;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:{}}}'),(215,1370,'_wxr_import_user_slug','atif'),(216,1370,'fusion_demo_import','hosting_2'),(217,1370,'_fusion_demo_imported_post','9a8415209d13fcbcdd3382bfb5a74372'),(218,1500,'_wp_attached_file','2023/05/hosting-404-error-1.png'),(219,1500,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1187;s:6:\"height\";i:940;s:4:\"file\";s:31:\"2023/05/hosting-404-error-1.png\";s:8:\"filesize\";i:88535;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,1500,'_wxr_import_user_slug','atif'),(221,1500,'fusion_demo_import','hosting_2'),(222,1500,'_fusion_demo_imported_post','5c90c10952872267c83a5383dd31b486'),(223,1555,'_wp_attached_file','2023/06/hosting-hero-image-2.jpg'),(224,1555,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2292;s:6:\"height\";i:802;s:4:\"file\";s:32:\"2023/06/hosting-hero-image-2.jpg\";s:8:\"filesize\";i:316121;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:{}}}'),(225,1555,'_wxr_import_user_slug','atif'),(226,1555,'fusion_demo_import','hosting_2'),(227,1555,'_fusion_demo_imported_post','cb610fe085ff2cf444d8d5c5a559fcd1'),(228,1561,'_wp_attached_file','2023/06/hosting-hero-image-mobile-3.jpg'),(229,1561,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1140;s:6:\"height\";i:802;s:4:\"file\";s:39:\"2023/06/hosting-hero-image-mobile-3.jpg\";s:8:\"filesize\";i:115482;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:{}}}'),(230,1561,'_wxr_import_user_slug','atif'),(231,1561,'fusion_demo_import','hosting_2'),(232,1561,'_fusion_demo_imported_post','b69ca9c460799d865e8ce62f9e058ac2'),(233,1577,'_wp_attached_file','2023/06/register-domain-2.jpg'),(234,1577,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2292;s:6:\"height\";i:802;s:4:\"file\";s:29:\"2023/06/register-domain-2.jpg\";s:8:\"filesize\";i:185913;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:{}}}'),(235,1577,'_wxr_import_user_slug','atif'),(236,1577,'fusion_demo_import','hosting_2'),(237,1577,'_fusion_demo_imported_post','8b97efd3ef41de2f7c9bf5e17b377e42'),(238,1581,'_wp_attached_file','2023/06/home-02-preview-1.jpg'),(239,1581,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:250;s:6:\"height\";i:1245;s:4:\"file\";s:29:\"2023/06/home-02-preview-1.jpg\";s:8:\"filesize\";i:51948;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,1581,'_wxr_import_user_slug','atif'),(241,1581,'fusion_demo_import','hosting_2'),(242,1581,'_fusion_demo_imported_post','cd9093268ec5e3ed1967e3cc399b9b46'),(243,1631,'_wp_attached_file','2023/08/favicon-2.png'),(244,1631,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:192;s:6:\"height\";i:192;s:4:\"file\";s:21:\"2023/08/favicon-2.png\";s:8:\"filesize\";i:7503;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:{}}}'),(245,1631,'_wxr_import_user_slug','atif'),(246,1631,'fusion_demo_import','hosting_2'),(247,1631,'_fusion_demo_imported_post','e47f13ee1aff71562ba3bea187d56dbc'),(249,117,'_fusion','a:4:{s:17:\"form_input_height\";s:4:\"54px\";s:17:\"form_border_width\";a:4:{s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";}s:18:\"form_border_radius\";s:1:\"0\";s:14:\"form_font_size\";s:4:\"18px\";}'),(250,117,'fusion_builder_status','active'),(251,117,'_wxr_import_user_slug','atif'),(252,117,'fusion_demo_import','hosting_2'),(253,117,'_fusion_demo_imported_post','b8c9e6508c4dc134daa28f6f62c89617'),(254,763,'_fusion','a:5:{s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:12:\"preview_post\";s:3:\"766\";s:23:\"preview_avada_portfolio\";s:1:\"0\";s:17:\"preview_avada_faq\";s:1:\"0\";s:12:\"preview_term\";s:8:\"category\";}'),(255,763,'fusion_builder_status','active'),(256,763,'_fusion_google_fonts',''),(257,763,'_wxr_import_user_slug','atif'),(258,763,'fusion_demo_import','hosting_2'),(259,763,'_fusion_demo_imported_post','1849e3ca2e70da0184a5b476a78dcd5e'),(260,814,'_fusion','a:1:{s:28:\"dynamic_content_preview_type\";s:4:\"post\";}'),(261,814,'fusion_builder_status','active'),(262,814,'_wxr_import_user_slug','atif'),(263,814,'fusion_demo_import','hosting_2'),(264,814,'_fusion_demo_imported_post','e4d3c07ffb88e585841328a19d02c816'),(265,874,'_fusion','a:0:{}'),(266,874,'_fusion_google_fonts','a:1:{s:34:\"var(--awb-typography3-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography3)\";}}}'),(267,874,'fusion_builder_status','active'),(268,874,'_wxr_import_user_slug','atif'),(269,874,'fusion_demo_import','hosting_2'),(270,874,'_fusion_demo_imported_post','d68939cde68fcc996069a2582f467363'),(271,988,'_fusion_is_global','yes'),(272,988,'_wxr_import_user_slug','atif'),(273,988,'fusion_demo_import','hosting_2'),(274,988,'_fusion_demo_imported_post','ce1d1cee935cd9d069950999f4b83b49'),(275,996,'_fusion_is_global','yes'),(276,996,'_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:1:\"0\";s:6:\"bottom\";s:4:\"20px\";}s:15:\"content_bg_full\";s:2:\"no\";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:17:\"content_bg_repeat\";s:7:\"default\";}'),(277,996,'_fusion_google_fonts','a:2:{s:34:\"var(--awb-typography5-font-family)\";a:1:{s:8:\"variants\";a:3:{i:0;s:3:\"400\";i:1;s:22:\"var(--awb-typography5)\";i:2;s:22:\"var(--awb-typography2)\";}}s:34:\"var(--awb-typography2-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography5)\";}}}'),(278,996,'fusion_builder_status','active'),(279,996,'_wxr_import_user_slug','atif'),(280,996,'fusion_demo_import','hosting_2'),(281,996,'_fusion_demo_imported_post','21b55441fd0ef11f5601c24fc7a4c7fc'),(282,1017,'_fusion_is_global','yes'),(283,1017,'_wxr_import_user_slug','atif'),(284,1017,'fusion_demo_import','hosting_2'),(285,1017,'_fusion_demo_imported_post','8a3b7fb6fedd75e56ab69f215d7249a1'),(286,1036,'_fusion_is_global','yes'),(287,1036,'_wxr_import_user_slug','atif'),(288,1036,'fusion_demo_import','hosting_2'),(289,1036,'_fusion_demo_imported_post','252406fc62e07bb60a0d409d90d05cb2'),(290,1050,'_fusion','a:10:{s:4:\"type\";s:11:\"sliding-bar\";s:8:\"position\";s:5:\"right\";s:10:\"transition\";s:7:\"overlap\";s:5:\"width\";s:5:\"450px\";s:7:\"padding\";a:1:{s:3:\"top\";s:0:\"\";}s:6:\"margin\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:24:\"close_button_custom_icon\";s:42:\"fusion-prefix-hosting-template-times-solid\";s:15:\"close_icon_size\";s:2:\"20\";s:24:\"close_button_color_hover\";s:17:\"var(--awb-color5)\";s:13:\"border_radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";}}'),(291,1050,'fusion_builder_status','active'),(292,1050,'_fusion_google_fonts',''),(293,1050,'_wxr_import_user_slug','atif'),(294,1050,'fusion_demo_import','hosting_2'),(295,1050,'_fusion_demo_imported_post','052b9d2666b03aaee0bef412acd4e79d'),(296,1083,'_fusion_is_global','yes'),(297,1083,'_wxr_import_user_slug','atif'),(298,1083,'fusion_demo_import','hosting_2'),(299,1083,'_fusion_demo_imported_post','0221365a8e5e5aedd5e62f564e9dcf9e'),(300,1097,'_fusion_is_global','yes'),(301,1097,'_wxr_import_user_slug','atif'),(302,1097,'fusion_demo_import','hosting_2'),(303,1097,'_fusion_demo_imported_post','e49c11e6e25a63665a286a643dfeae64'),(304,1325,'_fusion','a:1:{s:28:\"dynamic_content_preview_type\";s:4:\"post\";}'),(305,1325,'fusion_builder_status','active'),(306,1325,'_wxr_import_user_slug','atif'),(307,1325,'fusion_demo_import','hosting_2'),(308,1325,'_fusion_demo_imported_post','e0764f619cfef3d01b7749b748f08483'),(309,1347,'_fusion','a:0:{}'),(310,1347,'fusion_builder_status','active'),(311,1347,'_fusion_google_fonts','a:1:{s:34:\"var(--awb-typography5-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography5)\";}}}'),(312,1347,'_wxr_import_user_slug','atif'),(313,1347,'fusion_demo_import','hosting_2'),(314,1347,'_fusion_demo_imported_post','8dd3570cca55611ca04ffa29ee921e94'),(315,1379,'_fusion_is_global','yes'),(316,1379,'_wxr_import_user_slug','atif'),(317,1379,'fusion_demo_import','hosting_2'),(318,1379,'_fusion_demo_imported_post','ff4bad6ab3d50bee46460bedda892fb9'),(319,12,'_wp_old_slug','default-header-cloned-cloned'),(320,12,'_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\";}'),(321,12,'fusion_builder_status','active'),(322,12,'_wp_old_slug','default-header-2-2'),(323,12,'_fusion_google_fonts','a:3:{s:34:\"var(--awb-typography5-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography5)\";}}s:34:\"var(--awb-typography3-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography3)\";}}s:34:\"var(--awb-typography2-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography2)\";}}}'),(324,12,'_wxr_import_user_slug','atif'),(325,12,'fusion_demo_import','hosting_2'),(326,12,'_fusion_demo_imported_post','659a084c5637f68ed3d169428b5b8b2b'),(327,113,'_fusion','a:1:{s:15:\"custom_icon_set\";a:7:{s:13:\"attachment_id\";i:969;s:17:\"icon_set_dir_name\";s:21:\"hosting-template-v4.4\";s:7:\"service\";s:7:\"icomoon\";s:10:\"css_prefix\";s:17:\"hosting-template-\";s:5:\"icons\";a:45:{i:0;s:15:\"secure-business\";i:1;s:15:\"online-identity\";i:2;s:4:\"star\";i:3;s:13:\"web-analytics\";i:4;s:14:\"global-servers\";i:5;s:12:\"server-solid\";i:6;s:11:\"times-solid\";i:7;s:24:\"angle-double-right-solid\";i:8;s:11:\"check-box-2\";i:9;s:4:\"chat\";i:10;s:5:\"email\";i:11;s:10:\"headphones\";i:12;s:10:\"add-server\";i:13;s:14:\"approve-server\";i:14;s:9:\"cable-usb\";i:15;s:15:\"cloud-computing\";i:16;s:13:\"cloud-hosting\";i:17;s:6:\"coding\";i:18;s:10:\"connection\";i:19;s:3:\"cpu\";i:20;s:8:\"database\";i:21;s:8:\"download\";i:22;s:10:\"engagement\";i:23;s:5:\"group\";i:24;s:7:\"hosting\";i:25;s:5:\"image\";i:26;s:13:\"international\";i:27;s:13:\"local-network\";i:28;s:12:\"location-pin\";i:29;s:17:\"personal-computer\";i:30;s:4:\"play\";i:31;s:4:\"plus\";i:32;s:7:\"product\";i:33;s:13:\"remove-server\";i:34;s:6:\"router\";i:35;s:9:\"satellite\";i:36;s:6:\"search\";i:37;s:6:\"server\";i:38;s:7:\"setting\";i:39;s:10:\"smartphone\";i:40;s:6:\"unlock\";i:41;s:6:\"upload\";i:42;s:11:\"web-hosting\";i:43;s:14:\"web-protection\";i:44;s:7:\"website\";}s:10:\"icon_count\";i:45;s:11:\"icon_set_id\";s:32:\"78111570a7c73234b9c1d28182759030\";}}'),(328,113,'_wxr_import_user_slug','atif'),(329,113,'fusion_demo_import','hosting_2'),(330,113,'_fusion_demo_imported_post','987086d791973e840a31809361a6a20e'),(331,351,'_fusion','a:0:{}'),(332,351,'fusion_builder_status','active'),(333,351,'_fusion_google_fonts','a:1:{s:34:\"var(--awb-typography5-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography5)\";}}}'),(1057,1647,'avada_post_views_count','78'),(334,351,'_wxr_import_user_slug','atif'),(335,351,'fusion_demo_import','hosting_2'),(336,351,'_fusion_demo_imported_post','d1f711520895cb4e295f7faf6cca3685'),(337,532,'_wxr_import_user_slug','atif'),(338,532,'fusion_demo_import','hosting_2'),(339,532,'_fusion_demo_imported_post','0f5ce8291913ab2b6634b00cd8ab468c'),(340,535,'_fusion','a:0:{}'),(341,535,'fusion_builder_status','active'),(342,535,'_fusion_google_fonts','a:1:{s:34:\"var(--awb-typography3-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography3)\";}}}'),(343,535,'_wxr_import_user_slug','atif'),(344,535,'fusion_demo_import','hosting_2'),(345,535,'_fusion_demo_imported_post','187d181b953add336fcd24f64753e26e'),(346,902,'_wxr_import_user_slug','atif'),(347,902,'fusion_demo_import','hosting_2'),(348,902,'_fusion_demo_imported_post','568a4c5a03b0ca2a1b175c7d93d6d5a1'),(349,1008,'_fusion','a:0:{}'),(350,1008,'_fusion_google_fonts',''),(351,1008,'fusion_builder_status','active'),(352,1008,'_wxr_import_user_slug','atif'),(353,1008,'fusion_demo_import','hosting_2'),(354,1008,'_fusion_demo_imported_post','3fa92f07d5528ee1a27a4cfb6f0ebbed'),(1381,1785,'wp-smush-lossy','1'),(1382,12,'_edit_lock','1692809106:1'),(394,1132,'_wxr_import_user_slug','atif'),(395,1132,'fusion_demo_import','hosting_2'),(396,1132,'_fusion_demo_imported_post','73d6ddb2c16a90c08777eb43ad6bd043'),(397,1156,'_fusion','a:2:{s:28:\"dynamic_content_preview_type\";s:4:\"post\";s:12:\"preview_post\";s:3:\"766\";}'),(398,1156,'fusion_builder_status','active'),(399,1156,'_wxr_import_user_slug','atif'),(400,1156,'fusion_demo_import','hosting_2'),(401,1156,'_fusion_demo_imported_post','3d869f51b9cd919e769a6cd12f9f4e7f'),(402,1158,'_fusion','a:1:{s:12:\"main_padding\";a:2:{s:3:\"top\";s:4:\"20px\";s:6:\"bottom\";s:4:\"20px\";}}'),(403,1158,'fusion_builder_status','active'),(404,1158,'_wxr_import_user_slug','atif'),(405,1158,'fusion_demo_import','hosting_2'),(406,1158,'_fusion_demo_imported_post','67fa32c5de1589d1c3eeb695d44e6dcd'),(408,1292,'_fusion','a:15:{s:12:\"nonce_method\";s:4:\"ajax\";s:14:\"label_position\";s:5:\"above\";s:12:\"field_margin\";a:2:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:4:\"10px\";}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: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:10:\"off_canvas\";s:4:\"1050\";s:22:\"form_confirmation_type\";s:7:\"message\";s:25:\"privacy_expiration_action\";s:9:\"anonymize\";s:17:\"form_input_height\";s:4:\"60px\";s:14:\"form_font_size\";s:4:\"17px\";s:13:\"notifications\";a:1:{i:0;a:9:{s:5:\"label\";s:0:\"\";s:5:\"email\";s:0:\"\";s:13:\"email_subject\";s:0:\"\";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:0:\"\";}}}'),(409,1292,'fusion_builder_status','active'),(410,1292,'_wxr_import_user_slug','atif'),(411,1292,'fusion_demo_import','hosting_2'),(412,1292,'_fusion_demo_imported_post','8dfdb57933d831d85b5189e9621feb2e'),(413,1329,'_wxr_import_user_slug','atif'),(414,1329,'fusion_demo_import','hosting_2'),(415,1329,'_fusion_demo_imported_post','ed69d125bc2cf550031ed3713c86808c'),(416,1333,'_fusion','a:1:{s:12:\"main_padding\";a:2:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:4:\"20px\";}}'),(417,1333,'fusion_builder_status','active'),(418,1333,'_wxr_import_user_slug','atif'),(419,1333,'fusion_demo_import','hosting_2'),(420,1333,'_fusion_demo_imported_post','79121c3b90afd35cb8646d8a6b23d162'),(421,1365,'_wxr_import_user_slug','atif'),(422,1365,'fusion_demo_import','hosting_2'),(423,1365,'_fusion_demo_imported_post','55d4b07032d615a4bf48234dc8d471cd'),(424,1366,'_fusion','a:0:{}'),(425,1366,'fusion_builder_status','active'),(426,1366,'_fusion_google_fonts','a:1:{s:34:\"var(--awb-typography2-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography2)\";}}}'),(427,1366,'_wxr_import_user_slug','atif'),(428,1366,'fusion_demo_import','hosting_2'),(429,1366,'_fusion_demo_imported_post','819e890c6041390a97dfb2a252273842'),(430,1496,'_wxr_import_user_slug','atif'),(431,1496,'fusion_demo_import','hosting_2'),(432,1496,'_fusion_demo_imported_post','8066c01a04e7e796553a63649da595b1'),(433,1498,'_fusion','a:0:{}'),(434,1498,'fusion_builder_status','active'),(435,1498,'_wxr_import_user_slug','atif'),(436,1498,'fusion_demo_import','hosting_2'),(437,1498,'_fusion_demo_imported_post','105983c056d5d1071d0491c5e9e2b069'),(438,29,'_menu_item_type','custom'),(439,29,'_menu_item_menu_item_parent','0'),(440,29,'_menu_item_object_id','29'),(441,29,'_menu_item_object','custom'),(442,29,'_menu_item_target',''),(443,29,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(444,29,'_menu_item_xfn',''),(445,29,'_menu_item_url','https://test-site.goodcausepartners.com/'),(446,29,'_menu_item_fusion_megamenu','a:16:{s:5:\"style\";s:0:\"\";s:6:\"select\";s:3:\"874\";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:\"\";}'),(447,29,'_wp_old_date','2023-04-14'),(448,29,'_wp_old_date','2023-05-11'),(449,29,'_wxr_import_user_slug','atif'),(450,29,'fusion_demo_import','hosting_2'),(451,29,'_fusion_demo_imported_post','a0eb4f2b6b791f196a18c66bfb469de6'),(452,30,'_menu_item_type','custom'),(453,30,'_menu_item_menu_item_parent','0'),(454,30,'_menu_item_object_id','30'),(455,30,'_menu_item_object','custom'),(456,30,'_menu_item_target',''),(457,30,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(458,30,'_menu_item_xfn',''),(459,30,'_menu_item_url','https://test-site.goodcausepartners.com/hosting'),(460,30,'_menu_item_fusion_megamenu','a:16:{s:5:\"style\";s:0:\"\";s:6:\"select\";s:4:\"1347\";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:\"\";}'),(461,30,'_wp_old_date','2023-04-14'),(462,30,'_wp_old_date','2023-05-11'),(463,30,'_wxr_import_user_slug','atif'),(464,30,'fusion_demo_import','hosting_2'),(465,30,'_fusion_demo_imported_post','987b0eb08927aa561b4760829b69d8d6'),(466,31,'_menu_item_type','custom'),(467,31,'_menu_item_menu_item_parent','0'),(468,31,'_menu_item_object_id','31'),(469,31,'_menu_item_object','custom'),(470,31,'_menu_item_target',''),(471,31,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(472,31,'_menu_item_xfn',''),(473,31,'_menu_item_url','https://test-site.goodcausepartners.com/domains'),(474,31,'_menu_item_fusion_megamenu','a:16:{s:5:\"style\";s:0:\"\";s:6:\"select\";s:1:\"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:\"\";}'),(475,31,'_wp_old_date','2023-04-14'),(476,31,'_wp_old_date','2023-05-11'),(477,31,'_wxr_import_user_slug','atif'),(478,31,'fusion_demo_import','hosting_2'),(479,31,'_fusion_demo_imported_post','9fe0ed1ed3db7cf5fa58353cf7ccafdc'),(480,32,'_menu_item_type','custom'),(481,32,'_menu_item_menu_item_parent','0'),(482,32,'_menu_item_object_id','32'),(483,32,'_menu_item_object','custom'),(484,32,'_menu_item_target',''),(485,32,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(486,32,'_menu_item_xfn',''),(487,32,'_menu_item_url','https://test-site.goodcausepartners.com/about'),(488,32,'_menu_item_fusion_megamenu','a:16:{s:5:\"style\";s:0:\"\";s:6:\"select\";s:1:\"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:\"\";}'),(489,32,'_wp_old_date','2023-04-14'),(490,32,'_wp_old_date','2023-05-11'),(491,32,'_wxr_import_user_slug','atif'),(492,32,'fusion_demo_import','hosting_2'),(493,32,'_fusion_demo_imported_post','73d37827267fdae4e7d4b194c2866aed'),(494,33,'_menu_item_type','custom'),(495,33,'_menu_item_menu_item_parent','0'),(496,33,'_menu_item_object_id','33'),(497,33,'_menu_item_object','custom'),(498,33,'_menu_item_target',''),(499,33,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(500,33,'_menu_item_xfn',''),(501,33,'_menu_item_url','https://test-site.goodcausepartners.com/blog'),(502,33,'_menu_item_fusion_megamenu','a:16:{s:5:\"style\";s:0:\"\";s:6:\"select\";s:1:\"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:\"\";}'),(503,33,'_wp_old_date','2023-04-14'),(504,33,'_wp_old_date','2023-05-11'),(505,33,'_wxr_import_user_slug','atif'),(506,33,'fusion_demo_import','hosting_2'),(507,33,'_fusion_demo_imported_post','aacfa357a2178f7030880a057290c14e'),(508,402,'_menu_item_type','custom'),(509,402,'_menu_item_menu_item_parent','0'),(510,402,'_menu_item_object_id','402'),(511,402,'_menu_item_object','custom'),(512,402,'_menu_item_target',''),(513,402,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(514,402,'_menu_item_xfn',''),(515,402,'_menu_item_url','https://test-site.goodcausepartners.com/about'),(516,402,'_menu_item_fusion_megamenu','a:16:{s:5:\"style\";s:0:\"\";s:6:\"select\";s:1:\"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:\"\";}'),(517,402,'_wp_old_date','2023-04-28'),(518,402,'_wxr_import_user_slug','atif'),(519,402,'fusion_demo_import','hosting_2'),(520,402,'_fusion_demo_imported_post','812f3f0c2b5639af49f030c62228ad2a'),(521,405,'_menu_item_type','custom'),(522,405,'_menu_item_menu_item_parent','0'),(523,405,'_menu_item_object_id','405'),(524,405,'_menu_item_object','custom'),(525,405,'_menu_item_target',''),(526,405,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(527,405,'_menu_item_xfn',''),(528,405,'_menu_item_url','https://test-site.goodcausepartners.com/blog'),(529,405,'_menu_item_fusion_megamenu','a:16:{s:5:\"style\";s:0:\"\";s:6:\"select\";s:1:\"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:\"\";}'),(530,405,'_wp_old_date','2023-04-28'),(531,405,'_wxr_import_user_slug','atif'),(532,405,'fusion_demo_import','hosting_2'),(533,405,'_fusion_demo_imported_post','51abf947f21154eb45fdee063745d125'),(534,406,'_menu_item_type','custom'),(535,406,'_menu_item_menu_item_parent','0'),(536,406,'_menu_item_object_id','406'),(537,406,'_menu_item_object','custom'),(538,406,'_menu_item_target',''),(539,406,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(540,406,'_menu_item_xfn',''),(541,406,'_menu_item_url','#'),(542,406,'_menu_item_fusion_megamenu','a:16:{s:5:\"style\";s:0:\"\";s:6:\"select\";s:1:\"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:\"\";}'),(543,406,'_wp_old_date','2023-04-28'),(544,406,'_wxr_import_user_slug','atif'),(545,406,'fusion_demo_import','hosting_2'),(546,406,'_fusion_demo_imported_post','dcd2c97bdda8b34b9bbcd14fcd8ccd69'),(547,407,'_menu_item_type','custom'),(548,407,'_menu_item_menu_item_parent','0'),(549,407,'_menu_item_object_id','407'),(550,407,'_menu_item_object','custom'),(551,407,'_menu_item_target',''),(552,407,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(553,407,'_menu_item_xfn',''),(554,407,'_menu_item_url','https://test-site.goodcausepartners.com/contact'),(555,407,'_menu_item_fusion_megamenu','a:16:{s:5:\"style\";s:0:\"\";s:6:\"select\";s:1:\"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:\"\";}'),(556,407,'_wp_old_date','2023-04-28'),(557,407,'_wxr_import_user_slug','atif'),(558,407,'fusion_demo_import','hosting_2'),(559,407,'_fusion_demo_imported_post','c8b1c0660e830f5e504a64ee90b330aa'),(560,408,'_menu_item_type','custom'),(561,408,'_menu_item_menu_item_parent','0'),(562,408,'_menu_item_object_id','408'),(563,408,'_menu_item_object','custom'),(564,408,'_menu_item_target',''),(565,408,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(566,408,'_menu_item_xfn',''),(567,408,'_menu_item_url','#'),(568,408,'_menu_item_fusion_megamenu','a:16:{s:5:\"style\";s:0:\"\";s:6:\"select\";s:1:\"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:\"\";}'),(569,408,'_wp_old_date','2023-04-28'),(570,408,'_wxr_import_user_slug','atif'),(571,408,'fusion_demo_import','hosting_2'),(572,408,'_fusion_demo_imported_post','71ac1cbfb0e1d3a7d1ed504893f8aca6'),(573,410,'_menu_item_type','custom'),(574,410,'_menu_item_menu_item_parent','0'),(575,410,'_menu_item_object_id','410'),(576,410,'_menu_item_object','custom'),(577,410,'_menu_item_target',''),(578,410,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(579,410,'_menu_item_xfn',''),(580,410,'_menu_item_url','#'),(581,410,'_menu_item_fusion_megamenu','a:16:{s:5:\"style\";s:0:\"\";s:6:\"select\";s:1:\"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:\"\";}'),(582,410,'_wp_old_date','2023-04-28'),(583,410,'_wxr_import_user_slug','atif'),(584,410,'fusion_demo_import','hosting_2'),(585,410,'_fusion_demo_imported_post','74ace6eb610e38da590fb382c2298344'),(586,411,'_menu_item_type','custom'),(587,411,'_menu_item_menu_item_parent','0'),(588,411,'_menu_item_object_id','411'),(589,411,'_menu_item_object','custom'),(590,411,'_menu_item_target',''),(591,411,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(592,411,'_menu_item_xfn',''),(593,411,'_menu_item_url','#'),(594,411,'_menu_item_fusion_megamenu','a:16:{s:5:\"style\";s:0:\"\";s:6:\"select\";s:1:\"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:\"\";}'),(595,411,'_wp_old_date','2023-04-28'),(596,411,'_wxr_import_user_slug','atif'),(597,411,'fusion_demo_import','hosting_2'),(598,411,'_fusion_demo_imported_post','4e0c9284b78fffc99ea73b864a667162'),(599,412,'_menu_item_type','custom'),(600,412,'_menu_item_menu_item_parent','0'),(601,412,'_menu_item_object_id','412'),(602,412,'_menu_item_object','custom'),(603,412,'_menu_item_target',''),(604,412,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(605,412,'_menu_item_xfn',''),(606,412,'_menu_item_url','#'),(607,412,'_menu_item_fusion_megamenu','a:16:{s:5:\"style\";s:0:\"\";s:6:\"select\";s:1:\"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:\"\";}'),(608,412,'_wp_old_date','2023-04-28'),(609,412,'_wxr_import_user_slug','atif'),(610,412,'fusion_demo_import','hosting_2'),(611,412,'_fusion_demo_imported_post','62e0ff2fedd5176d2a61368b1816c08f'),(612,413,'_menu_item_type','custom'),(613,413,'_menu_item_menu_item_parent','0'),(614,413,'_menu_item_object_id','413'),(615,413,'_menu_item_object','custom'),(616,413,'_menu_item_target',''),(617,413,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(618,413,'_menu_item_xfn',''),(619,413,'_menu_item_url','#'),(620,413,'_menu_item_fusion_megamenu','a:16:{s:5:\"style\";s:0:\"\";s:6:\"select\";s:1:\"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:\"\";}'),(621,413,'_wp_old_date','2023-04-28'),(622,413,'_wxr_import_user_slug','atif'),(623,413,'fusion_demo_import','hosting_2'),(624,413,'_fusion_demo_imported_post','7194c8d28bc301e7b1ce99d3ea58d2e6'),(1278,1853,'_wp_desired_post_slug',''),(1277,1853,'_wp_trash_meta_time','1692760551'),(1276,1853,'_wp_trash_meta_status','draft'),(1274,1853,'avada_post_views_count_today_date','22-08-2023'),(1266,1853,'fusion_builder_status','active'),(1267,1853,'_fusion_google_fonts',''),(1268,1853,'_wxr_import_user_slug','atif'),(1269,1853,'fusion_demo_import','hosting_2'),(1270,1853,'_fusion_demo_imported_post','0e0b10e90493fe029f13b8b2507a3706'),(1275,1853,'_dp_original','1840'),(1272,1853,'avada_post_views_count','2'),(1273,1853,'avada_today_post_views_count','2'),(1265,1853,'_fusion','a:5:{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\";}'),(1282,1855,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1160;s:6:\"height\";i:700;s:4:\"file\";s:29:\"2023/08/csr-blog-service.webp\";s:8:\"filesize\";i:36006;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"csr-blog-service-300x181.webp\";s:5:\"width\";i:300;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9156;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"csr-blog-service-1024x618.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:618;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:33548;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"csr-blog-service-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4802;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"csr-blog-service-768x463.webp\";s:5:\"width\";i:768;s:6:\"height\";i:463;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:24572;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"csr-blog-service-669x272.webp\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:15856;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"csr-blog-service-320x202.webp\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9810;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"csr-blog-service-700x441.webp\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:22650;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"csr-blog-service-66x66.webp\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:1834;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"csr-blog-service-200x121.webp\";s:5:\"width\";i:200;s:6:\"height\";i:121;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5732;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"csr-blog-service-400x241.webp\";s:5:\"width\";i:400;s:6:\"height\";i:241;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12358;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:29:\"csr-blog-service-600x362.webp\";s:5:\"width\";i:600;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:19084;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:29:\"csr-blog-service-800x483.webp\";s:5:\"width\";i:800;s:6:\"height\";i:483;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:25604;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:29:\"csr-blog-service-940x400.webp\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:24160;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:29:\"csr-blog-service-540x272.webp\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14982;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:29:\"csr-blog-service-460x295.webp\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14736;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:29:\"csr-blog-service-300x214.webp\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9656;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:29:\"csr-blog-service-177x142.webp\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5412;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1281,1855,'_wp_attached_file','2023/08/csr-blog-service.webp'),(1280,1852,'_edit_last','1'),(1279,1852,'_edit_lock','1692764943:1'),(1264,1853,'_thumbnail_id','1841'),(1262,1852,'avada_post_views_count_today_date','23-08-2023'),(1261,1852,'avada_today_post_views_count','2'),(1260,1852,'avada_post_views_count','4'),(1263,1852,'_dp_original','1840'),(1254,1852,'fusion_builder_status','active'),(1255,1852,'_fusion_google_fonts',''),(1256,1852,'_wxr_import_user_slug','atif'),(1257,1852,'fusion_demo_import','hosting_2'),(1258,1852,'_fusion_demo_imported_post','0e0b10e90493fe029f13b8b2507a3706'),(1253,1852,'_fusion','a:5:{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\";}'),(1287,1857,'_wp_attached_file','2023/08/csr-blog-service-1.webp'),(702,1632,'_wp_page_template','100-width.php'),(703,1632,'_fusion','a:10:{s:7:\"bg_full\";s:2:\"no\";s:14:\"display_header\";s:3:\"yes\";s:14:\"header_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:4:\"20px\";s:6:\"bottom\";s:4:\"20px\";}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\";}'),(704,1632,'fusion_builder_status','active'),(705,1632,'_fusion_google_fonts','a:4:{s:34:\"var(--awb-typography3-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography3)\";}}s:34:\"var(--awb-typography5-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography5)\";}}s:34:\"var(--awb-typography2-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography2)\";}}s:34:\"var(--awb-typography1-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography1)\";}}}'),(706,1632,'_fusion_builder_custom_css',''),(707,1632,'_wxr_import_user_slug','atif'),(708,1632,'fusion_demo_import','hosting_2'),(709,1632,'_fusion_demo_imported_post','5e797192070d78a174f603a8e44fa35b'),(710,34,'_menu_item_type','custom'),(711,34,'_menu_item_menu_item_parent','0'),(712,34,'_menu_item_object_id','34'),(713,34,'_menu_item_object','custom'),(714,34,'_menu_item_target',''),(715,34,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(716,34,'_menu_item_xfn',''),(717,34,'_menu_item_url','https://test-site.goodcausepartners.com/contact'),(718,34,'_menu_item_fusion_megamenu','a:16:{s:5:\"style\";s:0:\"\";s:6:\"select\";s:1:\"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:\"\";}'),(719,34,'_wp_old_date','2023-04-14'),(720,34,'_wp_old_date','2023-05-11'),(721,34,'_wxr_import_user_slug','atif'),(722,34,'fusion_demo_import','hosting_2'),(723,34,'_fusion_demo_imported_post','e35b43875109080fe221043627e67411'),(724,378,'_menu_item_type','custom'),(725,378,'_menu_item_menu_item_parent','0'),(726,378,'_menu_item_object_id','378'),(727,378,'_menu_item_object','custom'),(728,378,'_menu_item_target',''),(729,378,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(730,378,'_menu_item_xfn',''),(731,378,'_menu_item_url','https://test-site.goodcausepartners.com/hosting/shared-hosting/'),(732,378,'_menu_item_fusion_megamenu','a:16:{s:5:\"style\";s:0:\"\";s:6:\"select\";s:1:\"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:\"\";}'),(733,378,'_wp_old_date','2023-04-28'),(734,378,'_wp_old_date','2023-05-23'),(735,378,'_wxr_import_user_slug','atif'),(736,378,'fusion_demo_import','hosting_2'),(737,378,'_fusion_demo_imported_post','a67c73c570cefc5e395fdd336e88a742'),(738,379,'_menu_item_type','custom'),(739,379,'_menu_item_menu_item_parent','0'),(740,379,'_menu_item_object_id','379'),(741,379,'_menu_item_object','custom'),(742,379,'_menu_item_target',''),(743,379,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(744,379,'_menu_item_xfn',''),(745,379,'_menu_item_url','https://test-site.goodcausepartners.com/hosting/dedicated-server'),(746,379,'_menu_item_fusion_megamenu','a:16:{s:5:\"style\";s:0:\"\";s:6:\"select\";s:1:\"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:\"\";}'),(747,379,'_wp_old_date','2023-04-28'),(748,379,'_wp_old_date','2023-05-23'),(749,379,'_wxr_import_user_slug','atif'),(750,379,'fusion_demo_import','hosting_2'),(751,379,'_fusion_demo_imported_post','10275c63e6d7166a1272cb1b3808ec97'),(752,380,'_menu_item_type','custom'),(753,380,'_menu_item_menu_item_parent','0'),(754,380,'_menu_item_object_id','380'),(755,380,'_menu_item_object','custom'),(756,380,'_menu_item_target',''),(757,380,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(758,380,'_menu_item_xfn',''),(759,380,'_menu_item_url','https://test-site.goodcausepartners.com/hosting/wordpress-hosting'),(760,380,'_menu_item_fusion_megamenu','a:16:{s:5:\"style\";s:0:\"\";s:6:\"select\";s:1:\"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:\"\";}'),(761,380,'_wp_old_date','2023-04-28'),(762,380,'_wp_old_date','2023-05-23'),(763,380,'_wxr_import_user_slug','atif'),(764,380,'fusion_demo_import','hosting_2'),(765,380,'_fusion_demo_imported_post','ab03bb23099eaeca0fcc426194a372f3'),(766,381,'_menu_item_type','custom'),(767,381,'_menu_item_menu_item_parent','0'),(768,381,'_menu_item_object_id','381'),(769,381,'_menu_item_object','custom'),(770,381,'_menu_item_target',''),(771,381,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(772,381,'_menu_item_xfn',''),(773,381,'_menu_item_url','https://test-site.goodcausepartners.com/hosting/website-builder/'),(774,381,'_menu_item_fusion_megamenu','a:16:{s:5:\"style\";s:0:\"\";s:6:\"select\";s:1:\"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:\"\";}'),(775,381,'_wp_old_date','2023-04-28'),(776,381,'_wp_old_date','2023-05-23'),(777,381,'_wxr_import_user_slug','atif'),(778,381,'fusion_demo_import','hosting_2'),(779,381,'_fusion_demo_imported_post','842d7fdc03a4dae37610a5a409eb7569'),(780,382,'_menu_item_type','custom'),(781,382,'_menu_item_menu_item_parent','0'),(782,382,'_menu_item_object_id','382'),(783,382,'_menu_item_object','custom'),(784,382,'_menu_item_target',''),(785,382,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(786,382,'_menu_item_xfn',''),(787,382,'_menu_item_url','https://test-site.goodcausepartners.com/hosting/vps-cloud-hosting/'),(788,382,'_menu_item_fusion_megamenu','a:16:{s:5:\"style\";s:0:\"\";s:6:\"select\";s:1:\"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:\"\";}'),(789,382,'_wp_old_date','2023-04-28'),(790,382,'_wp_old_date','2023-05-23'),(791,382,'_wxr_import_user_slug','atif'),(792,382,'fusion_demo_import','hosting_2'),(793,382,'_fusion_demo_imported_post','4f73920fd9bf15a875b62bff32f4792f'),(794,383,'_menu_item_type','custom'),(795,383,'_menu_item_menu_item_parent','0'),(796,383,'_menu_item_object_id','383'),(797,383,'_menu_item_object','custom'),(798,383,'_menu_item_target',''),(799,383,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(800,383,'_menu_item_xfn',''),(801,383,'_menu_item_url','https://test-site.goodcausepartners.com/hosting/managed-private-server/'),(802,383,'_menu_item_fusion_megamenu','a:16:{s:5:\"style\";s:0:\"\";s:6:\"select\";s:1:\"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:\"\";}'),(803,383,'_wp_old_date','2023-04-28'),(804,383,'_wp_old_date','2023-05-23'),(805,383,'_wxr_import_user_slug','atif'),(806,383,'fusion_demo_import','hosting_2'),(807,383,'_fusion_demo_imported_post','9a9d898dfdf7815b8c22856971625b83'),(808,529,'_wp_page_template','100-width.php'),(809,529,'_fusion','a:7:{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:1:\"0\";s:6:\"bottom\";s:1:\"0\";}s:15:\"content_bg_full\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";}'),(810,529,'fusion_builder_status','active'),(811,529,'_fusion_google_fonts','a:3:{s:34:\"var(--awb-typography2-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography2)\";}}s:34:\"var(--awb-typography5-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography5)\";}}s:34:\"var(--awb-typography3-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography3)\";}}}'),(812,529,'_wxr_import_user_slug','atif'),(813,529,'fusion_demo_import','hosting_2'),(814,529,'_fusion_demo_imported_post','854368f7426e276bfebe596155f7362d'),(815,903,'_wp_page_template','100-width.php'),(816,903,'_fusion','a:7:{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:1:\"0\";s:6:\"bottom\";s:4:\"20px\";}s:15:\"content_bg_full\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";}'),(817,903,'fusion_builder_status','active'),(818,903,'_fusion_google_fonts','a:3:{s:34:\"var(--awb-typography2-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography2)\";}}s:34:\"var(--awb-typography5-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography5)\";}}s:34:\"var(--awb-typography3-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography3)\";}}}'),(819,903,'_wxr_import_user_slug','atif'),(820,903,'fusion_demo_import','hosting_2'),(821,903,'_fusion_demo_imported_post','3cf53e75bad4997e6fca114f1f8d50e6'),(822,1004,'_wp_page_template','100-width.php'),(823,1004,'_fusion','a:7:{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:1:\"0\";s:6:\"bottom\";s:4:\"20px\";}s:15:\"content_bg_full\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";}'),(824,1004,'fusion_builder_status','active'),(825,1004,'_fusion_google_fonts','a:3:{s:34:\"var(--awb-typography2-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography2)\";}}s:34:\"var(--awb-typography5-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography5)\";}}s:34:\"var(--awb-typography1-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography1)\";}}}'),(826,1004,'_wxr_import_user_slug','atif'),(827,1004,'fusion_demo_import','hosting_2'),(828,1004,'_fusion_demo_imported_post','312c65904288a4c05dc281bbdfdd2b5b'),(829,1068,'_wp_page_template','100-width.php'),(830,1068,'_fusion','a:7:{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:1:\"0\";s:6:\"bottom\";s:4:\"20px\";}s:15:\"content_bg_full\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";}'),(831,1068,'fusion_builder_status','active'),(832,1068,'_fusion_google_fonts','a:1:{s:10:\"Kumbh Sans\";a:1:{s:8:\"variants\";a:1:{i:0;s:3:\"400\";}}}'),(1379,1917,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:34:\"2023/08/mid-prez-sq-400x400-1.webp\";s:8:\"filesize\";i:9530;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"mid-prez-sq-400x400-1-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6214;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"mid-prez-sq-400x400-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:2866;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:34:\"mid-prez-sq-400x400-1-400x272.webp\";s:5:\"width\";i:400;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6876;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:34:\"mid-prez-sq-400x400-1-320x202.webp\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4480;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:32:\"mid-prez-sq-400x400-1-66x66.webp\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:1084;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:34:\"mid-prez-sq-400x400-1-200x200.webp\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3994;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:34:\"mid-prez-sq-400x400-1-400x272.webp\";s:5:\"width\";i:400;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6876;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:34:\"mid-prez-sq-400x400-1-400x295.webp\";s:5:\"width\";i:400;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7572;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:34:\"mid-prez-sq-400x400-1-300x214.webp\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4924;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:34:\"mid-prez-sq-400x400-1-177x142.webp\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:2870;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(833,1068,'_wxr_import_user_slug','atif'),(834,1068,'fusion_demo_import','hosting_2'),(835,1068,'_fusion_demo_imported_post','28d90fe4bc75087ab34d5b42364a75c4'),(836,1127,'_wp_page_template','100-width.php'),(837,1127,'_fusion','a:7:{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:1:\"0\";s:6:\"bottom\";s:4:\"20px\";}s:15:\"content_bg_full\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";}'),(838,1127,'fusion_builder_status','active'),(839,1127,'_fusion_google_fonts','a:1:{s:34:\"var(--awb-typography5-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography5)\";}}}'),(840,1127,'_wxr_import_user_slug','atif'),(841,1127,'fusion_demo_import','hosting_2'),(842,1127,'_fusion_demo_imported_post','ac94e7f673d9fbacbe4decb573e94588'),(843,1270,'_wp_page_template','100-width.php'),(844,1270,'_fusion','a:7:{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:1:\"0\";s:6:\"bottom\";s:4:\"20px\";}s:15:\"content_bg_full\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";}'),(845,1270,'fusion_builder_status','active'),(846,1270,'_fusion_google_fonts',''),(1149,1802,'_wp_attached_file','2023/08/who-we-are.webp'),(847,1270,'_wxr_import_user_slug','atif'),(848,1270,'fusion_demo_import','hosting_2'),(849,1270,'_fusion_demo_imported_post','001685fb11ec716f54476dc6ded3c70a'),(850,1373,'_wp_page_template','100-width.php'),(851,1373,'_fusion','a:7:{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:1:\"0\";s:6:\"bottom\";s:4:\"20px\";}s:15:\"content_bg_full\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";}'),(852,1373,'fusion_builder_status','active'),(853,1373,'_fusion_google_fonts','a:3:{s:34:\"var(--awb-typography5-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography5)\";}}s:34:\"var(--awb-typography2-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography2)\";}}s:34:\"var(--awb-typography1-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography1)\";}}}'),(958,529,'avada_post_views_count','1'),(856,1373,'fusion_demo_import','hosting_2'),(857,1373,'_fusion_demo_imported_post','de6658f653ef5dc02e4ec87325734fcb'),(858,1431,'_wp_page_template','100-width.php'),(859,1431,'_fusion','a:7:{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:1:\"0\";s:6:\"bottom\";s:4:\"20px\";}s:15:\"content_bg_full\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";}'),(860,1431,'fusion_builder_status','active'),(861,1431,'_fusion_google_fonts','a:3:{s:34:\"var(--awb-typography5-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography5)\";}}s:34:\"var(--awb-typography2-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography2)\";}}s:34:\"var(--awb-typography1-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography1)\";}}}'),(957,772,'avada_post_views_count_today_date','21-08-2023'),(956,772,'avada_today_post_views_count','1'),(864,1431,'fusion_demo_import','hosting_2'),(865,1431,'_fusion_demo_imported_post','c68264e029d179acdde6183141a1229c'),(866,1444,'_wp_page_template','100-width.php'),(867,1444,'_fusion','a:7:{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:1:\"0\";s:6:\"bottom\";s:4:\"20px\";}s:15:\"content_bg_full\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";}'),(868,1444,'fusion_builder_status','active'),(869,1444,'_fusion_google_fonts','a:3:{s:34:\"var(--awb-typography2-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography2)\";}}s:34:\"var(--awb-typography1-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography1)\";}}s:34:\"var(--awb-typography5-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography5)\";}}}'),(870,1444,'_wxr_import_user_slug','atif'),(871,1444,'fusion_demo_import','hosting_2'),(872,1444,'_fusion_demo_imported_post','dcf2be4b845b2db6e34edcb86bdf2521'),(873,1470,'_wp_page_template','100-width.php'),(874,1470,'_fusion','a:7:{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:1:\"0\";s:6:\"bottom\";s:4:\"20px\";}s:15:\"content_bg_full\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";}'),(875,1470,'fusion_builder_status','active'),(876,1470,'_fusion_google_fonts','a:2:{s:34:\"var(--awb-typography2-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography2)\";}}s:34:\"var(--awb-typography5-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography5)\";}}}'),(877,1470,'_wxr_import_user_slug','atif'),(878,1470,'fusion_demo_import','hosting_2'),(879,1470,'_fusion_demo_imported_post','f56624adce117e2d81e3b01a4e5c7389'),(880,1472,'_wp_page_template','100-width.php'),(881,1472,'_fusion','a:7:{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:1:\"0\";s:6:\"bottom\";s:4:\"20px\";}s:15:\"content_bg_full\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";}'),(882,1472,'fusion_builder_status','active'),(883,1472,'_fusion_google_fonts','a:4:{s:34:\"var(--awb-typography2-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography2)\";}}s:34:\"var(--awb-typography1-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography1)\";}}s:34:\"var(--awb-typography5-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography5)\";}}s:34:\"var(--awb-typography3-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography3)\";}}}'),(955,772,'avada_post_views_count','1'),(886,1472,'fusion_demo_import','hosting_2'),(887,1472,'_fusion_demo_imported_post','e1d3f905133313988543dc9c99610ccf'),(888,1508,'_wp_page_template','100-width.php'),(889,1508,'_fusion','a:7:{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:1:\"0\";s:6:\"bottom\";s:4:\"20px\";}s:15:\"content_bg_full\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";}'),(890,1508,'fusion_builder_status','active'),(891,1508,'_fusion_google_fonts','a:3:{s:34:\"var(--awb-typography5-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography5)\";}}s:34:\"var(--awb-typography2-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography2)\";}}s:34:\"var(--awb-typography1-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography1)\";}}}'),(892,1508,'_wxr_import_user_slug','atif'),(893,1508,'fusion_demo_import','hosting_2'),(894,1508,'_fusion_demo_imported_post','cccc8fc109356ccf76ec61336baa2d0f'),(949,1632,'avada_post_views_count','10'),(897,766,'_fusion','a:5:{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\";}'),(898,766,'fusion_builder_status','active'),(899,766,'_thumbnail_id','862'),(900,766,'_fusion_google_fonts','a:1:{s:34:\"var(--awb-typography5-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography5)\";}}}'),(901,766,'_wxr_import_user_slug','atif'),(902,766,'fusion_demo_import','hosting_2'),(903,766,'_fusion_demo_imported_post','f655d25f0de0d95ef357a49da145c894'),(952,1127,'avada_post_views_count','17'),(906,769,'_fusion','a:5:{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\";}'),(907,769,'fusion_builder_status','active'),(908,769,'_thumbnail_id','783'),(909,769,'_fusion_google_fonts','a:1:{s:34:\"var(--awb-typography5-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography5)\";}}}'),(910,769,'_wxr_import_user_slug','atif'),(911,769,'fusion_demo_import','hosting_2'),(912,769,'_fusion_demo_imported_post','88e5ace5a92ca564c8bf4aa5a32585fc'),(950,1632,'avada_today_post_views_count','10'),(915,772,'_fusion','a:5:{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\";}'),(916,772,'fusion_builder_status','active'),(917,772,'_fusion_google_fonts','a:1:{s:34:\"var(--awb-typography5-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography5)\";}}}'),(918,772,'_thumbnail_id','1249'),(919,772,'_wxr_import_user_slug','atif'),(920,772,'fusion_demo_import','hosting_2'),(921,772,'_fusion_demo_imported_post','1109d35b10f6c090f3bbb5185cc2f7b5'),(953,1127,'avada_today_post_views_count','13'),(924,774,'_fusion','a:5:{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\";}'),(925,774,'fusion_builder_status','active'),(926,774,'_thumbnail_id','782'),(927,774,'_fusion_google_fonts','a:1:{s:34:\"var(--awb-typography5-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography5)\";}}}'),(928,774,'_wxr_import_user_slug','atif'),(929,774,'fusion_demo_import','hosting_2'),(930,774,'_fusion_demo_imported_post','a7a6ad7f4475b53d7293da4d0d6c3b76'),(951,1632,'avada_post_views_count_today_date','21-08-2023'),(933,776,'_fusion','a:5:{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\";}'),(934,776,'fusion_builder_status','active'),(935,776,'_fusion_google_fonts','a:1:{s:34:\"var(--awb-typography5-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography5)\";}}}'),(936,776,'_thumbnail_id','1254'),(937,776,'_wxr_import_user_slug','atif'),(938,776,'fusion_demo_import','hosting_2'),(939,776,'_fusion_demo_imported_post','bac3b0169401fad4a5c3ded3e0de8f8f'),(954,1127,'avada_post_views_count_today_date','23-08-2023'),(942,1256,'_thumbnail_id','1257'),(943,1256,'_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\";}'),(944,1256,'fusion_builder_status','active'),(945,1256,'_fusion_google_fonts','a:1:{s:34:\"var(--awb-typography5-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography5)\";}}}'),(946,1256,'_wxr_import_user_slug','atif'),(947,1256,'fusion_demo_import','hosting_2'),(948,1256,'_fusion_demo_imported_post','0e0b10e90493fe029f13b8b2507a3706'),(965,1373,'avada_today_post_views_count','1'),(966,1373,'avada_post_views_count_today_date','21-08-2023'),(1105,1723,'_dp_original','1068'),(1314,1902,'_menu_item_object_id','1127'),(1315,1902,'_menu_item_object','page'),(1316,1902,'_menu_item_target',''),(1317,1902,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1318,1902,'_menu_item_xfn',''),(1319,1902,'_menu_item_url',''),(1328,1903,'_menu_item_type','post_type'),(1103,1723,'fusion_demo_import','hosting_2'),(1380,1785,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:4:\"time\";d:1.7800000000000000266453525910037569701671600341796875;s:5:\"bytes\";i:683219;s:7:\"percent\";d:90.030000000000001136868377216160297393798828125;s:11:\"size_before\";i:758843;s:10:\"size_after\";i:75624;s:5:\"lossy\";i:1;s:9:\"keep_exif\";i:0;s:11:\"api_version\";s:3:\"1.0\";}s:5:\"sizes\";a:12:{s:22:\"recent-works-thumbnail\";O:8:\"stdClass\":5:{s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:5:\"bytes\";i:3887;s:7:\"percent\";d:71.719999999999998863131622783839702606201171875;s:11:\"size_before\";i:5420;s:10:\"size_after\";i:1533;}s:14:\"portfolio-five\";O:8:\"stdClass\":5:{s:4:\"time\";d:0.0299999999999999988897769753748434595763683319091796875;s:5:\"bytes\";i:21199;s:7:\"percent\";d:86.7600000000000051159076974727213382720947265625;s:11:\"size_before\";i:24435;s:10:\"size_after\";i:3236;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:4:\"time\";d:0.040000000000000000832667268468867405317723751068115234375;s:5:\"bytes\";i:17141;s:7:\"percent\";d:81.2099999999999937472239253111183643341064453125;s:11:\"size_before\";i:21107;s:10:\"size_after\";i:3966;}s:10:\"fusion-200\";O:8:\"stdClass\":5:{s:4:\"time\";d:0.05000000000000000277555756156289135105907917022705078125;s:5:\"bytes\";i:31173;s:7:\"percent\";d:87.349999999999994315658113919198513031005859375;s:11:\"size_before\";i:35689;s:10:\"size_after\";i:4516;}s:11:\"blog-medium\";O:8:\"stdClass\":5:{s:4:\"time\";d:0.08000000000000000166533453693773481063544750213623046875;s:5:\"bytes\";i:49029;s:7:\"percent\";d:86.7999999999999971578290569595992565155029296875;s:11:\"size_before\";i:56484;s:10:\"size_after\";i:7455;}s:15:\"portfolio-three\";O:8:\"stdClass\":5:{s:4:\"time\";d:0.0899999999999999966693309261245303787291049957275390625;s:5:\"bytes\";i:50395;s:7:\"percent\";d:90.8299999999999982946974341757595539093017578125;s:11:\"size_before\";i:55483;s:10:\"size_after\";i:5088;}s:13:\"portfolio-two\";O:8:\"stdClass\":5:{s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;s:5:\"bytes\";i:84924;s:7:\"percent\";d:90.780000000000001136868377216160297393798828125;s:11:\"size_before\";i:93549;s:10:\"size_after\";i:8625;}s:13:\"portfolio-one\";O:8:\"stdClass\":5:{s:4:\"time\";d:0.1000000000000000055511151231257827021181583404541015625;s:5:\"bytes\";i:82605;s:7:\"percent\";d:92.9800000000000039790393202565610408782958984375;s:11:\"size_before\";i:88839;s:10:\"size_after\";i:6234;}s:10:\"blog-large\";O:8:\"stdClass\":5:{s:4:\"time\";d:0.11000000000000000055511151231257827021181583404541015625;s:5:\"bytes\";i:82605;s:7:\"percent\";d:92.9800000000000039790393202565610408782958984375;s:11:\"size_before\";i:88839;s:10:\"size_after\";i:6234;}s:14:\"portfolio-full\";O:8:\"stdClass\":5:{s:4:\"time\";d:0.14000000000000001332267629550187848508358001708984375;s:5:\"bytes\";i:101483;s:7:\"percent\";d:90.2399999999999948840923025272786617279052734375;s:11:\"size_before\";i:112456;s:10:\"size_after\";i:10973;}s:6:\"medium\";O:8:\"stdClass\":5:{s:4:\"time\";d:0.25;s:5:\"bytes\";i:50224;s:7:\"percent\";d:84.6700000000000017053025658242404460906982421875;s:11:\"size_before\";i:59318;s:10:\"size_after\";i:9094;}s:12:\"recent-posts\";O:8:\"stdClass\":5:{s:4:\"time\";d:0.6999999999999999555910790149937383830547332763671875;s:5:\"bytes\";i:108554;s:7:\"percent\";d:92.599999999999994315658113919198513031005859375;s:11:\"size_before\";i:117224;s:10:\"size_after\";i:8670;}}}'),(1321,1902,'_menu_item_fusion_megamenu','a:18:{s:5:\"style\";s:0:\"\";s:6:\"select\";s:1:\"0\";s:4:\"icon\";s:25:\"fa-angle-double-right fas\";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:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";}'),(1104,1723,'_fusion_demo_imported_post','28d90fe4bc75087ab34d5b42364a75c4'),(1134,1785,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:447;s:4:\"file\";s:27:\"2023/08/brain-400x447-1.png\";s:8:\"filesize\";i:120824;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"brain-400x447-1-268x300.png\";s:5:\"width\";i:268;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59318;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"brain-400x447-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21107;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:27:\"brain-400x447-1-400x272.png\";s:5:\"width\";i:400;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:88839;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:27:\"brain-400x447-1-320x202.png\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56484;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:27:\"brain-400x447-1-400x441.png\";s:5:\"width\";i:400;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:117224;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:25:\"brain-400x447-1-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5420;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:27:\"brain-400x447-1-200x224.png\";s:5:\"width\";i:200;s:6:\"height\";i:224;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35689;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:27:\"brain-400x447-1-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:112456;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:27:\"brain-400x447-1-400x272.png\";s:5:\"width\";i:400;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:88839;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:27:\"brain-400x447-1-400x295.png\";s:5:\"width\";i:400;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93549;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:27:\"brain-400x447-1-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55483;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:27:\"brain-400x447-1-177x142.png\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24435;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(973,1638,'_wp_attached_file','2023/08/gcmp-horiz-logo.webp'),(974,1638,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:903;s:6:\"height\";i:264;s:4:\"file\";s:28:\"2023/08/gcmp-horiz-logo.webp\";s:8:\"filesize\";i:25426;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"gcmp-horiz-logo-300x88.webp\";s:5:\"width\";i:300;s:6:\"height\";i:88;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6734;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"gcmp-horiz-logo-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4416;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"gcmp-horiz-logo-768x225.webp\";s:5:\"width\";i:768;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:18354;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:28:\"gcmp-horiz-logo-669x264.webp\";s:5:\"width\";i:669;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12872;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:28:\"gcmp-horiz-logo-320x202.webp\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8298;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:28:\"gcmp-horiz-logo-700x264.webp\";s:5:\"width\";i:700;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13594;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:26:\"gcmp-horiz-logo-66x66.webp\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:1964;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:27:\"gcmp-horiz-logo-200x58.webp\";s:5:\"width\";i:200;s:6:\"height\";i:58;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4084;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:28:\"gcmp-horiz-logo-400x117.webp\";s:5:\"width\";i:400;s:6:\"height\";i:117;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8958;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:28:\"gcmp-horiz-logo-600x175.webp\";s:5:\"width\";i:600;s:6:\"height\";i:175;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14228;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:28:\"gcmp-horiz-logo-800x234.webp\";s:5:\"width\";i:800;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:19502;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:28:\"gcmp-horiz-logo-540x264.webp\";s:5:\"width\";i:540;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:10756;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:28:\"gcmp-horiz-logo-460x264.webp\";s:5:\"width\";i:460;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9120;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:28:\"gcmp-horiz-logo-300x214.webp\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7994;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:28:\"gcmp-horiz-logo-177x142.webp\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5008;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1102,1723,'_wxr_import_user_slug','atif'),(1170,1826,'_edit_last','1'),(1171,1826,'_edit_lock','1692735659:1'),(1172,1826,'_fusion','a:0:{}'),(1099,1723,'_fusion','a:7:{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:1:\"0\";s:6:\"bottom\";s:4:\"20px\";}s:15:\"content_bg_full\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";}'),(1100,1723,'fusion_builder_status','active'),(1101,1723,'_fusion_google_fonts','a:1:{s:10:\"Kumbh Sans\";a:1:{s:8:\"variants\";a:1:{i:0;s:3:\"400\";}}}'),(1173,1827,'_thumbnail_id','1830'),(1309,351,'_edit_lock','1692779169:1'),(1028,1647,'_wp_page_template','100-width.php'),(1029,1647,'_fusion','a:7:{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:4:\"20px\";s:6:\"bottom\";s:4:\"20px\";}s:15:\"content_bg_full\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";}'),(1059,1647,'avada_post_views_count_today_date','23-08-2023'),(1030,1647,'fusion_builder_status','active'),(1031,1647,'_fusion_google_fonts','a:1:{s:34:\"var(--awb-typography2-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography2)\";}}}'),(1304,1721,'_wp_old_date','2023-08-22'),(1305,1756,'_wp_old_date','2023-08-22'),(1306,1845,'_wp_old_date','2023-08-22'),(1045,1127,'_edit_lock','1692780693:1'),(1056,1678,'_fusion_is_global','yes'),(1033,1647,'_wxr_import_user_slug','atif'),(1034,1647,'fusion_demo_import','hosting_2'),(1035,1647,'_fusion_demo_imported_post','5e797192070d78a174f603a8e44fa35b'),(1303,1647,'_edit_lock','1692809055:1'),(1037,1647,'_edit_last','1'),(1038,1648,'_wp_attached_file','2023/08/gcmp-promo-feature.webp'),(1039,1648,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:649;s:6:\"height\";i:647;s:4:\"file\";s:31:\"2023/08/gcmp-promo-feature.webp\";s:8:\"filesize\";i:24498;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"gcmp-promo-feature-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14322;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"gcmp-promo-feature-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6546;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"gcmp-promo-feature-649x272.webp\";s:5:\"width\";i:649;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5966;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"gcmp-promo-feature-320x202.webp\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9742;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:31:\"gcmp-promo-feature-649x441.webp\";s:5:\"width\";i:649;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16038;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"gcmp-promo-feature-66x66.webp\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:2572;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"gcmp-promo-feature-200x199.webp\";s:5:\"width\";i:200;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9238;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"gcmp-promo-feature-400x399.webp\";s:5:\"width\";i:400;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:19984;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:31:\"gcmp-promo-feature-600x598.webp\";s:5:\"width\";i:600;s:6:\"height\";i:598;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:29528;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:31:\"gcmp-promo-feature-649x400.webp\";s:5:\"width\";i:649;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14220;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:31:\"gcmp-promo-feature-540x272.webp\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:10380;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:31:\"gcmp-promo-feature-460x295.webp\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14858;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:31:\"gcmp-promo-feature-300x214.webp\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9530;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:31:\"gcmp-promo-feature-177x142.webp\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7666;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1040,1649,'_wp_attached_file','2023/08/gcmp-romo-feature2.webp'),(1041,1649,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:649;s:6:\"height\";i:647;s:4:\"file\";s:31:\"2023/08/gcmp-romo-feature2.webp\";s:8:\"filesize\";i:24684;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"gcmp-romo-feature2-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14208;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"gcmp-romo-feature2-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6482;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"gcmp-romo-feature2-649x272.webp\";s:5:\"width\";i:649;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5966;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"gcmp-romo-feature2-320x202.webp\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9742;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:31:\"gcmp-romo-feature2-649x441.webp\";s:5:\"width\";i:649;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16038;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"gcmp-romo-feature2-66x66.webp\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:2534;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"gcmp-romo-feature2-200x199.webp\";s:5:\"width\";i:200;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9096;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"gcmp-romo-feature2-400x399.webp\";s:5:\"width\";i:400;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:19608;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:31:\"gcmp-romo-feature2-600x598.webp\";s:5:\"width\";i:600;s:6:\"height\";i:598;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:29130;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:31:\"gcmp-romo-feature2-649x400.webp\";s:5:\"width\";i:649;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14220;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:31:\"gcmp-romo-feature2-540x272.webp\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:10380;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:31:\"gcmp-romo-feature2-460x295.webp\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14858;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:31:\"gcmp-romo-feature2-300x214.webp\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9530;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:31:\"gcmp-romo-feature2-177x142.webp\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7584;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1133,1785,'_wp_attached_file','2023/08/brain-400x447-1.png'),(1043,903,'_edit_lock','1692652584:1'),(1046,763,'_edit_lock','1692749939:1'),(1048,1632,'_edit_lock','1692721709:1'),(1049,1097,'_fusion','a:11:{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:1:\"0\";s:6:\"bottom\";s:4:\"20px\";}s:15:\"content_bg_full\";s:2:\"no\";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\";}'),(1050,1097,'_fusion_google_fonts','a:3:{s:34:\"var(--awb-typography5-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography2)\";}}s:34:\"var(--awb-typography2-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography5)\";}}s:10:\"Kumbh Sans\";a:2:{s:8:\"variants\";a:1:{i:0;s:3:\"400\";}s:7:\"subsets\";a:0:{}}}'),(1051,1097,'fusion_builder_status','active'),(1067,1083,'_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:1:\"0\";s:6:\"bottom\";s:4:\"20px\";}s:15:\"content_bg_full\";s:2:\"no\";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:17:\"content_bg_repeat\";s:7:\"default\";}'),(1052,1017,'_fusion','a:11:{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:4:\"20px\";s:6:\"bottom\";s:4:\"20px\";}s:15:\"content_bg_full\";s:2:\"no\";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\";}'),(1053,1017,'_fusion_google_fonts','a:3:{s:34:\"var(--awb-typography2-font-family)\";a:1:{s:8:\"variants\";a:2:{i:0;s:3:\"400\";i:1;s:22:\"var(--awb-typography5)\";}}s:34:\"var(--awb-typography3-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography5)\";}}s:34:\"var(--awb-typography5-font-family)\";a:1:{s:8:\"variants\";a:3:{i:0;s:3:\"400\";i:1;s:22:\"var(--awb-typography5)\";i:2;s:22:\"var(--awb-typography2)\";}}}'),(1054,1017,'fusion_builder_status','active'),(1058,1647,'avada_today_post_views_count','46'),(1061,1695,'_fusion','a:0:{}'),(1066,1068,'_edit_last','1'),(1063,1695,'fusion_builder_status','active'),(1068,1083,'_fusion_google_fonts','a:2:{s:34:\"var(--awb-typography5-font-family)\";a:1:{s:8:\"variants\";a:3:{i:0;s:3:\"400\";i:1;s:22:\"var(--awb-typography5)\";i:2;s:22:\"var(--awb-typography2)\";}}s:34:\"var(--awb-typography2-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography5)\";}}}'),(1069,1083,'fusion_builder_status','active'),(1074,1721,'_menu_item_type','post_type'),(1075,1721,'_menu_item_menu_item_parent','0'),(1378,1917,'_wp_attached_file','2023/08/mid-prez-sq-400x400-1.webp'),(1076,1721,'_menu_item_object_id','1068'),(1077,1721,'_menu_item_object','page'),(1078,1721,'_menu_item_target',''),(1079,1721,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1080,1721,'_menu_item_xfn',''),(1081,1721,'_menu_item_url',''),(1083,1721,'_menu_item_fusion_megamenu','a:18:{s:5:\"style\";s:0:\"\";s:6:\"select\";s:1:\"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:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";}'),(1098,1723,'_wp_page_template','100-width.php'),(1311,99,'_fusion','a:0:{}'),(1312,1902,'_menu_item_type','post_type'),(1313,1902,'_menu_item_menu_item_parent','0'),(1107,1723,'_edit_last','1'),(1112,1068,'avada_post_views_count','27'),(1113,1068,'avada_today_post_views_count','12'),(1109,1731,'_fusion','a:0:{}'),(1108,1431,'_edit_lock','1692676789:1'),(1114,1068,'avada_post_views_count_today_date','23-08-2023'),(1115,1723,'avada_post_views_count','18'),(1116,1723,'avada_today_post_views_count','1'),(1117,1723,'avada_post_views_count_today_date','23-08-2023'),(1122,1756,'_menu_item_type','post_type'),(1123,1756,'_menu_item_menu_item_parent','0'),(1124,1756,'_menu_item_object_id','1723'),(1125,1756,'_menu_item_object','page'),(1126,1756,'_menu_item_target',''),(1127,1756,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1128,1756,'_menu_item_xfn',''),(1129,1756,'_menu_item_url',''),(1131,1756,'_menu_item_fusion_megamenu','a:18:{s:5:\"style\";s:0:\"\";s:6:\"select\";s:1:\"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:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";}'),(1135,1786,'_wp_attached_file','2023/08/brain.webp'),(1136,1786,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:661;s:6:\"height\";i:661;s:4:\"file\";s:18:\"2023/08/brain.webp\";s:8:\"filesize\";i:37852;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"brain-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14132;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"brain-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6244;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:18:\"brain-661x272.webp\";s:5:\"width\";i:661;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16424;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:18:\"brain-320x202.webp\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12604;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:18:\"brain-661x441.webp\";s:5:\"width\";i:661;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:22372;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:16:\"brain-66x66.webp\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:2120;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:18:\"brain-200x200.webp\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8776;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:18:\"brain-400x400.webp\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:19498;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:18:\"brain-600x600.webp\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:31234;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:18:\"brain-661x400.webp\";s:5:\"width\";i:661;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:21234;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:18:\"brain-540x272.webp\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:19462;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:18:\"brain-460x295.webp\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:19616;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:18:\"brain-300x214.webp\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12568;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:18:\"brain-177x142.webp\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7332;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1137,1791,'_wp_page_template','100-width.php'),(1138,1791,'_fusion','a:7:{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:4:\"20px\";s:6:\"bottom\";s:4:\"20px\";}s:15:\"content_bg_full\";s:2:\"no\";s:11:\"slider_type\";s:2:\"no\";s:9:\"wooslider\";s:1:\"0\";}'),(1139,1791,'fusion_builder_status','active'),(1140,1791,'_fusion_google_fonts','a:3:{s:34:\"var(--awb-typography2-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography2)\";}}s:34:\"var(--awb-typography3-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography3)\";}}s:34:\"var(--awb-typography5-font-family)\";a:1:{s:8:\"variants\";a:1:{i:0;s:22:\"var(--awb-typography5)\";}}}'),(1141,1791,'_wxr_import_user_slug','atif'),(1142,1791,'fusion_demo_import','hosting_2'),(1143,1791,'_fusion_demo_imported_post','5e797192070d78a174f603a8e44fa35b'),(1144,1791,'avada_post_views_count','18'),(1145,1791,'avada_today_post_views_count','12'),(1146,1791,'avada_post_views_count_today_date','22-08-2023'),(1147,1791,'_dp_original','1647'),(1148,1270,'_edit_lock','1692802932:1'),(1150,1802,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:23:\"2023/08/who-we-are.webp\";s:8:\"filesize\";i:27158;s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"who-we-are-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4488;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:23:\"who-we-are-300x272.webp\";s:5:\"width\";i:300;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9276;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:23:\"who-we-are-300x202.webp\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7488;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:21:\"who-we-are-66x66.webp\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:1870;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:23:\"who-we-are-200x200.webp\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6402;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:23:\"who-we-are-300x272.webp\";s:5:\"width\";i:300;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9276;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:23:\"who-we-are-300x295.webp\";s:5:\"width\";i:300;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9296;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:23:\"who-we-are-300x214.webp\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7772;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:23:\"who-we-are-177x142.webp\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5128;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1151,1803,'_wp_attached_file','2023/08/what-we-do.webp'),(1152,1803,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:23:\"2023/08/what-we-do.webp\";s:8:\"filesize\";i:27034;s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"what-we-do-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5020;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:23:\"what-we-do-300x272.webp\";s:5:\"width\";i:300;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9962;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:23:\"what-we-do-300x202.webp\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8098;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:21:\"what-we-do-66x66.webp\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:2042;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:23:\"what-we-do-200x200.webp\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7066;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:23:\"what-we-do-300x272.webp\";s:5:\"width\";i:300;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9962;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:23:\"what-we-do-300x295.webp\";s:5:\"width\";i:300;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:10116;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:23:\"what-we-do-300x214.webp\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8508;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:23:\"what-we-do-177x142.webp\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5882;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1153,1805,'_wp_attached_file','2023/08/contact.webp'),(1154,1805,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:20:\"2023/08/contact.webp\";s:8:\"filesize\";i:21916;s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"contact-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3354;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:20:\"contact-300x272.webp\";s:5:\"width\";i:300;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6490;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:20:\"contact-300x202.webp\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5902;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:18:\"contact-66x66.webp\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:1562;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:20:\"contact-200x200.webp\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4502;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:20:\"contact-300x272.webp\";s:5:\"width\";i:300;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6490;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:20:\"contact-300x295.webp\";s:5:\"width\";i:300;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6504;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:20:\"contact-300x214.webp\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6030;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:20:\"contact-177x142.webp\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4546;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1159,1809,'_wp_attached_file','2023/08/who-we-are-intro2.webp'),(1156,1808,'_wp_attached_file','2023/08/what-we-do-intro.webp'),(1157,1808,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:656;s:4:\"file\";s:29:\"2023/08/what-we-do-intro.webp\";s:8:\"filesize\";i:52650;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"what-we-do-intro-300x246.webp\";s:5:\"width\";i:300;s:6:\"height\";i:246;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13852;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"what-we-do-intro-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7066;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"what-we-do-intro-768x630.webp\";s:5:\"width\";i:768;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:39550;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:29:\"what-we-do-intro-669x272.webp\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:20762;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:29:\"what-we-do-intro-320x202.webp\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12376;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:29:\"what-we-do-intro-700x441.webp\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:29556;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:27:\"what-we-do-intro-66x66.webp\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:2788;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:29:\"what-we-do-intro-200x164.webp\";s:5:\"width\";i:200;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8614;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:29:\"what-we-do-intro-400x328.webp\";s:5:\"width\";i:400;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:18180;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:29:\"what-we-do-intro-600x492.webp\";s:5:\"width\";i:600;s:6:\"height\";i:492;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:29864;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:29:\"what-we-do-intro-800x400.webp\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:25346;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:29:\"what-we-do-intro-540x272.webp\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:19324;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:29:\"what-we-do-intro-460x295.webp\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:19032;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:29:\"what-we-do-intro-300x214.webp\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12894;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:29:\"what-we-do-intro-177x142.webp\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7688;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1160,1809,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:893;s:6:\"height\";i:732;s:4:\"file\";s:30:\"2023/08/who-we-are-intro2.webp\";s:8:\"filesize\";i:70670;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"who-we-are-intro2-300x246.webp\";s:5:\"width\";i:300;s:6:\"height\";i:246;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13106;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"who-we-are-intro2-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7184;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"who-we-are-intro2-768x630.webp\";s:5:\"width\";i:768;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:36988;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:30:\"who-we-are-intro2-669x272.webp\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:18400;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:30:\"who-we-are-intro2-320x202.webp\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13552;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:30:\"who-we-are-intro2-700x441.webp\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:31914;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:28:\"who-we-are-intro2-66x66.webp\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:2632;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:30:\"who-we-are-intro2-200x164.webp\";s:5:\"width\";i:200;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8432;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:30:\"who-we-are-intro2-400x328.webp\";s:5:\"width\";i:400;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:18276;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:30:\"who-we-are-intro2-600x492.webp\";s:5:\"width\";i:600;s:6:\"height\";i:492;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:28552;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:30:\"who-we-are-intro2-800x656.webp\";s:5:\"width\";i:800;s:6:\"height\";i:656;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:39104;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:30:\"who-we-are-intro2-893x400.webp\";s:5:\"width\";i:893;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:25660;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:30:\"who-we-are-intro2-540x272.webp\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:18864;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:30:\"who-we-are-intro2-460x295.webp\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:20764;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:30:\"who-we-are-intro2-300x214.webp\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13208;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:30:\"who-we-are-intro2-177x142.webp\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7308;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1174,1827,'_fusion','a:5:{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\";}'),(1162,1814,'_wp_attached_file','2023/08/whatwedo-comp2.webp'),(1163,1814,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1786;s:6:\"height\";i:1463;s:4:\"file\";s:27:\"2023/08/whatwedo-comp2.webp\";s:8:\"filesize\";i:73576;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"whatwedo-comp2-300x246.webp\";s:5:\"width\";i:300;s:6:\"height\";i:246;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12150;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"whatwedo-comp2-1024x839.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:839;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:45674;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"whatwedo-comp2-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6288;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"whatwedo-comp2-768x629.webp\";s:5:\"width\";i:768;s:6:\"height\";i:629;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:33642;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"whatwedo-comp2-1536x1258.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:1258;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:71672;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:27:\"whatwedo-comp2-669x272.webp\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:17318;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:27:\"whatwedo-comp2-320x202.webp\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11774;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:27:\"whatwedo-comp2-700x441.webp\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:27506;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:25:\"whatwedo-comp2-66x66.webp\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:2416;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:27:\"whatwedo-comp2-200x164.webp\";s:5:\"width\";i:200;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7798;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:27:\"whatwedo-comp2-400x328.webp\";s:5:\"width\";i:400;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16744;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:27:\"whatwedo-comp2-600x491.webp\";s:5:\"width\";i:600;s:6:\"height\";i:491;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:25962;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:27:\"whatwedo-comp2-800x655.webp\";s:5:\"width\";i:800;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:35332;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:28:\"whatwedo-comp2-1200x983.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:983;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:54436;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:27:\"whatwedo-comp2-940x400.webp\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:25918;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:27:\"whatwedo-comp2-540x272.webp\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16816;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:27:\"whatwedo-comp2-460x295.webp\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:17910;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:27:\"whatwedo-comp2-300x214.webp\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12234;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:27:\"whatwedo-comp2-177x142.webp\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6856;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1164,1815,'_wp_attached_file','2023/08/whatwedo-comp3.webp'),(1165,1815,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1786;s:6:\"height\";i:1463;s:4:\"file\";s:27:\"2023/08/whatwedo-comp3.webp\";s:8:\"filesize\";i:77164;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"whatwedo-comp3-300x246.webp\";s:5:\"width\";i:300;s:6:\"height\";i:246;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12906;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"whatwedo-comp3-1024x839.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:839;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:44924;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"whatwedo-comp3-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7054;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"whatwedo-comp3-768x629.webp\";s:5:\"width\";i:768;s:6:\"height\";i:629;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:33358;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"whatwedo-comp3-1536x1258.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:1258;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:67428;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:27:\"whatwedo-comp3-669x272.webp\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16454;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:27:\"whatwedo-comp3-320x202.webp\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11636;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:27:\"whatwedo-comp3-700x441.webp\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:25738;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:25:\"whatwedo-comp3-66x66.webp\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:2746;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:27:\"whatwedo-comp3-200x164.webp\";s:5:\"width\";i:200;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8574;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:27:\"whatwedo-comp3-400x328.webp\";s:5:\"width\";i:400;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:17252;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:27:\"whatwedo-comp3-600x491.webp\";s:5:\"width\";i:600;s:6:\"height\";i:491;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:26034;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:27:\"whatwedo-comp3-800x655.webp\";s:5:\"width\";i:800;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:35114;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:28:\"whatwedo-comp3-1200x983.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:983;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:52900;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:27:\"whatwedo-comp3-940x400.webp\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:24364;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:27:\"whatwedo-comp3-540x272.webp\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16542;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:27:\"whatwedo-comp3-460x295.webp\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16928;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:27:\"whatwedo-comp3-300x214.webp\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12608;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:27:\"whatwedo-comp3-177x142.webp\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7362;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1166,1817,'_wp_attached_file','2023/08/whatwedo-top.webp'),(1167,1817,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1786;s:6:\"height\";i:1463;s:4:\"file\";s:25:\"2023/08/whatwedo-top.webp\";s:8:\"filesize\";i:128902;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"whatwedo-top-300x246.webp\";s:5:\"width\";i:300;s:6:\"height\";i:246;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14458;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"whatwedo-top-1024x839.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:839;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:56660;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"whatwedo-top-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8268;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"whatwedo-top-768x629.webp\";s:5:\"width\";i:768;s:6:\"height\";i:629;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:41330;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"whatwedo-top-1536x1258.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:1258;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:87948;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:25:\"whatwedo-top-669x272.webp\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:20092;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:25:\"whatwedo-top-320x202.webp\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13326;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:25:\"whatwedo-top-700x441.webp\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:30860;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:23:\"whatwedo-top-66x66.webp\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3142;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:25:\"whatwedo-top-200x164.webp\";s:5:\"width\";i:200;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9262;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:25:\"whatwedo-top-400x328.webp\";s:5:\"width\";i:400;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:20316;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:25:\"whatwedo-top-600x491.webp\";s:5:\"width\";i:600;s:6:\"height\";i:491;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:30968;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:25:\"whatwedo-top-800x655.webp\";s:5:\"width\";i:800;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:43062;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:26:\"whatwedo-top-1200x983.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:983;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:66240;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:25:\"whatwedo-top-940x400.webp\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:29898;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:25:\"whatwedo-top-540x272.webp\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:19110;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:25:\"whatwedo-top-460x295.webp\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:19992;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:25:\"whatwedo-top-300x214.webp\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14168;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:25:\"whatwedo-top-177x142.webp\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8068;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1168,1819,'_wp_attached_file','2023/08/whoweare-intro.webp'),(1169,1819,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1786;s:6:\"height\";i:1463;s:4:\"file\";s:27:\"2023/08/whoweare-intro.webp\";s:8:\"filesize\";i:81000;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"whoweare-intro-300x246.webp\";s:5:\"width\";i:300;s:6:\"height\";i:246;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11938;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"whoweare-intro-1024x839.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:839;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:45968;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"whoweare-intro-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6746;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"whoweare-intro-768x629.webp\";s:5:\"width\";i:768;s:6:\"height\";i:629;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:33278;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"whoweare-intro-1536x1258.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:1258;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:71876;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:27:\"whoweare-intro-669x272.webp\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:18208;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:27:\"whoweare-intro-320x202.webp\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11804;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:27:\"whoweare-intro-700x441.webp\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:27380;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:25:\"whoweare-intro-66x66.webp\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:2624;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:27:\"whoweare-intro-200x164.webp\";s:5:\"width\";i:200;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7554;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:27:\"whoweare-intro-400x328.webp\";s:5:\"width\";i:400;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16530;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:27:\"whoweare-intro-600x491.webp\";s:5:\"width\";i:600;s:6:\"height\";i:491;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:25760;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:27:\"whoweare-intro-800x655.webp\";s:5:\"width\";i:800;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:34316;}s:11:\"fusion-1200\";a:5:{s:4:\"file\";s:28:\"whoweare-intro-1200x983.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:983;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:54428;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:27:\"whoweare-intro-940x400.webp\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:27518;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:27:\"whoweare-intro-540x272.webp\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:17298;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:27:\"whoweare-intro-460x295.webp\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:17992;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:27:\"whoweare-intro-300x214.webp\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11606;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:27:\"whoweare-intro-177x142.webp\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6666;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1175,1827,'fusion_builder_status','active'),(1176,1827,'_fusion_google_fonts',''),(1177,1827,'_wxr_import_user_slug','atif'),(1178,1827,'fusion_demo_import','hosting_2'),(1179,1827,'_fusion_demo_imported_post','0e0b10e90493fe029f13b8b2507a3706'),(1180,1827,'_dp_original','1256'),(1195,1826,'_wp_trash_meta_status','draft'),(1182,1827,'_edit_last','1'),(1188,1830,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1160;s:6:\"height\";i:700;s:4:\"file\";s:32:\"2023/08/brand-blog1-feature.webp\";s:8:\"filesize\";i:56442;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"brand-blog1-feature-300x181.webp\";s:5:\"width\";i:300;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11588;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"brand-blog1-feature-1024x618.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:618;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:53156;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"brand-blog1-feature-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5584;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"brand-blog1-feature-768x463.webp\";s:5:\"width\";i:768;s:6:\"height\";i:463;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:37850;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"brand-blog1-feature-669x272.webp\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:24954;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"brand-blog1-feature-320x202.webp\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13120;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"brand-blog1-feature-700x441.webp\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:34480;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"brand-blog1-feature-66x66.webp\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:1596;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"brand-blog1-feature-200x121.webp\";s:5:\"width\";i:200;s:6:\"height\";i:121;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6342;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"brand-blog1-feature-400x241.webp\";s:5:\"width\";i:400;s:6:\"height\";i:241;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16962;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:32:\"brand-blog1-feature-600x362.webp\";s:5:\"width\";i:600;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:28240;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:32:\"brand-blog1-feature-800x483.webp\";s:5:\"width\";i:800;s:6:\"height\";i:483;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:39966;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:32:\"brand-blog1-feature-940x400.webp\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:37632;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:32:\"brand-blog1-feature-540x272.webp\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:22348;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:32:\"brand-blog1-feature-460x295.webp\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:21258;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:32:\"brand-blog1-feature-300x214.webp\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12450;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:32:\"brand-blog1-feature-177x142.webp\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6244;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1187,1830,'_wp_attached_file','2023/08/brand-blog1-feature.webp'),(1196,1826,'_wp_trash_meta_time','1692737572'),(1197,1826,'_wp_desired_post_slug',''),(1198,1,'_wp_trash_meta_status','publish'),(1199,1,'_wp_trash_meta_time','1692737572'),(1200,1,'_wp_desired_post_slug','hello-world'),(1201,1,'_wp_trash_meta_comments_status','a:1:{i:1;s:1:\"1\";}'),(1202,1256,'_edit_last','1'),(1203,776,'_edit_last','1'),(1204,774,'_edit_last','1'),(1205,772,'_edit_last','1'),(1206,769,'_edit_last','1'),(1207,766,'_edit_last','1'),(1208,1840,'_thumbnail_id','1841'),(1209,1840,'_fusion','a:5:{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\";}'),(1210,1840,'fusion_builder_status','active'),(1211,1840,'_fusion_google_fonts',''),(1212,1840,'_wxr_import_user_slug','atif'),(1213,1840,'fusion_demo_import','hosting_2'),(1214,1840,'_fusion_demo_imported_post','0e0b10e90493fe029f13b8b2507a3706'),(1216,1840,'_dp_original','1827'),(1230,1840,'_edit_lock','1692765107:1'),(1218,1840,'_edit_last','1'),(1219,1841,'_wp_attached_file','2023/08/email1-blog-feature.webp'),(1220,1841,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1160;s:6:\"height\";i:700;s:4:\"file\";s:32:\"2023/08/email1-blog-feature.webp\";s:8:\"filesize\";i:41508;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"email1-blog-feature-300x181.webp\";s:5:\"width\";i:300;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7844;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"email1-blog-feature-1024x618.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:618;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:37212;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"email1-blog-feature-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4050;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"email1-blog-feature-768x463.webp\";s:5:\"width\";i:768;s:6:\"height\";i:463;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:25780;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:32:\"email1-blog-feature-669x272.webp\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:17984;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:32:\"email1-blog-feature-320x202.webp\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8816;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:32:\"email1-blog-feature-700x441.webp\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:24036;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:30:\"email1-blog-feature-66x66.webp\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:1294;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:32:\"email1-blog-feature-200x121.webp\";s:5:\"width\";i:200;s:6:\"height\";i:121;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4614;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:32:\"email1-blog-feature-400x241.webp\";s:5:\"width\";i:400;s:6:\"height\";i:241;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11408;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:32:\"email1-blog-feature-600x362.webp\";s:5:\"width\";i:600;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:19066;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:32:\"email1-blog-feature-800x483.webp\";s:5:\"width\";i:800;s:6:\"height\";i:483;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:27476;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:32:\"email1-blog-feature-940x400.webp\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:28076;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:32:\"email1-blog-feature-540x272.webp\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:15594;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:32:\"email1-blog-feature-460x295.webp\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14054;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:32:\"email1-blog-feature-300x214.webp\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8884;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:32:\"email1-blog-feature-177x142.webp\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4736;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1223,1840,'avada_post_views_count','3'),(1224,1840,'avada_today_post_views_count','1'),(1225,1840,'avada_post_views_count_today_date','23-08-2023'),(1232,1845,'_menu_item_type','post_type'),(1231,535,'_edit_lock','1692739660:1'),(1233,1845,'_menu_item_menu_item_parent','0'),(1234,1845,'_menu_item_object_id','1127'),(1235,1845,'_menu_item_object','page'),(1236,1845,'_menu_item_target',''),(1237,1845,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1238,1845,'_menu_item_xfn',''),(1239,1845,'_menu_item_url',''),(1241,1845,'_menu_item_fusion_megamenu','a:18:{s:5:\"style\";s:0:\"\";s:6:\"select\";s:1:\"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:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";}'),(1242,1846,'_menu_item_type','post_type'),(1243,1846,'_menu_item_menu_item_parent','0'),(1244,1846,'_menu_item_object_id','1270'),(1245,1846,'_menu_item_object','page'),(1246,1846,'_menu_item_target',''),(1247,1846,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1248,1846,'_menu_item_xfn',''),(1249,1846,'_menu_item_url',''),(1251,1846,'_menu_item_fusion_megamenu','a:18:{s:5:\"style\";s:0:\"\";s:6:\"select\";s:1:\"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:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";}'),(1288,1857,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1160;s:6:\"height\";i:700;s:4:\"file\";s:31:\"2023/08/csr-blog-service-1.webp\";s:8:\"filesize\";i:36006;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"csr-blog-service-1-300x181.webp\";s:5:\"width\";i:300;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9156;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"csr-blog-service-1-1024x618.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:618;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:33548;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"csr-blog-service-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4802;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"csr-blog-service-1-768x463.webp\";s:5:\"width\";i:768;s:6:\"height\";i:463;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:24572;}s:10:\"blog-large\";a:5:{s:4:\"file\";s:31:\"csr-blog-service-1-669x272.webp\";s:5:\"width\";i:669;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:15856;}s:11:\"blog-medium\";a:5:{s:4:\"file\";s:31:\"csr-blog-service-1-320x202.webp\";s:5:\"width\";i:320;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9810;}s:12:\"recent-posts\";a:5:{s:4:\"file\";s:31:\"csr-blog-service-1-700x441.webp\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:22650;}s:22:\"recent-works-thumbnail\";a:5:{s:4:\"file\";s:29:\"csr-blog-service-1-66x66.webp\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:1834;}s:10:\"fusion-200\";a:5:{s:4:\"file\";s:31:\"csr-blog-service-1-200x121.webp\";s:5:\"width\";i:200;s:6:\"height\";i:121;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5732;}s:10:\"fusion-400\";a:5:{s:4:\"file\";s:31:\"csr-blog-service-1-400x241.webp\";s:5:\"width\";i:400;s:6:\"height\";i:241;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12358;}s:10:\"fusion-600\";a:5:{s:4:\"file\";s:31:\"csr-blog-service-1-600x362.webp\";s:5:\"width\";i:600;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:19084;}s:10:\"fusion-800\";a:5:{s:4:\"file\";s:31:\"csr-blog-service-1-800x483.webp\";s:5:\"width\";i:800;s:6:\"height\";i:483;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:25604;}s:14:\"portfolio-full\";a:5:{s:4:\"file\";s:31:\"csr-blog-service-1-940x400.webp\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:24160;}s:13:\"portfolio-one\";a:5:{s:4:\"file\";s:31:\"csr-blog-service-1-540x272.webp\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14982;}s:13:\"portfolio-two\";a:5:{s:4:\"file\";s:31:\"csr-blog-service-1-460x295.webp\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14736;}s:15:\"portfolio-three\";a:5:{s:4:\"file\";s:31:\"csr-blog-service-1-300x214.webp\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9656;}s:14:\"portfolio-five\";a:5:{s:4:\"file\";s:31:\"csr-blog-service-1-177x142.webp\";s:5:\"width\";i:177;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5412;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1291,1852,'_thumbnail_id','1857'),(1298,1827,'avada_post_views_count','1'),(1299,1827,'avada_today_post_views_count','1'),(1300,1827,'avada_post_views_count_today_date','23-08-2023'),(1301,1723,'_edit_lock','1692780573:1'),(1302,1827,'_edit_lock','1692765607:1'),(1307,1846,'_wp_old_date','2023-08-22'),(1329,1903,'_menu_item_menu_item_parent','0'),(1330,1903,'_menu_item_object_id','1723'),(1331,1903,'_menu_item_object','page'),(1332,1903,'_menu_item_target',''),(1333,1903,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1334,1903,'_menu_item_xfn',''),(1335,1903,'_menu_item_url',''),(1337,1903,'_menu_item_fusion_megamenu','a:18:{s:5:\"style\";s:0:\"\";s:6:\"select\";s:1:\"0\";s:4:\"icon\";s:25:\"fa-angle-double-right fas\";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:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";}'),(1348,1905,'_menu_item_type','post_type'),(1349,1905,'_menu_item_menu_item_parent','0'),(1350,1905,'_menu_item_object_id','1068'),(1351,1905,'_menu_item_object','page'),(1352,1905,'_menu_item_target',''),(1353,1905,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1354,1905,'_menu_item_xfn',''),(1355,1905,'_menu_item_url',''),(1357,1905,'_menu_item_fusion_megamenu','a:18:{s:5:\"style\";s:0:\"\";s:6:\"select\";s:1:\"0\";s:4:\"icon\";s:25:\"fa-angle-double-right fas\";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:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";}'),(1358,1906,'_menu_item_type','post_type'),(1359,1906,'_menu_item_menu_item_parent','0'),(1360,1906,'_menu_item_object_id','1647'),(1361,1906,'_menu_item_object','page'),(1362,1906,'_menu_item_target',''),(1363,1906,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1364,1906,'_menu_item_xfn',''),(1365,1906,'_menu_item_url',''),(1366,1906,'_menu_item_orphaned','1692778691'),(1367,1906,'_menu_item_fusion_megamenu','a:18:{s:5:\"style\";s:0:\"\";s:6:\"select\";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:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";}'),(1368,1907,'_menu_item_type','post_type'),(1369,1907,'_menu_item_menu_item_parent','0'),(1370,1907,'_menu_item_object_id','1647'),(1371,1907,'_menu_item_object','page'),(1372,1907,'_menu_item_target',''),(1373,1907,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1374,1907,'_menu_item_xfn',''),(1375,1907,'_menu_item_url',''),(1377,1907,'_menu_item_fusion_megamenu','a:18:{s:5:\"style\";s:0:\"\";s:6:\"select\";s:1:\"0\";s:4:\"icon\";s:25:\"fa-angle-double-right fas\";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:9:\"thumbnail\";s:0:\"\";s:12:\"thumbnail_id\";s:0:\"\";}');
/*!40000 ALTER TABLE `wp_gc2023postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_gc2023posts`
--

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

--
-- Dumping data for table `wp_gc2023posts`
--

LOCK TABLES `wp_gc2023posts` WRITE;
/*!40000 ALTER TABLE `wp_gc2023posts` DISABLE KEYS */;
INSERT INTO `wp_gc2023posts` VALUES (1,1,'2023-08-17 21:48:25','2023-08-17 21:48:25','<!-- 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!','','trash','open','open','','hello-world__trashed','','','2023-08-22 20:52:52','2023-08-22 20:52:52','',0,'https://test-site.goodcausepartners.com/?p=1',0,'post','',1),(2,1,'2023-08-17 21:48:25','2023-08-17 21:48:25','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"https://test-site.goodcausepartners.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','open','','sample-page','','','2023-08-17 21:48:25','2023-08-17 21:48:25','',0,'https://test-site.goodcausepartners.com/?page_id=2',0,'page','',0),(3,1,'2023-08-17 21:48:25','2023-08-17 21:48:25','<!-- 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.goodcausepartners.com.</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','','','2023-08-17 21:48:25','2023-08-17 21:48:25','',0,'https://test-site.goodcausepartners.com/?page_id=3',0,'page','',0),(4,0,'2023-08-17 21:48:28','2023-08-17 21:48:28','<!-- wp:page-list /-->','Navigation','','publish','closed','closed','','navigation','','','2023-08-17 21:48:28','2023-08-17 21:48:28','',0,'https://test-site.goodcausepartners.com/2023/08/17/navigation/',0,'wp_navigation','',0),(5,1,'2023-08-17 21:55:26','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2023-08-17 21:55:26','0000-00-00 00:00:00','',0,'https://test-site.goodcausepartners.com/?p=5',0,'post','',0),(87,1,'2023-04-17 20:21:59','2023-04-17 20:21:59','https://www.vecteezy.com/vector-art/21373701-hosting-icon-for-your-website-mobile-presentation-and-logo-design','Avada Hosting Logo','','inherit','open','closed','','avada-hosting-logo-02','','','2023-04-17 20:21:59','2023-04-17 20:21:59','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/04/avada-hosting-logo-02.png',0,'attachment','image/png',0),(96,1,'2023-04-18 15:40:45','2023-04-18 15:40:45','https://www.vecteezy.com/vector-art/833893-data-center-server-room-concept','Avada Hosting','','inherit','open','closed','','avada-hosting-hero-1','','','2023-04-18 15:40:45','2023-04-18 15:40:45','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/04/avada-hosting-hero-1.png',0,'attachment','image/png',0),(168,1,'2023-04-26 16:50:44','2023-04-26 16:50:44','https://www.vecteezy.com/vector-art/17689052-set-of-data-hosting-flat-icons','WordPress Hosting','','inherit','open','closed','','wordpress-hosting-2','','','2023-04-26 16:50:44','2023-04-26 16:50:44','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/04/wordpress-hosting.png',0,'attachment','image/png',0),(169,1,'2023-04-26 16:50:44','2023-04-26 16:50:44','https://www.vecteezy.com/vector-art/17689052-set-of-data-hosting-flat-icons','Dedicated Server','','inherit','open','closed','','dedicated-server-2','','','2023-04-26 16:50:44','2023-04-26 16:50:44','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/04/dedicated-server.png',0,'attachment','image/png',0),(170,1,'2023-04-26 16:50:45','2023-04-26 16:50:45','https://www.vecteezy.com/vector-art/17689052-set-of-data-hosting-flat-icons','Shared Hosting','','inherit','open','closed','','shared-hosting-2','','','2023-04-26 16:50:45','2023-04-26 16:50:45','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/04/shared-hosting.png',0,'attachment','image/png',0),(171,1,'2023-04-26 16:50:46','2023-04-26 16:50:46','https://www.vecteezy.com/vector-art/17689052-set-of-data-hosting-flat-icons','VPS Hosting','','inherit','open','closed','','vps-hosting','','','2023-04-26 16:50:46','2023-04-26 16:50:46','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/04/vps-hosting.png',0,'attachment','image/png',0),(192,1,'2023-04-26 17:35:00','2023-04-26 17:35:00','https://www.vecteezy.com/vector-art/17689052-set-of-data-hosting-flat-icons','Website Builder','','inherit','open','closed','','website-builder-2','','','2023-04-26 17:35:00','2023-04-26 17:35:00','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/04/website-builder.png',0,'attachment','image/png',0),(193,1,'2023-04-26 17:35:00','2023-04-26 17:35:00','https://www.vecteezy.com/vector-art/17689052-set-of-data-hosting-flat-icons','Managed Servers','','inherit','open','closed','','managed-servers','','','2023-04-26 17:35:00','2023-04-26 17:35:00','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/04/managed-servers.png',0,'attachment','image/png',0),(205,1,'2023-04-26 18:14:36','2023-04-26 18:14:36','https://www.vecteezy.com/vector-art/697732-cloud-computing-technology-concept','Avada Hosting','','inherit','open','closed','','hosting-graphic-5','','','2023-04-26 18:14:36','2023-04-26 18:14:36','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/04/hosting-graphic-5.png',0,'attachment','image/png',0),(283,1,'2023-04-27 14:43:02','2023-04-27 14:43:02','https://www.vecteezy.com/vector-art/2501027-businessmen-social-conversation-network-discuss-social-network-chat-or-dialogue-with-chat-speech-bubbles-flat-style-design-vector-illustration-isolated-on-white-background-sharing-news-messages','Avada Hosting','','inherit','open','closed','','hosting-faqs-1','','','2023-04-27 14:43:02','2023-04-27 14:43:02','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/04/hosting-faqs-1.png',0,'attachment','image/png',0),(303,1,'2023-04-27 17:38:06','2023-04-27 17:38:06','','Drupal','','inherit','open','closed','','drupal-logo-1','','','2023-04-27 17:38:06','2023-04-27 17:38:06','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/04/drupal-logo-1.png',0,'attachment','image/png',0),(304,1,'2023-04-27 17:38:06','2023-04-27 17:38:06','','WordPress','','inherit','open','closed','','wordpress-logo-1','','','2023-04-27 17:38:06','2023-04-27 17:38:06','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/04/wordpress-logo-1.png',0,'attachment','image/png',0),(305,1,'2023-04-27 17:38:07','2023-04-27 17:38:07','','Woo','','inherit','open','closed','','woo-logo-1','','','2023-04-27 17:38:07','2023-04-27 17:38:07','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/04/woo-logo-1.png',0,'attachment','image/png',0),(306,1,'2023-04-27 17:38:08','2023-04-27 17:38:08','','Magento','','inherit','open','closed','','magento-logo-1','','','2023-04-27 17:38:08','2023-04-27 17:38:08','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/04/magento-logo-1.png',0,'attachment','image/png',0),(307,1,'2023-04-27 17:38:09','2023-04-27 17:38:09','','Joomla','','inherit','open','closed','','joomla-logo-1','','','2023-04-27 17:38:09','2023-04-27 17:38:09','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/04/joomla-logo-1.png',0,'attachment','image/png',0),(370,1,'2023-04-28 16:00:12','2023-04-28 16:00:12','https://www.vecteezy.com/vector-art/21373701-hosting-icon-for-your-website-mobile-presentation-and-logo-design','Avada Hosting Logo','','inherit','open','closed','','avada-hosting-logo-footer','','','2023-04-28 16:00:12','2023-04-28 16:00:12','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/04/avada-hosting-logo-footer.png',0,'attachment','image/png',0),(424,1,'2023-04-28 18:42:00','2023-04-28 18:42:00','','Credit Card Logos','','inherit','open','closed','','cards-logos-1','','','2023-04-28 18:42:00','2023-04-28 18:42:00','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/04/cards-logos-1.png',0,'attachment','image/png',0),(458,1,'2023-05-01 15:39:25','2023-05-01 15:39:25','https://www.vecteezy.com/vector-art/833893-data-center-server-room-concept','Avada Hosting','','inherit','open','closed','','avada-hosting-hero-mobile','','','2023-05-01 15:39:25','2023-05-01 15:39:25','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/05/avada-hosting-hero-mobile.png',0,'attachment','image/png',0),(534,1,'2023-05-05 17:17:18','2023-05-05 17:17:18','https://www.vecteezy.com/vector-art/21373701-hosting-icon-for-your-website-mobile-presentation-and-logo-design','Avada Hosting Logo','','inherit','open','closed','','avada-hosting-logo-03','','','2023-05-05 17:17:18','2023-05-05 17:17:18','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/05/avada-hosting-logo-03.png',0,'attachment','image/png',0),(579,1,'2023-05-05 20:46:56','2023-05-05 20:46:56','https://www.vecteezy.com/vector-art/8158224-editable-flat-design-illustration-of-server-hosting','Avada Hosting - User With Laptop','','inherit','open','closed','','user-with-laptop-1','','','2023-05-05 20:46:56','2023-05-05 20:46:56','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/05/user-with-laptop-1.png',0,'attachment','image/png',0),(620,1,'2023-05-08 05:32:35','2023-05-08 05:32:35','https://www.vecteezy.com/vector-art/697732-cloud-computing-technology-concept','Avada Hosting Banner','','inherit','open','closed','','hosting-banner-bg-2','','','2023-05-08 05:32:35','2023-05-08 05:32:35','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/05/hosting-banner-bg-2.png',0,'attachment','image/png',0),(683,1,'2023-05-08 18:27:59','2023-05-08 18:27:59','https://www.vecteezy.com/vector-art/7813958-data-center-hosting-cloud-storage-server-storage-big-data-flat-vector','Efficient Avada Hosting','','inherit','open','closed','','efficient-avada-hosting','','','2023-05-08 18:27:59','2023-05-08 18:27:59','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/05/efficient-avada-hosting.png',0,'attachment','image/png',0),(706,1,'2023-05-08 20:17:16','2023-05-08 20:17:16','https://www.vecteezy.com/vector-art/12890051-time-management-concept-flat-vector-template-style-suitable-for-web-landing-page-background','Powerful Avada Hosting','','inherit','open','closed','','powerful-avada-hosting','','','2023-05-08 20:17:16','2023-05-08 20:17:16','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/05/powerful-avada-hosting.png',0,'attachment','image/png',0),(738,1,'2023-05-09 17:22:11','2023-05-09 17:22:11','https://www.pexels.com/photo/man-sitting-in-front-of-keyboard-2422278/','Client','','inherit','open','closed','','user-1','','','2023-05-09 17:22:11','2023-05-09 17:22:11','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/05/user-1.jpg',0,'attachment','image/jpeg',0),(739,1,'2023-05-09 17:22:11','2023-05-09 17:22:11','https://www.pexels.com/photo/man-wearing-white-dress-shirt-and-black-blazer-2182970/','Client','','inherit','open','closed','','user-5','','','2023-05-09 17:22:11','2023-05-09 17:22:11','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/05/user-5.jpg',0,'attachment','image/jpeg',0),(740,1,'2023-05-09 17:22:12','2023-05-09 17:22:12','https://www.pexels.com/photo/woman-wearing-blue-dress-shirt-1181437/','Client','','inherit','open','closed','','user-6','','','2023-05-09 17:22:12','2023-05-09 17:22:12','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/05/user-6.jpg',0,'attachment','image/jpeg',0),(741,1,'2023-05-09 17:22:13','2023-05-09 17:22:13','https://www.pexels.com/photo/full-length-portrait-of-man-standing-in-corridor-325685/','Client','','inherit','open','closed','','user-4','','','2023-05-09 17:22:13','2023-05-09 17:22:13','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/05/user-4.jpg',0,'attachment','image/jpeg',0),(742,1,'2023-05-09 17:22:14','2023-05-09 17:22:14','https://www.pexels.com/photo/man-in-suite-with-arms-crossed-10402664/','Client','','inherit','open','closed','','user-3','','','2023-05-09 17:22:14','2023-05-09 17:22:14','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/05/user-3.jpg',0,'attachment','image/jpeg',0),(743,1,'2023-05-09 17:22:15','2023-05-09 17:22:15','https://www.pexels.com/photo/a-woman-in-white-blazer-smiling-with-her-arms-crossed-8528852/','Client','','inherit','open','closed','','user-2','','','2023-05-09 17:22:15','2023-05-09 17:22:15','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/05/user-2.jpg',0,'attachment','image/jpeg',0),(750,1,'2023-05-09 19:07:46','2023-05-09 19:07:46','https://www.vecteezy.com/vector-art/142943-world-map-vector-with-pointers','World Locations Map','','inherit','open','closed','','world-map','','','2023-05-09 19:07:46','2023-05-09 19:07:46','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/05/world-map.png',0,'attachment','image/png',0),(782,1,'2023-05-09 21:03:45','2023-05-09 21:03:45','https://unsplash.com/photos/qwtCeJ5cLYs','Blog Post','','inherit','open','closed','','blog-image-3','','','2023-08-21 17:34:13','2023-08-21 17:34:13','',776,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/05/blog-image-3.jpg',0,'attachment','image/jpeg',0),(783,1,'2023-05-09 21:03:46','2023-05-09 21:03:46','https://unsplash.com/photos/UrtxBX5i5SE','Blog Post','','inherit','open','closed','','blog-image-2','','','2023-08-21 17:34:13','2023-08-21 17:34:13','',776,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/05/blog-image-2.jpg',0,'attachment','image/jpeg',0),(862,1,'2023-05-10 19:34:49','2023-05-10 19:34:49','https://unsplash.com/photos/Nh4Sxasye24','Blog Post','','inherit','open','closed','','blog-image-6','','','2023-08-21 17:34:13','2023-08-21 17:34:13','',766,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/05/blog-image-6.jpg',0,'attachment','image/jpeg',0),(899,1,'2023-05-11 16:13:44','2023-05-11 16:13:44','','Home-01-preview','','inherit','open','closed','','home-01-preview','','','2023-05-11 16:13:44','2023-05-11 16:13:44','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/05/home-01-preview.jpg',0,'attachment','image/jpeg',0),(969,1,'2023-05-11 20:55:16','2023-05-11 20:55:16','https://www.vecteezy.com/vector-art/21343509-website-hosting-icon-pack-for-your-website-design-logo-app-and-user-interface-website-hosting-icon-basic-line-gradient-design-vector-graphics-illustration-and-editable-stroke\n\nhttps://www.vecteezy.com/vector-art/10600210-web-hosting-icon-pack-for-your-website-mobile-presentation-and-logo-design-web-hosting-icon-glyph-design-vector-graphics-illustration-and-editable-stroke','hosting-template-v4.4','','inherit','open','closed','','hosting-template-v4-4','','','2023-05-11 20:55:16','2023-05-11 20:55:16','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/05/hosting-template-v4.4.zip',0,'attachment','application/zip',0),(1030,1,'2023-05-12 17:38:37','2023-05-12 17:38:37','https://www.pexels.com/photo/woman-working-at-home-using-laptop-4050291/','Avada Hosting','','inherit','open','closed','','avada-hosting-image-1','','','2023-05-12 17:38:37','2023-05-12 17:38:37','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/05/avada-hosting-image-1.jpg',0,'attachment','image/jpeg',0),(1249,1,'2023-05-17 16:14:38','2023-05-17 16:14:38','https://unsplash.com/photos/LUqSTRx3_Ig','Blog Post','','inherit','open','closed','','blog-image-7','','','2023-05-17 16:14:38','2023-05-17 16:14:38','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/05/blog-image-7.jpg',0,'attachment','image/jpeg',0),(1254,1,'2023-05-17 16:47:02','2023-05-17 16:47:02','https://www.pexels.com/photo/man-using-macbook-5882683/','Blog Post','','inherit','open','closed','','blog-image-10','','','2023-08-21 17:34:13','2023-08-21 17:34:13','',776,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/05/blog-image-10.jpg',0,'attachment','image/jpeg',0),(1257,1,'2023-05-17 17:17:02','2023-05-17 17:17:02','https://www.pexels.com/photo/people-in-a-business-meeting-3862127/','Blog Post','','inherit','open','closed','','blog-image-11','','','2023-08-21 17:34:13','2023-08-21 17:34:13','',1256,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/05/blog-image-11.jpg',0,'attachment','image/jpeg',0),(1370,1,'2023-05-19 20:56:27','2023-05-19 20:56:27','https://www.vecteezy.com/vector-art/6610862-flat-illustration-design-of-cloud-hosting-editable-vector','Hosting Plans','','inherit','open','closed','','hosting-plans-1','','','2023-05-19 20:56:27','2023-05-19 20:56:27','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/05/hosting-plans-1.png',0,'attachment','image/png',0),(1500,1,'2023-05-23 18:09:53','2023-05-23 18:09:53','https://www.vecteezy.com/vector-art/8441846-404-error-page-not-found-flat-design-simple-minimalist-flat-vector-illustration-design-concept-of-error-404-system-maintenance-and-web-page-under-construction','404 Error','','inherit','open','closed','','hosting-404-error-1','','','2023-05-23 18:09:53','2023-05-23 18:09:53','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/05/hosting-404-error-1.png',0,'attachment','image/png',0),(1555,1,'2023-06-19 16:51:11','2023-06-19 16:51:11','Shutterstock Licensed\nhttps://github.com/Theme-Fusion/Design/issues/601','Avada Hosting Image','','inherit','open','closed','','hosting-hero-image-2','','','2023-06-19 16:51:11','2023-06-19 16:51:11','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/06/hosting-hero-image-2.jpg',0,'attachment','image/jpeg',0),(1561,1,'2023-06-19 17:03:02','2023-06-19 17:03:02','Shutterstock Licensed\nhttps://github.com/Theme-Fusion/Design/issues/601','Avada Hosting Image','','inherit','open','closed','','hosting-hero-image-mobile-3','','','2023-06-19 17:03:02','2023-06-19 17:03:02','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/06/hosting-hero-image-mobile-3.jpg',0,'attachment','image/jpeg',0),(1577,1,'2023-06-19 18:25:01','2023-06-19 18:25:01','Shutterstock Licensed\nhttps://github.com/Theme-Fusion/Design/issues/601','Register Your Domain','','inherit','open','closed','','register-domain-2','','','2023-06-19 18:25:01','2023-06-19 18:25:01','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/06/register-domain-2.jpg',0,'attachment','image/jpeg',0),(1581,1,'2023-06-19 18:45:27','2023-06-19 18:45:27','','home-02-preview','','inherit','open','closed','','home-02-preview-1','','','2023-06-19 18:45:27','2023-06-19 18:45:27','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/06/home-02-preview-1.jpg',0,'attachment','image/jpeg',0),(1631,1,'2023-08-17 20:49:15','2023-08-17 20:49:15','','Favicon Avada Hosting','','inherit','open','closed','','favicon-2','','','2023-08-17 20:49:15','2023-08-17 20:49:15','',0,'https://avada.website/hosting-2/wp-content/uploads/sites/178/2023/08/favicon-2.png',0,'attachment','image/png',0),(117,1,'2023-04-18 19:48:00','2023-04-18 19:48:00','[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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_right=\"0\" padding_left=\"0\" admin_label=\"Search Domain\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" border_color=\"var(--awb-color3)\" last=\"no\" border_position=\"all\" padding_right=\"10px\" padding_left=\"10px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color_hover=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 12%),var(--awb-color3-a))\" border_radius_top_left=\"6px\" border_radius_top_right=\"6px\" border_radius_bottom_right=\"6px\" border_radius_bottom_left=\"6px\" background_color=\"var(--awb-color1)\" padding_bottom_small=\"10px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"70.00\" type=\"70.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_medium=\"65.00\" min_height=\"\" link=\"\"][fusion_form_text required=\"yes\" disabled=\"no\" minlength=\"0\" maxlength=\"0\" name=\"domain_name\" placeholder=\"Type your domain name ...\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"30.00\" type=\"30.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_medium=\"35.00\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]Search now[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Domain Search','','publish','closed','closed','','domain-search','','','2023-04-18 19:48:00','2023-04-18 19:48:00','',0,'https://test-site.goodcausepartners.com/fusion_form/domain-search/',0,'fusion_form','',0),(763,1,'2023-05-09 20:25:19','2023-05-09 20:25:19','[fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" background_blend_mode=\"overlay\" first=\"true\" last=\"true\" hover_type=\"none\" border_position=\"all\" element_content=\"\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" min_height=\"\" link=\"\"][fusion_post_card_image layout=\"static\" custom_aspect_ratio=\"100\" show_title=\"no\" show_cats=\"no\" show_price=\"no\" show_rating=\"no\" show_sale=\"no\" show_outofstock=\"no\" show_buttons=\"no\" image_link=\"no\" image_link_target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" /][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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"30px\" padding_right=\"40px\" padding_left=\"10px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\" margin_top=\"10px\" margin_bottom_small=\"20px\" margin_top_small=\"12px\"]Your Content Goes Here[/fusion_title][fusion_tb_meta meta=\"published_date\" layout=\"floated\" display_element_labels=\"yes\" separator=\"\" read_time=\"200\" reading_time_decimal=\"yes\" alignment_medium=\"flex-start\" alignment_small=\"flex-start\" alignment=\"flex-start\" stacked_vertical_align=\"flex-start\" stacked_horizontal_align=\"flex-start\" height=\"36\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" /][fusion_tb_meta meta=\"categories\" layout=\"floated\" read_time=\"200\" reading_time_decimal=\"yes\" alignment_medium=\"flex-start\" alignment_small=\"flex-start\" alignment=\"flex-start\" stacked_vertical_align=\"flex-start\" stacked_horizontal_align=\"flex-start\" height=\"36\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" font_size=\"15px\" border_top=\"0\" border_bottom=\"0\" link_color=\"var(--awb-color4)\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]','News Style 1','','publish','closed','closed','','news-style-1','','','2023-08-23 00:10:40','2023-08-23 00:10:40','',0,'https://test-site.goodcausepartners.com/fusion_element/news-style-1/',0,'fusion_element','',0),(1668,1,'2023-08-21 21:40:28','2023-08-21 21:40:28','[fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" background_blend_mode=\"overlay\" first=\"true\" last=\"true\" hover_type=\"none\" border_position=\"all\" element_content=\"\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" min_height=\"\" link=\"\"][fusion_post_card_image layout=\"static\" custom_aspect_ratio=\"100\" show_title=\"no\" show_cats=\"no\" show_price=\"no\" show_rating=\"no\" show_sale=\"no\" show_outofstock=\"no\" show_buttons=\"no\" image_link=\"no\" image_link_target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" /][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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"30px\" padding_right=\"40px\" padding_left=\"10px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\" margin_top=\"10px\" margin_bottom_small=\"20px\" margin_top_small=\"12px\"]Your Content Goes Here[/fusion_title][fusion_tb_meta meta=\"categories\" layout=\"floated\" read_time=\"200\" reading_time_decimal=\"yes\" alignment_medium=\"flex-start\" alignment_small=\"flex-start\" alignment=\"flex-start\" stacked_vertical_align=\"flex-start\" stacked_horizontal_align=\"flex-start\" height=\"36\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" font_size=\"15px\" border_top=\"0\" border_bottom=\"0\" link_color=\"var(--awb-color4)\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]','News Style 1','','inherit','closed','closed','','763-revision-v1','','','2023-08-21 21:40:28','2023-08-21 21:40:28','',763,'https://test-site.goodcausepartners.com/?p=1668',0,'revision','',0),(814,1,'2023-05-10 13:45:39','2023-05-10 13:45:39','[fusion_builder_column type=\"1_1\" type=\"1_1\" element_content=\"\" last=\"no\" hover_type=\"none\" border_position=\"all\" padding_left=\"10px\" padding_right=\"40px\" border_sizes_top=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" padding_top_small=\"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=\"on\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\" margin_top=\"50px\"]Your Content Goes Here[/fusion_title][fusion_tb_meta meta=\"author,categories\" layout=\"floated\" read_time=\"200\" reading_time_decimal=\"yes\" alignment_medium=\"flex-start\" alignment_small=\"flex-start\" alignment=\"flex-start\" stacked_vertical_align=\"flex-start\" stacked_horizontal_align=\"flex-start\" height=\"42\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" border_top=\"0\" border_bottom=\"0\" /][/fusion_builder_column]','News Style 2','','publish','closed','closed','','news-style-2','','','2023-05-10 13:45:39','2023-05-10 13:45:39','',0,'https://test-site.goodcausepartners.com/fusion_element/news-style-2/',0,'fusion_element','',0),(874,1,'2023-05-11 14:17:09','2023-05-11 14:17: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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Home Pages MM\" 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\" padding_top=\"10px\" padding_right=\"10px\" padding_bottom=\"10px\" padding_left=\"10px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"383\" aspect_ratio_position=\"5% 0%\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"scroll\" magnify_duration=\"120\" scroll_height=\"420\" scroll_speed=\"2.0\" caption_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=\"899|full\" borderradius=\"5px\" link=\"https://test-site.goodcausepartners.com/\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/home-01-preview.jpg[/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"8px\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_top=\"10px\" padding_bottom=\"5px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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\" content_alignment=\"center\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"15px\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"uppercase\"]\r\n<p>Home Page 1</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" background_color=\"var(--awb-color1)\" padding_top=\"10px\" padding_right=\"10px\" padding_bottom=\"10px\" padding_left=\"10px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"383\" aspect_ratio_position=\"5% 0%\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"scroll\" magnify_duration=\"120\" scroll_height=\"420\" scroll_speed=\"2.0\" caption_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=\"1581|full\" borderradius=\"5px\" link=\"https://test-site.goodcausepartners.com/hosting-home-alternate/\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/06/home-02-preview-1.jpg[/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"10px\" padding_top=\"8px\" background_color=\"var(--awb-color2)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" padding_bottom=\"5px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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\" content_alignment=\"center\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"15px\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"uppercase\"]\r\n<p>Home Page 2</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Home Pages','','publish','closed','closed','','home-pages','','','2023-05-11 14:17:09','2023-05-11 14:17:09','',0,'https://test-site.goodcausepartners.com/fusion_element/home-pages/',0,'fusion_element','',0),(988,1,'2023-05-12 12:54:17','2023-05-12 12:54: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\" 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\" margin_top=\"100px\" admin_label=\"Hosting Reviews\" margin_bottom=\"40px\" ][fusion_builder_row][fusion_builder_column type=\"1_6\" type=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]\r\n<p>website hosting trusted by thousands and&nbsp;millions of businesses</p>\r\n[/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\" content_alignment=\"center\"]Hosting Made Easy: Simplify Your Online Presence with Avada Hosting[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" type=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"50px\" padding_bottom=\"50px\" padding_right=\"40px\" padding_left=\"45px\" last=\"no\" border_position=\"all\" box_shadow_vertical=\"0\" 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) - 95%))\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"60px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-star\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"16\" margin_right=\"2px\" iconcolor_hover=\"var(--awb-color4)\" /][fusion_fontawesome icon=\"fusion-prefix-hosting-template-star\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"16\" iconcolor_hover=\"var(--awb-color4)\" margin_right=\"2px\" /][fusion_fontawesome icon=\"fusion-prefix-hosting-template-star\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"16\" iconcolor_hover=\"var(--awb-color4)\" margin_right=\"2px\" /][fusion_fontawesome icon=\"fusion-prefix-hosting-template-star\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"16\" iconcolor_hover=\"var(--awb-color4)\" margin_right=\"2px\" /][fusion_fontawesome icon=\"fusion-prefix-hosting-template-star\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"16\" iconcolor_hover=\"var(--awb-color4)\" /][/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"20px\"]\r\n<p>i’m impressed with hosting!</p>\r\n[/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>Quis sequi est labore aspernatur eos enim omnis et officiis officia. Aut iste aliquam galisum except aute sed odio sunt.</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 4%),var(--awb-color2-a))\" top_margin=\"20px\" bottom_margin=\"40px\" /][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_small=\"1_1\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"738|full\" borderradius=\"100px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/user-1.jpg[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner type=\"2_3\" type=\"2_3\" align_self=\"flex-end\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_left=\"15px\" type_small=\"1_1\" padding_top_small=\"40px\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"15px\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" margin_bottom=\"5px\"]\r\n<p>Lewis Nathan</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 50%))\"]Manager[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"50px\" padding_bottom=\"50px\" padding_right=\"40px\" padding_left=\"45px\" last=\"no\" border_position=\"all\" box_shadow_vertical=\"0\" 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) - 95%))\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"60px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-star\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"16\" margin_right=\"2px\" iconcolor_hover=\"var(--awb-color4)\" /][fusion_fontawesome icon=\"fusion-prefix-hosting-template-star\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"16\" iconcolor_hover=\"var(--awb-color4)\" margin_right=\"2px\" /][fusion_fontawesome icon=\"fusion-prefix-hosting-template-star\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"16\" iconcolor_hover=\"var(--awb-color4)\" margin_right=\"2px\" /][fusion_fontawesome icon=\"fusion-prefix-hosting-template-star\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"16\" iconcolor_hover=\"var(--awb-color4)\" margin_right=\"2px\" /][fusion_fontawesome icon=\"fusion-prefix-hosting-template-star\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"16\" iconcolor_hover=\"var(--awb-color4)\" /][/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"20px\"]\r\n<p>great service!</p>\r\n[/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>Quis sequi est labore aspernatur eos enim omnis et officiis officia. Aut iste aliquam galisum except aute sed odio sunt.</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 4%),var(--awb-color2-a))\" top_margin=\"20px\" bottom_margin=\"40px\" /][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"739|full\" borderradius=\"100px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/user-5.jpg[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner type=\"2_3\" type=\"2_3\" align_self=\"flex-end\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_left=\"15px\" padding_top_small=\"40px\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"15px\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" margin_bottom=\"5px\"]\r\n<p>Shaun Tim</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 50%))\"]\r\n<p>Blogger</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"50px\" padding_bottom=\"50px\" padding_right=\"40px\" padding_left=\"45px\" last=\"no\" border_position=\"all\" box_shadow_vertical=\"0\" 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) - 95%))\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"60px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-star\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"16\" margin_right=\"2px\" iconcolor_hover=\"var(--awb-color4)\" /][fusion_fontawesome icon=\"fusion-prefix-hosting-template-star\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"16\" iconcolor_hover=\"var(--awb-color4)\" margin_right=\"2px\" /][fusion_fontawesome icon=\"fusion-prefix-hosting-template-star\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"16\" iconcolor_hover=\"var(--awb-color4)\" margin_right=\"2px\" /][fusion_fontawesome icon=\"fusion-prefix-hosting-template-star\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"16\" iconcolor_hover=\"var(--awb-color4)\" margin_right=\"2px\" /][fusion_fontawesome icon=\"fusion-prefix-hosting-template-star\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"16\" iconcolor_hover=\"var(--awb-color4)\" /][/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"20px\"]fast &amp; reliable hosting![/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>Quis sequi est labore aspernatur eos enim omnis et officiis officia. Aut iste aliquam galisum except aute sed odio sunt.</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 4%),var(--awb-color2-a))\" top_margin=\"20px\" bottom_margin=\"40px\" /][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"740|full\" borderradius=\"100px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/user-6.jpg[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner type=\"2_3\" type=\"2_3\" align_self=\"flex-end\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_left=\"15px\" padding_top_small=\"40px\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"15px\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" margin_bottom=\"5px\"]\r\n<p>Julia Sammy</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 50%))\"]Business[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"50px\" padding_bottom=\"50px\" padding_right=\"40px\" padding_left=\"45px\" last=\"no\" border_position=\"all\" box_shadow_vertical=\"0\" 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) - 95%))\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"60px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-star\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"16\" margin_right=\"2px\" iconcolor_hover=\"var(--awb-color4)\" /][fusion_fontawesome icon=\"fusion-prefix-hosting-template-star\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"16\" iconcolor_hover=\"var(--awb-color4)\" margin_right=\"2px\" /][fusion_fontawesome icon=\"fusion-prefix-hosting-template-star\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"16\" iconcolor_hover=\"var(--awb-color4)\" margin_right=\"2px\" /][fusion_fontawesome icon=\"fusion-prefix-hosting-template-star\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"16\" iconcolor_hover=\"var(--awb-color4)\" margin_right=\"2px\" /][fusion_fontawesome icon=\"fusion-prefix-hosting-template-star\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"16\" iconcolor_hover=\"var(--awb-color4)\" /][/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"20px\"]Amazing &amp; efficient![/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>Quis sequi est labore aspernatur eos enim omnis et officiis officia. Aut iste aliquam galisum except aute sed odio sunt.</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 4%),var(--awb-color2-a))\" top_margin=\"20px\" bottom_margin=\"40px\" /][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"742|full\" borderradius=\"100px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/user-3.jpg[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner type=\"2_3\" type=\"2_3\" align_self=\"flex-end\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_left=\"15px\" padding_top_small=\"40px\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"15px\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" margin_bottom=\"5px\"]Andrew Samuel[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 50%))\"]CEO[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"50px\" padding_bottom=\"50px\" padding_right=\"40px\" padding_left=\"45px\" last=\"no\" border_position=\"all\" box_shadow_vertical=\"0\" 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) - 95%))\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"60px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-star\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"16\" margin_right=\"2px\" iconcolor_hover=\"var(--awb-color4)\" /][fusion_fontawesome icon=\"fusion-prefix-hosting-template-star\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"16\" iconcolor_hover=\"var(--awb-color4)\" margin_right=\"2px\" /][fusion_fontawesome icon=\"fusion-prefix-hosting-template-star\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"16\" iconcolor_hover=\"var(--awb-color4)\" margin_right=\"2px\" /][fusion_fontawesome icon=\"fusion-prefix-hosting-template-star\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"16\" iconcolor_hover=\"var(--awb-color4)\" margin_right=\"2px\" /][fusion_fontawesome icon=\"fusion-prefix-hosting-template-star\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"16\" iconcolor_hover=\"var(--awb-color4)\" /][/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"20px\"]really appreciated![/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>Quis sequi est labore aspernatur eos enim omnis et officiis officia. Aut iste aliquam galisum except aute sed odio sunt.</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 4%),var(--awb-color2-a))\" top_margin=\"20px\" bottom_margin=\"40px\" /][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"741|full\" borderradius=\"100px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/user-4.jpg[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner type=\"2_3\" type=\"2_3\" align_self=\"flex-end\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_left=\"15px\" padding_top_small=\"40px\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"15px\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" margin_bottom=\"5px\"]Arthur Santiago[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 50%))\"]\r\n<p>Marketer</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"50px\" padding_bottom=\"50px\" padding_right=\"40px\" padding_left=\"45px\" last=\"no\" border_position=\"all\" box_shadow_vertical=\"0\" 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) - 95%))\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"60px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-star\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"16\" margin_right=\"2px\" iconcolor_hover=\"var(--awb-color4)\" /][fusion_fontawesome icon=\"fusion-prefix-hosting-template-star\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"16\" iconcolor_hover=\"var(--awb-color4)\" margin_right=\"2px\" /][fusion_fontawesome icon=\"fusion-prefix-hosting-template-star\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"16\" iconcolor_hover=\"var(--awb-color4)\" margin_right=\"2px\" /][fusion_fontawesome icon=\"fusion-prefix-hosting-template-star\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"16\" iconcolor_hover=\"var(--awb-color4)\" margin_right=\"2px\" /][fusion_fontawesome icon=\"fusion-prefix-hosting-template-star\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"16\" iconcolor_hover=\"var(--awb-color4)\" /][/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"20px\"]scalable hosting solutions![/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>Quis sequi est labore aspernatur eos enim omnis et officiis officia. Aut iste aliquam galisum except aute sed odio sunt.</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 4%),var(--awb-color2-a))\" top_margin=\"20px\" bottom_margin=\"40px\" /][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"743|full\" borderradius=\"100px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/user-2.jpg[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner type=\"2_3\" type=\"2_3\" align_self=\"flex-end\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_left=\"15px\" padding_top_small=\"40px\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"15px\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" margin_bottom=\"5px\"]Maria Nelson[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 50%))\"]Designer[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Customer Reviews','','publish','closed','closed','','customer-reviews','','','2023-05-12 12:54:17','2023-05-12 12:54:17','',0,'https://test-site.goodcausepartners.com/fusion_element/customer-reviews/',0,'fusion_element','',0),(996,1,'2023-05-12 13:06:54','2023-05-12 13:06:54','[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=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"60px\" admin_label=\"Contact - Desktop\" padding_bottom=\"40px\" border_sizes_top=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" ][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"30px\" margin_bottom=\"0\" margin_top=\"0\" text_transform=\"capitalize\"]<strong>need help? get in touch</strong>[/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\" margin_bottom=\"0\"]\r\n<p>Sint duire taque aute galisum repudas</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" type=\"1_4\" layout=\"1_4\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-email\" spin=\"no\" linktarget=\"_self\" bg_size=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"22\" circle=\"yes\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_4\" layout=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left=\"5px\" padding_top=\"5px\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color4)\"]Support Email[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"24px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\"]<strong><a href=\"#\">Send @ Email</a></strong>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" type=\"1_4\" layout=\"1_4\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-newspaper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"26\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_4\" layout=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left=\"5px\" padding_top=\"5px\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color4)\"]talk to our agent[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"24px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\"]\r\n<p><strong><a href=\"#\">M</a>ailing List</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Footer CTA - Desktop','','publish','closed','closed','','footer-cta','','','2023-08-22 00:06:40','2023-08-22 00:06:40','',0,'https://test-site.goodcausepartners.com/fusion_element/footer-cta/',0,'fusion_element','',0),(1017,1,'2023-05-12 16:31:32','2023-05-12 16:31: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\" 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\" margin_top=\"30px\" admin_label=\"CTAS\" margin_bottom=\"60px\" ][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" 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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color_hover=\"var(--awb-color5)\" border_color=\"var(--awb-color1)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/who-we-are/\" first=\"true\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1802|full\" margin_bottom_small=\"40\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/who-we-are.webp[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\" content_align_small=\"center\"]\r\n<p>who we are</p>\r\n[/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\" content_alignment_small=\"center\"]\r\n<p>Get to know our  team at Good Cause Marketing Partners.</p>\r\n[/fusion_text][/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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/what-we-do/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1803|full\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/what-we-do.webp[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\" content_align_small=\"center\"]what we do[/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\" content_alignment_small=\"center\"]Uncover what you can expect from Good Cause Marketing Partners.[/fusion_text][/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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/contact/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1805|full\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/contact.webp[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\" content_align_small=\"center\"]Want to Talk?[/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\" content_alignment_small=\"center\"]\r\n<p>Good Cause Marketing Partners is  here to listen and discuss.</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Hosting Plans - 2 Column','','publish','closed','closed','','hosting-plans-2-column','','','2023-08-23 16:18:52','2023-08-23 16:18:52','',0,'https://test-site.goodcausepartners.com/fusion_element/hosting-plans-2-column/',0,'fusion_element','',0),(1036,1,'2023-05-12 17:56:55','2023-05-12 17:56: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=\"triangle\" pattern_bg_style=\"default\" pattern_bg_opacity=\"50\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Pricing Plans\" padding_top=\"100px\" background_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) + 2%),var(--awb-color2-a))\" pattern_bg_size=\"50%\" pattern_bg_color=\"var(--awb-color1)\" ][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" margin_bottom=\"80px\" margin_bottom_small=\"20px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]\r\n<p>your website deserves the<br />\r\nbest hosting &amp; pricing</p>\r\n[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" padding_left=\"40px\" last=\"true\" border_position=\"all\" padding_left_small=\"0\" padding_bottom_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>Dignismos sinte iure taque dolorem tempore magnis cuibusdam sed knam galisum repudiane</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/contact\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\" button_gradient_top_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" button_gradient_bottom_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" accent_color=\"var(--awb-color4)\" 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_gradient_bottom_color_hover=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" accent_hover_color=\"var(--awb-color5)\" padding_left=\"0\" border_color=\"var(--awb-color4)\" border_hover_color=\"var(--awb-color5)\"]choose a package &amp; get started[/fusion_button][/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=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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=\"40\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"40\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" box_shadow_vertical=\"0\" 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) - 95%))\" border_color_hover=\"var(--awb-color5)\" border_color=\"var(--awb-color1)\" element_content=\"\" margin_bottom=\"-120px\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6IiIsInRyYW5zaXRpb25fc3BlZWQiOiIxLjAiLCJmYWRlX3R5cGUiOiIiLCJzY2FsZV90eXBlIjoiIiwiaW5pdGlhbF9zY2FsZSI6IiIsIm1heF9zY2FsZSI6IiIsIm1pbl9zY2FsZSI6IiIsImluaXRpYWxfcm90YXRlIjoiIiwiZW5kX3JvdGF0ZSI6IiIsImluaXRpYWxfYmx1ciI6IiIsImVuZF9ibHVyIjoiIiwic3RhcnRfZWxlbWVudCI6IiIsInN0YXJ0X3ZpZXdwb3J0IjoiIiwiZW5kX2VsZW1lbnQiOiIiLCJlbmRfdmlld3BvcnQiOiJjZW50ZXIiLCJtb3VzZV9lZmZlY3QiOiIiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoiIiwibW91c2VfZWZmZWN0X3NwZWVkIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uX3NwZWVkIjoiIn1d\" margin_bottom_small=\"60px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"true\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color5)\" button_gradient_bottom_color_hover=\"var(--awb-color5)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 280),var(--awb-color5-s),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 280),var(--awb-color5-s),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\"]15% off[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]\r\n<p>Shared Hosting</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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$29 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\r\n<p>Hosting made simple – for beginners and experts alike.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]1 Website[/fusion_li_item][fusion_li_item]\r\n<p>Free SSL Certificate</p>\r\n[/fusion_li_item][fusion_li_item]2 GB SSD Storage[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color4)\"]\r\n<p>cPanel Included</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\r\n<p>Daily Backup</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\r\n<p>Lifetime Support</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/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=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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=\"40\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"40\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" box_shadow_vertical=\"0\" 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) - 95%))\" border_color_hover=\"var(--awb-color5)\" border_color=\"var(--awb-color1)\" element_content=\"\" margin_bottom=\"-120px\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6IiIsInRyYW5zaXRpb25fc3BlZWQiOiIxLjAiLCJmYWRlX3R5cGUiOiIiLCJzY2FsZV90eXBlIjoiIiwiaW5pdGlhbF9zY2FsZSI6IiIsIm1heF9zY2FsZSI6IiIsIm1pbl9zY2FsZSI6IiIsImluaXRpYWxfcm90YXRlIjoiIiwiZW5kX3JvdGF0ZSI6IiIsImluaXRpYWxfYmx1ciI6IiIsImVuZF9ibHVyIjoiIiwic3RhcnRfZWxlbWVudCI6IiIsInN0YXJ0X3ZpZXdwb3J0IjoiIiwiZW5kX2VsZW1lbnQiOiIiLCJlbmRfdmlld3BvcnQiOiJjZW50ZXIiLCJtb3VzZV9lZmZlY3QiOiIiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoiIiwibW91c2VfZWZmZWN0X3NwZWVkIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uX3NwZWVkIjoiIn1d\" margin_bottom_small=\"60px\" type_medium=\"1_3\" first=\"false\" min_height=\"\" link=\"\"][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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"true\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color4)\" button_gradient_bottom_color_hover=\"var(--awb-color4)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 135),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 135),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\"]most popular[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]VPS Hosting[/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$35 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\r\n<p>Hosting made simple – for beginners and experts alike.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]5 Websites[/fusion_li_item][fusion_li_item]\r\n<p>Free SSL Certificate</p>\r\n[/fusion_li_item][fusion_li_item]15 GB SSD Storage[/fusion_li_item][fusion_li_item]\r\n<p>cPanel Included</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color4)\"]\r\n<p>Daily Backup</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\r\n<p>Lifetime Support</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/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=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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=\"40\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"40\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" box_shadow_vertical=\"0\" 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) - 95%))\" border_color_hover=\"var(--awb-color5)\" border_color=\"var(--awb-color1)\" element_content=\"\" margin_bottom=\"-120px\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6IiIsInRyYW5zaXRpb25fc3BlZWQiOiIxLjAiLCJmYWRlX3R5cGUiOiIiLCJzY2FsZV90eXBlIjoiIiwiaW5pdGlhbF9zY2FsZSI6IiIsIm1heF9zY2FsZSI6IiIsIm1pbl9zY2FsZSI6IiIsImluaXRpYWxfcm90YXRlIjoiIiwiZW5kX3JvdGF0ZSI6IiIsImluaXRpYWxfYmx1ciI6IiIsImVuZF9ibHVyIjoiIiwic3RhcnRfZWxlbWVudCI6IiIsInN0YXJ0X3ZpZXdwb3J0IjoiIiwiZW5kX2VsZW1lbnQiOiIiLCJlbmRfdmlld3BvcnQiOiJjZW50ZXIiLCJtb3VzZV9lZmZlY3QiOiIiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoiIiwibW91c2VfZWZmZWN0X3NwZWVkIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uX3NwZWVkIjoiIn1d\" type_medium=\"1_3\" margin_bottom_small=\"60\" first=\"false\" min_height=\"\" link=\"\"][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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"true\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color5)\" button_gradient_bottom_color_hover=\"var(--awb-color5)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 85),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 85),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\"]30% off[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]Dedicated Server[/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$49 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\r\n<p>Hosting made simple – for beginners and experts alike.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]20 Websites[/fusion_li_item][fusion_li_item]\r\n<p>Free SSL Certificate</p>\r\n[/fusion_li_item][fusion_li_item]30 GB SSD Storage[/fusion_li_item][fusion_li_item]\r\n<p>cPanel Included</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Daily Backup</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Lifetime Support</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Pricing Table','','publish','closed','closed','','pricing-table','','','2023-08-21 20:36:52','2023-08-21 20:36:52','',0,'https://test-site.goodcausepartners.com/fusion_element/pricing-table/',0,'fusion_element','',0),(1050,1,'2023-05-12 19:07:47','2023-05-12 19: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\" 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\" admin_label=\"Sliding Menu\" padding_right=\"40px\" padding_left=\"40px\" margin_bottom=\"20px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"25px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_bottom=\"15px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1638|fusion-400\" margin_bottom=\"5px\" max_width=\"300\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-horiz-logo-400x117.webp[/fusion_imageframe][/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\" padding_top=\"10px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_right=\"5px\" padding_left=\"5px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" 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=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\"]Main Menu<br>[/fusion_title][fusion_menu menu=\"hosting-sliding-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\" main_justify_content=\"space-between\" transition_type=\"bottom-vertical\" icons_position=\"right\" icons_size=\"14\" dropdown_carets=\"yes\" submenu_mode=\"stacked\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" gap=\"10px\" fusion_font_variant_typography=\"400\" submenu_active_bg=\"var(--awb-color1)\" active_color=\"var(--awb-color4)\" color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 30%))\" margin_top=\"20px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_bottom=\"1px\" icons_color=\"var(--awb-color6)\" items_padding_bottom=\"8px\" active_border_bottom=\"1px\" active_border_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 50%))\" font_size=\"17\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_right=\"20px\" padding_left=\"30px\" background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 95%))\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" padding_top=\"15px\" padding_bottom=\"15px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" background_color_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 95%))\" border_color_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 75%))\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" 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=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\"]Connect with Us<br />[/fusion_title][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" 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\" size=\"xlarge\" alignment=\"center\" type=\"flat\" icon=\"fa-headset fas\" margin_top=\"15\" margin_bottom=\"15\"]Call (805) 870-5050[/fusion_button][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" size=\"xlarge\" alignment=\"center\" type=\"flat\" icon=\"fa-envelope fas\"]Contact Form[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Sliding Menu','','publish','closed','closed','','sliding-menu','','','2023-08-23 08:43:02','2023-08-23 08:43:02','',0,'https://test-site.goodcausepartners.com/?awb_off_canvas=sliding-menu',0,'awb_off_canvas','',0),(1083,1,'2023-05-15 20:05:47','2023-05-15 20:05: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\" 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\" admin_label=\"Server Locations\" padding_top=\"100px\" background_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 95%))\" padding_bottom=\"100px\" ][fusion_builder_row][fusion_builder_column type=\"1_6\" type=\"1_6\" layout=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" min_height=\"\" link=\"\"][/fusion_builder_column][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" margin_bottom=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" content_alignment=\"center\" text_color=\"var(--awb-color5)\" margin_bottom=\"10px\"]\r\n<p>Binte cailuy tiure aliquid enim tempore</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=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]\r\n<p>top-notch &amp; fastest data servers</p>\r\n[/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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\" content_alignment=\"center\"]\r\n<p>Dignismos sinte iure taques dolore tempore unde magnis cuibus<br />\r\natque laborum sed knam galisum repudiane</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" type=\"1_6\" layout=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" min_height=\"\" link=\"\"][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6InRpbHQiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoic2FtZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_image_hotspots popover_trigger=\"hover\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" items_animation=\"pulsating\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" image=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/world-map.png\" image_id=\"750|full\" alignment=\"center\" image_max_width=\"1050px\"][fusion_image_hotspot_point pos_x=\"16.0\" icon=\"fusion-prefix-hosting-template-server-solid\" long_title=\"San Francisco\" long_text=\"RG9uJ3QgbGV0IHNsb3cgaG9zdGluZyBkcmFnIHlvdSBkb3duLiBTd2l0Y2ggdG8gb3VyIGhpZ2gtc3BlZWQgc2VydmVycyB0b2RheS4=\" pos_y=\"37.0\" hotspot_text_color=\"var(--awb-color4)\" border_radius_top_left=\"50px\" border_radius_top_right=\"50px\" border_radius_bottom_right=\"50px\" border_radius_bottom_left=\"50px\" padding_top=\"14px\" padding_right=\"14px\" padding_bottom=\"14px\" padding_left=\"14px\" hotspot_hover_background_color=\"var(--awb-color4)\" hotspot_hover_text_color=\"var(--awb-color1)\" font_size=\"16px\" /][fusion_image_hotspot_point pos_x=\"26.0\" icon=\"fusion-prefix-hosting-template-server-solid\" long_title=\"Miami\" long_text=\"RG9uJ3QgbGV0IHNsb3cgaG9zdGluZyBkcmFnIHlvdSBkb3duLiBTd2l0Y2ggdG8gb3VyIGhpZ2gtc3BlZWQgc2VydmVycyB0b2RheS4=\" pos_y=\"53.0\" hotspot_text_color=\"var(--awb-color4)\" border_radius_top_left=\"50px\" border_radius_top_right=\"50px\" border_radius_bottom_right=\"50px\" border_radius_bottom_left=\"50px\" padding_top=\"14px\" padding_right=\"14px\" padding_bottom=\"14px\" padding_left=\"14px\" hotspot_hover_background_color=\"var(--awb-color4)\" hotspot_hover_text_color=\"var(--awb-color1)\" font_size=\"16px\" /][fusion_image_hotspot_point pos_x=\"30.0\" icon=\"fusion-prefix-hosting-template-server-solid\" long_title=\"New York\" long_text=\"RG9uJ3QgbGV0IHNsb3cgaG9zdGluZyBkcmFnIHlvdSBkb3duLiBTd2l0Y2ggdG8gb3VyIGhpZ2gtc3BlZWQgc2VydmVycyB0b2RheS4=\" pos_y=\"42.0\" hotspot_text_color=\"var(--awb-color4)\" border_radius_top_left=\"50px\" border_radius_top_right=\"50px\" border_radius_bottom_right=\"50px\" border_radius_bottom_left=\"50px\" padding_top=\"14px\" padding_right=\"14px\" padding_bottom=\"14px\" padding_left=\"14px\" hotspot_hover_background_color=\"var(--awb-color4)\" hotspot_hover_text_color=\"var(--awb-color1)\" font_size=\"16px\" /][fusion_image_hotspot_point pos_x=\"46.0\" icon=\"fusion-prefix-hosting-template-server-solid\" long_title=\"London\" long_text=\"RG9uJ3QgbGV0IHNsb3cgaG9zdGluZyBkcmFnIHlvdSBkb3duLiBTd2l0Y2ggdG8gb3VyIGhpZ2gtc3BlZWQgc2VydmVycyB0b2RheS4=\" pos_y=\"38.0\" hotspot_text_color=\"var(--awb-color4)\" border_radius_top_left=\"50px\" border_radius_top_right=\"50px\" border_radius_bottom_right=\"50px\" border_radius_bottom_left=\"50px\" padding_top=\"14px\" padding_right=\"14px\" padding_bottom=\"14px\" padding_left=\"14px\" hotspot_hover_background_color=\"var(--awb-color4)\" hotspot_hover_text_color=\"var(--awb-color1)\" font_size=\"16px\" /][fusion_image_hotspot_point pos_x=\"60.0\" icon=\"fusion-prefix-hosting-template-server-solid\" long_title=\"Moscow\" long_text=\"RG9uJ3QgbGV0IHNsb3cgaG9zdGluZyBkcmFnIHlvdSBkb3duLiBTd2l0Y2ggdG8gb3VyIGhpZ2gtc3BlZWQgc2VydmVycyB0b2RheS4=\" pos_y=\"33.0\" hotspot_text_color=\"var(--awb-color4)\" border_radius_top_left=\"50px\" border_radius_top_right=\"50px\" border_radius_bottom_right=\"50px\" border_radius_bottom_left=\"50px\" padding_top=\"14px\" padding_right=\"14px\" padding_bottom=\"14px\" padding_left=\"14px\" hotspot_hover_background_color=\"var(--awb-color4)\" hotspot_hover_text_color=\"var(--awb-color1)\" font_size=\"16px\" /][fusion_image_hotspot_point pos_x=\"52.0\" icon=\"fusion-prefix-hosting-template-server-solid\" long_title=\"Cape Town\" long_text=\"RG9uJ3QgbGV0IHNsb3cgaG9zdGluZyBkcmFnIHlvdSBkb3duLiBTd2l0Y2ggdG8gb3VyIGhpZ2gtc3BlZWQgc2VydmVycyB0b2RheS4=\" pos_y=\"76.0\" hotspot_text_color=\"var(--awb-color4)\" border_radius_top_left=\"50px\" border_radius_top_right=\"50px\" border_radius_bottom_right=\"50px\" border_radius_bottom_left=\"50px\" padding_top=\"14px\" padding_right=\"14px\" padding_bottom=\"14px\" padding_left=\"14px\" hotspot_hover_background_color=\"var(--awb-color4)\" hotspot_hover_text_color=\"var(--awb-color1)\" font_size=\"16px\" /][fusion_image_hotspot_point pos_x=\"86.0\" icon=\"fusion-prefix-hosting-template-server-solid\" long_title=\"Sydney\" long_text=\"RG9uJ3QgbGV0IHNsb3cgaG9zdGluZyBkcmFnIHlvdSBkb3duLiBTd2l0Y2ggdG8gb3VyIGhpZ2gtc3BlZWQgc2VydmVycyB0b2RheS4=\" pos_y=\"82.0\" hotspot_text_color=\"var(--awb-color4)\" border_radius_top_left=\"50px\" border_radius_top_right=\"50px\" border_radius_bottom_right=\"50px\" border_radius_bottom_left=\"50px\" padding_top=\"14px\" padding_right=\"14px\" padding_bottom=\"14px\" padding_left=\"14px\" hotspot_hover_background_color=\"var(--awb-color4)\" hotspot_hover_text_color=\"var(--awb-color1)\" font_size=\"16px\" /][fusion_image_hotspot_point pos_x=\"75.0\" icon=\"fusion-prefix-hosting-template-server-solid\" long_title=\"Singapore\" long_text=\"RG9uJ3QgbGV0IHNsb3cgaG9zdGluZyBkcmFnIHlvdSBkb3duLiBTd2l0Y2ggdG8gb3VyIGhpZ2gtc3BlZWQgc2VydmVycyB0b2RheS4=\" pos_y=\"63.0\" hotspot_text_color=\"var(--awb-color4)\" border_radius_top_left=\"50px\" border_radius_top_right=\"50px\" border_radius_bottom_right=\"50px\" border_radius_bottom_left=\"50px\" padding_top=\"14px\" padding_right=\"14px\" padding_bottom=\"14px\" padding_left=\"14px\" hotspot_hover_background_color=\"var(--awb-color4)\" hotspot_hover_text_color=\"var(--awb-color1)\" font_size=\"16px\" /][fusion_image_hotspot_point pos_x=\"86.0\" icon=\"fusion-prefix-hosting-template-server-solid\" long_title=\"Tokyo\" long_text=\"RG9uJ3QgbGV0IHNsb3cgaG9zdGluZyBkcmFnIHlvdSBkb3duLiBTd2l0Y2ggdG8gb3VyIGhpZ2gtc3BlZWQgc2VydmVycyB0b2RheS4=\" pos_y=\"38.0\" hotspot_text_color=\"var(--awb-color4)\" border_radius_top_left=\"50px\" border_radius_top_right=\"50px\" border_radius_bottom_right=\"50px\" border_radius_bottom_left=\"50px\" padding_top=\"14px\" padding_right=\"14px\" padding_bottom=\"14px\" padding_left=\"14px\" hotspot_hover_background_color=\"var(--awb-color4)\" hotspot_hover_text_color=\"var(--awb-color1)\" font_size=\"16px\" /][/fusion_image_hotspots][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"18px\"][fusion_li_item]<strong>Empowering your website</strong>[/fusion_li_item][fusion_li_item]<strong>Offering 24/7 live expert support</strong>[/fusion_li_item][/fusion_checklist][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"18px\"][fusion_li_item]<strong>Flexible hosting options &amp; plans</strong>[/fusion_li_item][fusion_li_item]\r\n<p><strong>Performance without compromise</strong></p>\r\n[/fusion_li_item][/fusion_checklist][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"18px\"][fusion_li_item]<strong>Get fastest cloud hosting</strong>[/fusion_li_item][fusion_li_item]<strong>Migrate from previous host easily</strong>[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Data Servers','','publish','closed','closed','','data-servers','','','2023-08-22 00:06:40','2023-08-22 00:06:40','',0,'https://test-site.goodcausepartners.com/fusion_element/data-servers/',0,'fusion_element','',0),(1097,1,'2023-05-15 20:31:20','2023-05-15 20:31:20','[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=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"60px\" admin_label=\"Contact - Mobile\" padding_bottom=\"40px\" border_sizes_top=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" admin_toggled=\"yes\" ][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" type_medium=\"1_1\" margin_bottom_medium=\"40px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"30px\" margin_bottom=\"0\" margin_top=\"0\" text_transform=\"capitalize\" content_align_medium=\"center\"]<strong>need help? get in touch</strong>[/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\" margin_bottom=\"0\" content_alignment_medium=\"center\"]\r\n<p>Sint duire taque aute galisum repudas</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" type_small=\"1_1\" margin_bottom_small=\"20px\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" type=\"1_4\" layout=\"1_4\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_5\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-email\" spin=\"no\" linktarget=\"_self\" bg_size=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"22\" circle=\"yes\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_4\" layout=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left=\"5px\" padding_top=\"5px\" type_small=\"4_5\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color4)\"]Support Email[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"24px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\"]<strong><a href=\"#\">Send @ Email</a></strong>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" type_small=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" type=\"1_4\" layout=\"1_4\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_5\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-chat\" spin=\"no\" linktarget=\"_self\" bg_size=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"26\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_4\" layout=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left=\"5px\" padding_top=\"5px\" type_small=\"4_5\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color4)\"]talk to our agent[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"24px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\"]<strong><a href=\"#\">Live Chat Now</a></strong>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Footer CTA - Mobile','','publish','closed','closed','','footer-cta-mobile','','','2023-08-23 06:01:12','2023-08-23 06:01:12','',0,'https://test-site.goodcausepartners.com/fusion_element/footer-cta-mobile/',0,'fusion_element','',0),(1325,1,'2023-05-18 20:25:50','2023-05-18 20:25:50','[fusion_builder_column type=\"1_1\" type=\"1_1\" element_content=\"\" last=\"no\" hover_type=\"none\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_post_card_image layout=\"static\" aspect_ratio=\"4-3\" custom_aspect_ratio=\"100\" 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\" animation_delay=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" /][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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"10px\" padding_right=\"40px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\" margin_top=\"30px\" margin_top_small=\"30px\"]Your Content Goes Here[/fusion_title][fusion_tb_meta meta=\"tags\" layout=\"floated\" read_time=\"200\" reading_time_decimal=\"yes\" alignment_medium=\"flex-start\" alignment_small=\"flex-start\" alignment=\"flex-start\" stacked_vertical_align=\"flex-start\" stacked_horizontal_align=\"flex-start\" height=\"36\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" border_top=\"0\" border_bottom=\"0\" font_size=\"15px\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]','Archives','','publish','closed','closed','','archives','','','2023-05-18 20:25:50','2023-05-18 20:25:50','',0,'https://test-site.goodcausepartners.com/fusion_element/archives/',0,'fusion_element','',0),(1347,1,'2023-05-19 14:13:33','2023-05-19 14:13: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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" flex_column_spacing=\"0\"][fusion_builder_row][fusion_builder_column type=\"20.00\" type=\"20.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][fusion_builder_column type=\"30.00\" type=\"30.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"15px\" padding_right=\"15px\" padding_bottom=\"15px\" padding_left=\"15px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" box_shadow_vertical=\"0\" 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) - 95%))\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" last=\"no\" border_position=\"all\" background_color=\"var(--awb-color1)\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-web-protection\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" circlecolor=\"var(--awb-color4)\" circlecolor_hover=\"var(--awb-color5)\" link=\"https://test-site.goodcausepartners.com/hosting/shared-hosting/\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"20px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" margin_top=\"8px\" link_url=\"https://test-site.goodcausepartners.com/hosting/shared-hosting/\"]\r\n<p>shared hosting</p>\r\n[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" margin_bottom=\"0\"]For small &amp; medium websites[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-personal-computer\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" circlecolor=\"var(--awb-color4)\" circlecolor_hover=\"var(--awb-color5)\" link=\"https://test-site.goodcausepartners.com/hosting/wordpress-hosting/\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"20px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" margin_top=\"8px\" link_url=\"https://test-site.goodcausepartners.com/hosting/wordpress-hosting/\"]wordPress hosting[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" margin_bottom=\"0\"]Best wordPress hosting[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-cloud-hosting\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" circlecolor=\"var(--awb-color4)\" circlecolor_hover=\"var(--awb-color5)\" link=\"https://test-site.goodcausepartners.com/hosting/dedicated-server/\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"20px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" margin_top=\"8px\" link_url=\"https://test-site.goodcausepartners.com/hosting/dedicated-server/\"]dedicated server[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" margin_bottom=\"0\"]For large scale websites[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" circlecolor=\"var(--awb-color4)\" circlecolor_hover=\"var(--awb-color5)\" link=\"https://test-site.goodcausepartners.com/hosting/vps-cloud-hosting/\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"20px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" margin_top=\"8px\" link_url=\"https://test-site.goodcausepartners.com/hosting/vps-cloud-hosting/\"]VPS / cloud hosting[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" margin_bottom=\"0\"]The speed &amp; performance[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-coding\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" circlecolor=\"var(--awb-color4)\" circlecolor_hover=\"var(--awb-color5)\" link=\"https://test-site.goodcausepartners.com/hosting/website-builder/\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"20px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" margin_top=\"8px\" link_url=\"https://test-site.goodcausepartners.com/hosting/website-builder/\"]\r\n<p>website builder</p>\r\n[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" margin_bottom=\"0\"]The speed &amp; performance[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-smartphone\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" circlecolor=\"var(--awb-color4)\" circlecolor_hover=\"var(--awb-color5)\" link=\"https://test-site.goodcausepartners.com/hosting/managed-private-server/\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" margin_top=\"8px\" link_url=\"https://test-site.goodcausepartners.com/hosting/managed-private-server/\"]managed private server[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 50%))\" margin_bottom=\"0\"]Managed web servers[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Hosting Plans','','publish','closed','closed','','hosting-plans','','','2023-05-19 14:13:33','2023-05-19 14:13:33','',0,'https://test-site.goodcausepartners.com/fusion_element/hosting-plans/',0,'fusion_element','',0),(1379,1,'2023-05-22 13:17:02','2023-05-22 13:17:02','[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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Logos\" padding_bottom=\"100px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" padding_top=\"100px\" ][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" margin_bottom_small=\"40px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"90\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"60\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"110\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"306|full\" max_width=\"190px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/magento-logo-1.png[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" margin_bottom_small=\"40px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"90\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"60\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"110\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"307|full\" max_width=\"190px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/joomla-logo-1.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" margin_bottom_small=\"40px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"90\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"60\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"110\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"305|full\" max_width=\"95px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/woo-logo-1.png[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" margin_bottom_small=\"40px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"90\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"60\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"110\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"304|full\" max_width=\"255px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/wordpress-logo-1.png[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"90\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"60\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"110\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"303|full\" max_width=\"160px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/drupal-logo-1.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Tech Logos','','publish','closed','closed','','tech-logos','','','2023-08-22 01:18:10','2023-08-22 01:18:10','',0,'https://test-site.goodcausepartners.com/fusion_element/tech-logos/',0,'fusion_element','',0),(12,1,'2023-04-14 18:41:25','2023-04-14 18:41:25','[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=\"space-around\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Header Content\" flex_column_spacing=\"2%\" padding_right=\"5%\" padding_left=\"5%\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" z_index=\"9999\"][fusion_builder_row][fusion_builder_column type=\"25\" type=\"25\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"80\" type_small=\"3_4\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1638|fusion-600\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" alt=\"Good Cause Marketing Partners\" max_width=\"500\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-horiz-logo-600x175.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"50\" type=\"50\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_menu menu=\"gcmp-main\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" transition_time=\"300\" align_items=\"stretch\" justify_content=\"center\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"left\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"medium\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" fusion_font_variant_typography=\"var(--awb-typography3)\" fusion_font_family_typography=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" gap=\"34px\" active_color=\"var(--awb-color4)\" active_border_color=\"var(--awb-color5)\" collapsed_nav_text=\"Menu\" mobile_trigger_background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 90%))\" trigger_padding_top=\"15px\" /][/fusion_builder_column][fusion_builder_column type=\"24.00\" type=\"24.00\" align_self=\"auto\" 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=\"large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome spin=\"no\" linktarget=\"_self\" bg_size=\"56\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"24\" icon=\"fa-headset fas\" /][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color4)\" margin_bottom=\"0px\"]Need help? Call Us[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"22px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" margin_top=\"-5px\" line_height=\"0\"]\r\n<p><strong style=\"font-size: 19px;\" data-fusion-font=\"true\">(805) 870-5050</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"10.00\" type_small=\"1_4\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-bars fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"58\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"28\" alignment_medium=\"right\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJvcGVuX29mZl9jYW52YXMiLCJvZmZfY2FudmFzX2lkIjoiMTA1MCJ9fQ==\" circlecolor=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 1000%))\" iconcolor=\"var(--awb-color6)\" iconcolor_hover=\"var(--awb-color6)\" circlecolor_hover=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 1000%))\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Header','','publish','closed','closed','','default-header','','','2023-08-23 16:37:05','2023-08-23 16:37:05','',0,'https://test-site.goodcausepartners.com/fusion_tb_section/default-header-cloned-cloned/',0,'fusion_tb_section','',0),(1757,1,'2023-08-22 04:56:38','2023-08-22 04:56:38','[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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Header Content\" flex_column_spacing=\"2%\" padding_right=\"5%\" padding_left=\"5%\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" z_index=\"9999\"][fusion_builder_row][fusion_builder_column type=\"25\" type=\"25\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"60.00\" type_small=\"1_2\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1638|fusion-600\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" max_width=\"500px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-horiz-logo-600x175.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"50\" type=\"50\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_menu menu=\"gcmp-main\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" transition_time=\"300\" align_items=\"stretch\" justify_content=\"center\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"left\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"medium\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" fusion_font_variant_typography=\"var(--awb-typography3)\" fusion_font_family_typography=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" gap=\"34px\" active_color=\"var(--awb-color4)\" active_border_color=\"var(--awb-color5)\" collapsed_nav_text=\"Menu\" mobile_trigger_background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 90%))\" trigger_padding_top=\"15px\" /][/fusion_builder_column][fusion_builder_column type=\"24.00\" type=\"24.00\" align_self=\"auto\" 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=\"large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-headphones\" spin=\"no\" linktarget=\"_self\" bg_size=\"56\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"24\" /][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color4)\" margin_bottom=\"0px\"]Need help? Call Us[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"22px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" margin_top=\"-5px\" line_height=\"0\"]\r\n<p><strong>(805) 870-5050</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"30.00\" padding_top_medium=\"5px\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color4)\" margin_bottom=\"0px\" content_alignment_medium=\"right\"]Need help? Call Us[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"22px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" margin_top=\"-5px\" line_height=\"0\" content_alignment_medium=\"right\"]\r\n<p><strong>(010) 456 7890</strong></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"10.00\" type_small=\"1_2\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-group\" spin=\"no\" linktarget=\"_self\" bg_size=\"58\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"28\" alignment_medium=\"right\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJvcGVuX29mZl9jYW52YXMiLCJvZmZfY2FudmFzX2lkIjoiMTA1MCJ9fQ==\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Header','','inherit','closed','closed','','12-revision-v1','','','2023-08-22 04:56:38','2023-08-22 04:56:38','',12,'https://test-site.goodcausepartners.com/?p=1757',0,'revision','',0),(113,1,'2023-04-18 19:05:07','2023-04-18 19:05:07','','Hosting Icons','','publish','closed','closed','','hosting-icons','','','2023-04-18 19:05:07','2023-04-18 19:05:07','',0,'https://test-site.goodcausepartners.com/?fusion_icons=hosting-icons',0,'fusion_icons','',0),(351,1,'2023-04-28 13:44:39','2023-04-28 13:44: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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\" margin_bottom=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color6-h) + 60),calc(var(--awb-color6-s) + 22%),calc(var(--awb-color6-l) - 30%),var(--awb-color6-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" background_color=\"var(--awb-color6)\"][fusion_builder_row][fusion_builder_column type=\"35\" type=\"35\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_small=\"1_1\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" alt=\"Good Cause Marketing Partners\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" 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_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" content_align_small=\"center\" text_color=\"var(--awb-color2)\"]Follow Us on Social<br>[/fusion_title][fusion_social_links facebook=\"#\" instagram=\"#\" show_custom=\"no\" margin_medium=\"\" margin_small=\"\" icon_colors_hover=\"\" icon_colors=\"var(--awb-color2)\" box_colors_hover=\"\" box_colors=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 100%))\" box_border_color_hover=\"\" box_border_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" alignment_small=\"center\" linkedin=\"#\" icons_boxed=\"yes\" box_border_top=\"1\" box_border_right=\"1\" box_border_bottom=\"1\" box_border_left=\"1\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"40\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<p>Main Menu</p>\r\n[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"var(--awb-color3)\" active_color=\"var(--awb-color4)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" icons_hover_color=\"var(--awb-color4)\" margin_bottom=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" padding_top=\"40\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"50\" border_sizes_left=\"1\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" type_small=\"1_1\" padding_bottom_medium=\"45\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" content_align_small=\"center\"]Connect with Us[/fusion_title][fusion_checklist type=\"icons\" hide_on_mobile=\"medium-visibility,large-visibility\" size=\"17\" textcolor=\"var(--awb-color1)\" divider=\"no\"][fusion_li_item icon=\"fa-headset fas\"]\r\n<p>Call Us </p>\r\n[/fusion_li_item][fusion_li_item icon=\"fa-envelope fas\"]\r\n<p>Email Us</p>\r\n[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_top=\"20\" content_align_small=\"center\"]Follow Us on Social[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"var(--awb-color1)\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 71%))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" box_border_color=\"var(--awb-color1)\" box_border_top=\"1\" box_border_right=\"1\" box_border_bottom=\"1\" box_border_left=\"1\" alignment_small=\"center\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"40px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAyMCAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','publish','closed','closed','','default-footer','','','2023-08-23 08:09:34','2023-08-23 08:09:34','',0,'https://test-site.goodcausepartners.com/fusion_tb_section/default-footer/',0,'fusion_tb_section','',0),(1684,1,'2023-08-21 22:17:06','2023-08-21 22:17: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=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" background_color=\"var(--awb-color8)\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_sizes_top=\"5px\" border_sizes_right=\"5px\" border_sizes_bottom=\"5px\" border_sizes_left=\"5px\" border_color=\"var(--awb-color6)\" padding_top=\"20px\" padding_bottom=\"20px\" padding_right=\"60px\" padding_left=\"60px\" margin_bottom=\"80px\" border_color_hover=\"hsla(var(--awb-color6-h),var(--awb-color6-s),calc(var(--awb-color6-l) + 10%),var(--awb-color6-a))\" padding_top_medium=\"40px\" padding_bottom_medium=\"40px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"75.00\" type=\"75.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\" content_align_medium=\"center\" content_align_small=\"center\"]Empower your online presence with avada hosting[/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\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 20%))\" content_alignment_medium=\"center\" content_alignment_small=\"center\"]\r\n<p>Join our list of 10M customers &amp; get a ‘45-Days Money-Back Guarantee’</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25.00\" type=\"25.00\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\" alignment=\"right\" alignment_medium=\"center\" margin_top=\"20px\" margin_bottom=\"20px\" alignment_small=\"center\"]get started[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"33\" type=\"33\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"33\" type=\"33\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"var(--awb-color3)\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"35\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<p>Main Menu</p>[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" active_color=\"var(--awb-color1)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" border_left=\"1px\" active_border_left=\"1px\" /][/fusion_builder_column][fusion_builder_column type=\"33\" type=\"33\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"35\" border_sizes_left=\"1\" border_color=\"var(--awb-color2)\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Connect[/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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"26px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\" text_color=\"var(--awb-color1)\"]<p><b>(805) 870-5050</b></p>[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"26px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\" text_color=\"var(--awb-color1)\"]<p><b>Info@goodcausepartners.com</b></p>[/fusion_text][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 style=\"color: #ffffff;\">By Phone:</p>[/fusion_text][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 2%),var(--awb-color7-a))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAxMiAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-21 22:17:06','2023-08-21 22:17:06','',351,'https://test-site.goodcausepartners.com/?p=1684',0,'revision','',0),(1680,1,'2023-08-21 22:10:53','2023-08-21 22:10: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=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" background_color=\"var(--awb-color8)\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_sizes_top=\"5px\" border_sizes_right=\"5px\" border_sizes_bottom=\"5px\" border_sizes_left=\"5px\" border_color=\"var(--awb-color6)\" padding_top=\"20px\" padding_bottom=\"20px\" padding_right=\"60px\" padding_left=\"60px\" margin_bottom=\"80px\" border_color_hover=\"hsla(var(--awb-color6-h),var(--awb-color6-s),calc(var(--awb-color6-l) + 10%),var(--awb-color6-a))\" padding_top_medium=\"40px\" padding_bottom_medium=\"40px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"75.00\" type=\"75.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\" content_align_medium=\"center\" content_align_small=\"center\"]Empower your online presence with avada hosting[/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\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 20%))\" content_alignment_medium=\"center\" content_alignment_small=\"center\"]\r\n<p>Join our list of 10M customers &amp; get a ‘45-Days Money-Back Guarantee’</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25.00\" type=\"25.00\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\" alignment=\"right\" alignment_medium=\"center\" margin_top=\"20px\" margin_bottom=\"20px\" alignment_small=\"center\"]get started[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"33\" type=\"33\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 2%),var(--awb-color7-a))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" /][/fusion_builder_column][fusion_builder_column type=\"33\" type=\"33\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_sizes_right=\"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\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<p>Main Menu</p>[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"20px\" gap=\"17px\" color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" active_color=\"var(--awb-color1)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" items_padding_left=\"15px\" border_left=\"1px\" active_border_left=\"1px\" /][/fusion_builder_column][fusion_builder_column type=\"33\" type=\"33\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Connect[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" logics=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p style=\"color: #ffffff;\">By Phone:</p>[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"26px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\" text_color=\"var(--awb-color1)\"]<p><b>(805) 870-5050</b></p>[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"26px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\" text_color=\"var(--awb-color1)\"]<p><b>Info@goodcausepartners.com</b></p>[/fusion_text][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 style=\"color: #ffffff;\">By Phone:</p>[/fusion_text][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 2%),var(--awb-color7-a))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAxMiAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-21 22:10:53','2023-08-21 22:10:53','',351,'https://test-site.goodcausepartners.com/?p=1680',0,'revision','',0),(1679,1,'2023-08-21 22:09:53','2023-08-21 22:09: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=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" background_color=\"var(--awb-color8)\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_sizes_top=\"5px\" border_sizes_right=\"5px\" border_sizes_bottom=\"5px\" border_sizes_left=\"5px\" border_color=\"var(--awb-color6)\" padding_top=\"20px\" padding_bottom=\"20px\" padding_right=\"60px\" padding_left=\"60px\" margin_bottom=\"80px\" border_color_hover=\"hsla(var(--awb-color6-h),var(--awb-color6-s),calc(var(--awb-color6-l) + 10%),var(--awb-color6-a))\" padding_top_medium=\"40px\" padding_bottom_medium=\"40px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"75.00\" type=\"75.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\" content_align_medium=\"center\" content_align_small=\"center\"]Empower your online presence with avada hosting[/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\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 20%))\" content_alignment_medium=\"center\" content_alignment_small=\"center\"]\r\n<p>Join our list of 10M customers &amp; get a ‘45-Days Money-Back Guarantee’</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25.00\" type=\"25.00\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\" alignment=\"right\" alignment_medium=\"center\" margin_top=\"20px\" margin_bottom=\"20px\" alignment_small=\"center\"]get started[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"33\" type=\"33\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 2%),var(--awb-color7-a))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" /][/fusion_builder_column][fusion_builder_column type=\"33\" type=\"33\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<p>Main Menu</p>[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" top_margin=\"20px\" width=\"300px\" /][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"20px\" gap=\"17px\" color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" active_color=\"var(--awb-color1)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" items_padding_left=\"15px\" border_left=\"1px\" active_border_left=\"1px\" /][/fusion_builder_column][fusion_builder_column type=\"33\" type=\"33\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Connect[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" top_margin=\"20px\" width=\"300px\" /][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" logics=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p style=\"color: #ffffff;\">By Phone:</p>[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"26px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\" text_color=\"var(--awb-color1)\"]<p><b>(805) 870-5050</b></p>[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"26px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\" text_color=\"var(--awb-color1)\"]<p><b>Info@goodcausepartners.com</b></p>[/fusion_text][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 style=\"color: #ffffff;\">By Phone:</p>[/fusion_text][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 2%),var(--awb-color7-a))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAxMiAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-21 22:09:53','2023-08-21 22:09:53','',351,'https://test-site.goodcausepartners.com/?p=1679',0,'revision','',0),(532,1,'2023-05-05 17:07:14','2023-05-05 17:07:14','{\\\"conditions\\\":{\\\"specific_page|529\\\":{\\\"label\\\":\\\"Hosting Home Alternate\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|529\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"specific_page|903\\\":{\\\"label\\\":\\\"Domains\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|903\\\",\\\"parent\\\":\\\"specific_page\\\"}},\\\"template_terms\\\":{\\\"header\\\":\\\"535\\\"}}','Home II | Domains','','publish','closed','closed','','home-alternate','','','2023-05-05 17:07:14','2023-05-05 17:07:14','',0,'https://test-site.goodcausepartners.com/fusion_tb_layout/home-alternate/',0,'fusion_tb_layout','',0),(535,1,'2023-05-05 17:20:18','2023-05-05 17:20:18','[fusion_builder_container type=\"flex\" hundred_percent=\"yes\" 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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"on\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Header\" padding_top=\"20px\" padding_bottom=\"20px\" padding_right=\"5%\" padding_left=\"5%\" z_index=\"9999\"][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\" type_medium=\"1_2\" type_small=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"534|full\" max_width=\"280px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-logo-03.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"4_5\" type=\"4_5\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-end\" valign_content=\"center\" 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=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_small=\"1_2\" min_height=\"\" link=\"\"][fusion_menu menu=\"hosting-main-menu\" hide_on_mobile=\"large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" transition_time=\"300\" align_items=\"stretch\" justify_content=\"center\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"left\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"medium\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" fusion_font_variant_typography=\"var(--awb-typography3)\" fusion_font_family_typography=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" gap=\"34px\" active_color=\"var(--awb-color4)\" active_border_color=\"var(--awb-color5)\" collapsed_nav_text=\"Menu\" mobile_trigger_background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 90%))\" trigger_padding_top=\"15px\" color=\"var(--awb-color1)\" /][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/contact/\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-headphones\" margin_left=\"40px\" margin_right=\"20px\" padding_top=\"18px\" padding_bottom=\"19px\" padding_right=\"28px\" padding_left=\"28px\" button_gradient_top_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" button_gradient_bottom_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" border_top=\"1px\" border_right=\"1px\" border_bottom=\"1px\" border_left=\"1px\" border_color=\"var(--awb-color1)\" border_hover_color=\"var(--awb-color5)\" button_gradient_top_color_hover=\"var(--awb-color5)\" button_gradient_bottom_color_hover=\"var(--awb-color5)\" accent_hover_color=\"var(--awb-color1)\" accent_color=\"var(--awb-color1)\"]get support[/fusion_button][fusion_fontawesome icon=\"fusion-prefix-hosting-template-group\" spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJvcGVuX29mZl9jYW52YXMiLCJvZmZfY2FudmFzX2lkIjoiMTA1MCJ9fQ==\" iconcolor=\"var(--awb-color4)\" iconcolor_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 20%),var(--awb-color5-a))\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Header Alternate','','publish','closed','closed','','header-alternate','','','2023-05-05 17:20:18','2023-05-05 17:20:18','',0,'https://test-site.goodcausepartners.com/fusion_tb_section/header-alternate/',0,'fusion_tb_section','',0),(902,1,'2023-05-11 16:22:16','2023-05-11 16:22:16','{\\\"conditions\\\":{\\\"specific_page|1127\\\":{\\\"label\\\":\\\"Blog\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1127\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"specific_page|1270\\\":{\\\"label\\\":\\\"Contact\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1270\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"children_of_page|1723\\\":{\\\"label\\\":\\\"What We Do\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"exclude\\\",\\\"singular\\\":\\\"children_of_page|1723\\\",\\\"parent\\\":\\\"children_of_page\\\"},\\\"children_of_page|1068\\\":{\\\"label\\\":\\\"Who We Are\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"exclude\\\",\\\"singular\\\":\\\"children_of_page|1068\\\",\\\"parent\\\":\\\"children_of_page\\\"},\\\"specific_page|1723\\\":{\\\"label\\\":\\\"What We Do\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1723\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"specific_page|1068\\\":{\\\"label\\\":\\\"Who We Are\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1068\\\",\\\"parent\\\":\\\"specific_page\\\"}},\\\"template_terms\\\":{\\\"page_title_bar\\\":\\\"1008\\\",\\\"header\\\":\\\"12\\\",\\\"footer\\\":\\\"351\\\"}}','Inner Pages','','publish','closed','closed','','domain-page','','','2023-08-22 16:14:16','2023-08-22 16:14:16','',0,'https://test-site.goodcausepartners.com/fusion_tb_layout/domain-page/',0,'fusion_tb_layout','',0),(1008,1,'2023-05-12 14:22:06','2023-05-12 14:22:06','[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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" animation_delay=\"0.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_label=\"PTB\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"80px\" padding_bottom=\"80px\" pattern_bg_size=\"5%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W10=\" margin_top=\"20px\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" 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\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\" margin_bottom=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','PTB','','publish','closed','closed','','ptb','','','2023-08-21 23:28:15','2023-08-21 23:28:15','',0,'https://test-site.goodcausepartners.com/fusion_tb_section/ptb/',0,'fusion_tb_section','',0),(1707,1,'2023-08-21 23:28:15','2023-08-21 23:28:15','[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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" animation_delay=\"0.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_label=\"PTB\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"80px\" padding_bottom=\"80px\" pattern_bg_size=\"5%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W10=\" margin_top=\"20px\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" 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\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\" margin_bottom=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','PTB','','inherit','closed','closed','','1008-revision-v1','','','2023-08-21 23:28:15','2023-08-21 23:28:15','',1008,'https://test-site.goodcausepartners.com/?p=1707',0,'revision','',0),(1132,1,'2023-05-16 13:56:51','2023-05-16 13:56:51','{\\\"conditions\\\":{\\\"singular_post\\\":{\\\"label\\\":\\\"All Posts\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"singular_post\\\"}},\\\"template_terms\\\":{\\\"page_title_bar\\\":\\\"1156\\\",\\\"content\\\":1158}}','Blog Post','','publish','closed','closed','','blog-post','','','2023-05-16 13:56:51','2023-05-16 13:56:51','',0,'https://test-site.goodcausepartners.com/fusion_tb_layout/blog-post/',0,'fusion_tb_layout','',0),(1156,1,'2023-05-16 15:15:58','2023-05-16 15:15:58','[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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" animation_delay=\"0.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_label=\"PTB\" pattern_bg_size=\"5%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W10=\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\" mask_bg_color=\"var(--awb-color2)\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" margin_top=\"40px\"][fusion_builder_row][fusion_builder_column type=\"4_5\" type=\"4_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_small=\"5_6\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" padding_bottom=\"40px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"45\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"zoomin\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfZmVhdHVyZWRfaW1hZ2UiLCJ0eXBlIjoibWFpbiJ9fQ==\" aspect_ratio=\"custom\" aspect_ratio_position=\"50% 100%\" borderradius=\"5px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\" margin_bottom=\"40px\" margin_top=\"40px\" margin_right=\"40px\" margin_left=\"40px\" margin_top_small=\"40px\" margin_bottom_small=\"20px\" margin_right_medium=\"40px\" margin_left_medium=\"40px\" margin_right_small=\"20px\" margin_left_small=\"20px\" /][fusion_tb_meta meta=\"author,published_date,categories\" layout=\"floated\" separator=\"||\" read_time=\"200\" reading_time_decimal=\"yes\" alignment_medium=\"center\" alignment_small=\"center\" 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\" animation_delay=\"0\" border_top=\"0\" border_bottom=\"0\" font_size=\"14px\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Blog Post PTB','','publish','closed','closed','','blog-post-ptb','','','2023-05-16 15:15:58','2023-05-16 15:15:58','',0,'https://test-site.goodcausepartners.com/fusion_tb_section/blog-post-ptb/',0,'fusion_tb_section','',0),(1158,1,'2023-05-16 15:16:17','2023-05-16 15:16: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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\"][fusion_builder_row][fusion_builder_column type=\"4_5\" type=\"4_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" padding_top=\"40px\" padding_bottom=\"40px\" min_height=\"\" link=\"\"][fusion_tb_content excerpt=\"no\" excerpt_length=\"55\" strip_html=\"yes\" dropcap=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" dropcap_boxed=\"no\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Comments\"][fusion_builder_row][fusion_builder_column type=\"4_5\" type=\"4_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_tb_comments avatar=\"circle\" headings=\"show\" heading_size=\"2\" padding=\"40\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" link_color=\"var(--awb-color4)\" link_hover_color=\"var(--awb-color5)\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"60px\" margin_bottom=\"60px\" admin_label=\"Related Posts\"][fusion_builder_row][fusion_builder_column type=\"4_5\" type=\"4_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]more similar articles[/fusion_title][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"4\" 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=\"carousel\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"1\" columns=\"2\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"yes\" mouse_pointer=\"custom\" cursor_color_mode=\"auto\" show_nav=\"no\" dots_position=\"below\" dots_spacing=\"5\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" dots_margin_top=\"20px\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Blog Post Content','','publish','closed','closed','','blog-post-content','','','2023-05-16 15:16:17','2023-05-16 15:16:17','',0,'https://test-site.goodcausepartners.com/fusion_tb_section/blog-post-content/',0,'fusion_tb_section','',0),(1292,1,'2023-05-17 20:35:56','2023-05-17 20:35: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\" 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_right=\"0\" padding_left=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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_form_text required=\"no\" disabled=\"no\" minlength=\"0\" maxlength=\"0\" name=\"name\" placeholder=\"Your Name\" /][fusion_form_email required=\"no\" name=\"email\" placeholder=\"Email\" /][fusion_form_text required=\"no\" disabled=\"no\" minlength=\"0\" maxlength=\"0\" name=\"subject\" placeholder=\"Subject\" /][fusion_form_textarea required=\"no\" disabled=\"no\" rows=\"4\" minlength=\"0\" maxlength=\"0\" name=\"message\" placeholder=\"Type your message / question\" /][fusion_form_submit color=\"default\" gradient_end_position=\"100\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" fusion_font_variant_button_font=\"400\" margin_top=\"20px\"]Send Message[/fusion_form_submit][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Contact Form','','publish','closed','closed','','contact-form','','','2023-05-17 20:35:56','2023-05-17 20:35:56','',0,'https://test-site.goodcausepartners.com/fusion_form/contact-form/',0,'fusion_form','',0),(1329,1,'2023-05-18 20:32:47','2023-05-18 20:32:47','{\\\"conditions\\\":{\\\"category\\\":{\\\"label\\\":\\\"All Categories\\\",\\\"type\\\":\\\"archives\\\",\\\"mode\\\":\\\"include\\\",\\\"archives\\\":\\\"category\\\"},\\\"post_tag\\\":{\\\"label\\\":\\\"All Tags\\\",\\\"type\\\":\\\"archives\\\",\\\"mode\\\":\\\"include\\\",\\\"archives\\\":\\\"post_tag\\\"},\\\"search_results\\\":{\\\"label\\\":\\\"Search Results\\\",\\\"type\\\":\\\"archives\\\",\\\"mode\\\":\\\"include\\\",\\\"archives\\\":\\\"search_results\\\"}},\\\"template_terms\\\":{\\\"page_title_bar\\\":\\\"1008\\\",\\\"content\\\":\\\"1333\\\"}}','Archives','','publish','closed','closed','','archives','','','2023-05-18 20:32:47','2023-05-18 20:32:47','',0,'https://test-site.goodcausepartners.com/fusion_tb_layout/archives/',0,'fusion_tb_layout','',0),(1333,1,'2023-05-18 20:35:39','2023-05-18 20:35: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\" 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\" admin_label=\"Archives Content\" margin_top=\"100px\" margin_bottom=\"60px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_tb_post_card_archives post_card=\"1325\" post_card_list_view=\"0\" source=\"posts\" number_posts=\"0\" scrolling=\"infinite\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"60\" separator_style_type=\"none\" separator_alignment=\"center\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" 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]','Archives Content','','publish','closed','closed','','archives-content','','','2023-05-18 20:35:39','2023-05-18 20:35:39','',0,'https://test-site.goodcausepartners.com/fusion_tb_section/archives-content/',0,'fusion_tb_section','',0),(1365,1,'2023-05-19 20:47:37','2023-05-19 20:47:37','{\\\"conditions\\\":{\\\"children_of_page|1004\\\":{\\\"label\\\":\\\"Hosting\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"children_of_page|1004\\\",\\\"parent\\\":\\\"children_of_page\\\"}},\\\"template_terms\\\":{\\\"page_title_bar\\\":\\\"1366\\\"}}','Hosting Plans','','publish','closed','closed','','hosting-plans','','','2023-05-19 20:47:37','2023-05-19 20:47:37','',0,'https://test-site.goodcausepartners.com/fusion_tb_layout/hosting-plans/',0,'fusion_tb_layout','',0),(1366,1,'2023-05-19 20:48:33','2023-05-19 20:48: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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" animation_delay=\"0.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_top=\"20px\" padding_top=\"80px\" padding_bottom=\"80px\" background_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 95%))\" admin_label=\"Hosting Plans PTB\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\" margin_bottom=\"0\" /][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"1\"]\r\n<p>Mollis leo scelerisque auctor odu aliqua eros vitaes</p>\r\n[/fusion_text][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color5)\" item_padding_bottom=\"2px\" margin_bottom=\"10px\"][fusion_li_item]\r\n<p><strong>Elevate your online presence</strong></p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p><strong>Secure and protect your business</strong></p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p><strong>cPanel Website Transfer + Domain + SSL</strong></p>\r\n[/fusion_li_item][/fusion_checklist][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" margin_top=\"30px\" margin_bottom=\"10px\" class=\"fusion-menu\" link=\"#\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]get started today[/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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_top_small=\"80px\" spacing_left=\"0\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1370|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/hosting-plans-1.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Hosting Plans PTB','','publish','closed','closed','','hosting-plans-ptb','','','2023-05-19 20:48:33','2023-05-19 20:48:33','',0,'https://test-site.goodcausepartners.com/fusion_tb_section/hosting-plans-ptb/',0,'fusion_tb_section','',0),(1496,1,'2023-05-23 17:28:15','2023-05-23 17:28:15','{\\\"conditions\\\":{\\\"not_found\\\":{\\\"label\\\":\\\"404 Page\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"not_found\\\"}},\\\"template_terms\\\":{\\\"content\\\":1498}}','404 Error','','publish','closed','closed','','404-error','','','2023-05-23 17:28:15','2023-05-23 17:28:15','',0,'https://test-site.goodcausepartners.com/fusion_tb_layout/404-error/',0,'fusion_tb_layout','',0),(1498,1,'2023-05-23 17:29:02','2023-05-23 17:29: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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" margin_bottom=\"40px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1500|full\" max_width=\"600px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/hosting-404-error-1.png[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"40px\" margin_bottom_small=\"20px\"]\r\n<p>page not found.</p>\r\n[/fusion_title][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" alignment=\"center\" margin_top=\"20px\"]go to homepage[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','404 Error Content','','publish','closed','closed','','404-error-content','','','2023-05-23 17:29:02','2023-05-23 17:29:02','',0,'https://test-site.goodcausepartners.com/fusion_tb_section/404-error-content/',0,'fusion_tb_section','',0),(29,1,'2023-05-19 14:55:52','2023-04-14 20:37:08','','Home','','publish','closed','closed','','home','','','2023-05-19 14:55:52','2023-04-14 20:37:08','',0,'https://test-site.goodcausepartners.com/?p=29',1,'nav_menu_item','',0),(30,1,'2023-05-19 14:55:52','2023-04-14 20:37:08','','Hosting','','publish','closed','closed','','hosting','','','2023-05-19 14:55:52','2023-04-14 20:37:08','',0,'https://test-site.goodcausepartners.com/?p=30',3,'nav_menu_item','',0),(31,1,'2023-05-19 14:55:52','2023-04-14 20:37:08','','Domains','','publish','closed','closed','','domains','','','2023-05-19 14:55:52','2023-04-14 20:37:08','',0,'https://test-site.goodcausepartners.com/?p=31',2,'nav_menu_item','',0),(32,1,'2023-05-19 14:55:52','2023-04-14 20:39:32','','About','','publish','closed','closed','','about','','','2023-05-19 14:55:52','2023-04-14 20:39:32','',0,'https://test-site.goodcausepartners.com/?p=32',4,'nav_menu_item','',0),(33,1,'2023-05-19 14:55:52','2023-04-14 20:39:32','','Blog','','publish','closed','closed','','blog','','','2023-05-19 14:55:52','2023-04-14 20:39:32','',0,'https://test-site.goodcausepartners.com/?p=33',5,'nav_menu_item','',0),(402,1,'2023-05-16 14:12:43','2023-04-28 18:07:15','','Why Avada Hosting','','publish','closed','closed','','why-avada-hosting','','','2023-05-16 14:12:43','2023-04-28 18:07:15','',0,'https://test-site.goodcausepartners.com/?p=402',1,'nav_menu_item','',0),(405,1,'2023-05-16 14:12:43','2023-04-28 18:07:15','','Newsroom','','publish','closed','closed','','newsroom','','','2023-05-16 14:12:43','2023-04-28 18:07:15','',0,'https://test-site.goodcausepartners.com/?p=405',2,'nav_menu_item','',0),(406,1,'2023-05-16 14:12:43','2023-04-28 18:07:15','','Data Center','','publish','closed','closed','','data-center','','','2023-05-16 14:12:43','2023-04-28 18:07:15','',0,'https://test-site.goodcausepartners.com/?p=406',3,'nav_menu_item','',0),(407,1,'2023-05-16 14:12:43','2023-04-28 18:07:15','','Contact Us','','publish','closed','closed','','contact-us','','','2023-05-16 14:12:43','2023-04-28 18:07:15','',0,'https://test-site.goodcausepartners.com/?p=407',4,'nav_menu_item','',0),(408,1,'2023-05-16 14:12:43','2023-04-28 18:09:16','','Affiliate Program','','publish','closed','closed','','affiliate-program','','','2023-05-16 14:12:43','2023-04-28 18:09:16','',0,'https://test-site.goodcausepartners.com/?p=408',5,'nav_menu_item','',0),(410,1,'2023-05-16 14:09:31','2023-04-28 18:12:19','','Read Our Guides','','publish','closed','closed','','read-our-guides','','','2023-05-16 14:09:31','2023-04-28 18:12:19','',0,'https://test-site.goodcausepartners.com/?p=410',1,'nav_menu_item','',0),(411,1,'2023-05-16 14:09:32','2023-04-28 18:12:20','','Control Panel','','publish','closed','closed','','control-panel','','','2023-05-16 14:09:32','2023-04-28 18:12:20','',0,'https://test-site.goodcausepartners.com/?p=411',2,'nav_menu_item','',0),(412,1,'2023-05-16 14:09:32','2023-04-28 18:12:20','','Knowledge Base','','publish','closed','closed','','knowledge-base','','','2023-05-16 14:09:32','2023-04-28 18:12:20','',0,'https://test-site.goodcausepartners.com/?p=412',3,'nav_menu_item','',0),(413,1,'2023-05-16 14:09:32','2023-04-28 18:12:20','','System Status','','publish','closed','closed','','system-status','','','2023-05-16 14:09:32','2023-04-28 18:12:20','',0,'https://test-site.goodcausepartners.com/?p=413',4,'nav_menu_item','',0),(1849,1,'2023-08-23 00:14:25','2023-08-23 00:14:25','[fusion_builder_column type=\"1_1\" layout=\"1_1\" background_blend_mode=\"overlay\" first=\"true\" last=\"true\" hover_type=\"none\" border_position=\"all\" element_content=\"\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" min_height=\"\" link=\"\"][fusion_post_card_image layout=\"static\" custom_aspect_ratio=\"100\" show_title=\"no\" show_cats=\"no\" show_price=\"no\" show_rating=\"no\" show_sale=\"no\" show_outofstock=\"no\" show_buttons=\"no\" image_link=\"no\" image_link_target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" /][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"30px\" padding_right=\"40px\" padding_left=\"10px\" 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=\"on\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\" margin_top=\"10px\" margin_bottom_small=\"20px\" margin_top_small=\"12px\"]Your Content Goes Here[/fusion_title][fusion_tb_meta meta=\"published_date\" layout=\"floated\" display_element_labels=\"yes\" separator=\"\" read_time=\"200\" reading_time_decimal=\"yes\" alignment_medium=\"flex-start\" alignment_small=\"flex-start\" alignment=\"flex-start\" stacked_vertical_align=\"flex-start\" stacked_horizontal_align=\"flex-start\" height=\"36\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" /][fusion_tb_meta meta=\"categories\" layout=\"floated\" read_time=\"200\" reading_time_decimal=\"yes\" alignment_medium=\"flex-start\" alignment_small=\"flex-start\" alignment=\"flex-start\" stacked_vertical_align=\"flex-start\" stacked_horizontal_align=\"flex-start\" height=\"36\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" font_size=\"15px\" border_top=\"0\" border_bottom=\"0\" link_color=\"var(--awb-color4)\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]','News Style 1','','inherit','closed','closed','','763-autosave-v1','','','2023-08-23 00:14:25','2023-08-23 00:14:25','',763,'https://test-site.goodcausepartners.com/?p=1849',0,'revision','',0),(1632,1,'2023-04-14 17:31:25','2023-04-14 17:31:25','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.3\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/hosting/\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"no\" border_position=\"all\" spacing_left=\"0\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"96|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/avada-hosting-hero-1.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"no\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Find Your Domain\" padding_bottom=\"100px\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][fusion_builder_row][fusion_builder_column type=\"1_6\" type=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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=\"20\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"20\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoic2NhbGUiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiMy41IiwibWF4X3NjYWxlIjoiMS44IiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiYm90dG9tIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6ImNlbnRlciIsImVuZF92aWV3cG9ydCI6ImNlbnRlciIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiIiLCJpbmZpbml0ZV9hbmltYXRpb25fc3BlZWQiOiIifSx7InR5cGUiOiJzY3JvbGwiLCJzY3JvbGxfdHlwZSI6IiIsInNjcm9sbF9kaXJlY3Rpb24iOiJ1cCIsInRyYW5zaXRpb25fc3BlZWQiOiIyLjAiLCJmYWRlX3R5cGUiOiIiLCJzY2FsZV90eXBlIjoiIiwiaW5pdGlhbF9zY2FsZSI6IjMuNSIsIm1heF9zY2FsZSI6IjEuOCIsIm1pbl9zY2FsZSI6IiIsImluaXRpYWxfcm90YXRlIjoiIiwiZW5kX3JvdGF0ZSI6IiIsImluaXRpYWxfYmx1ciI6IiIsImVuZF9ibHVyIjoiIiwic3RhcnRfZWxlbWVudCI6ImJvdHRvbSIsInN0YXJ0X3ZpZXdwb3J0IjoiIiwiZW5kX2VsZW1lbnQiOiJjZW50ZXIiLCJlbmRfdmlld3BvcnQiOiIiLCJtb3VzZV9lZmZlY3QiOiIiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoiIiwibW91c2VfZWZmZWN0X3NwZWVkIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uX3NwZWVkIjoiIn1d\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-international\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"hsla(var(--awb-color2-h),var(--awb-color2-s),var(--awb-color2-l),calc(var(--awb-color2-a) - 30%))\" iconcolor_hover=\"hsla(var(--awb-color2-h),var(--awb-color2-s),var(--awb-color2-l),calc(var(--awb-color2-a) - 30%))\" size=\"140\" /][/fusion_builder_column][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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\" content_alignment=\"center\" text_color=\"var(--awb-color5)\" margin_bottom=\"10px\"]\r\n<p>Binte cailuy tiure aliquid enim tempore</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=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]\r\n<p>find your perfect domain</p>\r\n[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_6\" type=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" padding_right=\"100px\" padding_left=\"100px\" margin_bottom=\"60px\" padding_right_small=\"0\" padding_left_small=\"0\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"117\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" type=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" spacing_left=\"0\" spacing_right=\"0\" type_small=\"1_1\" margin_bottom_small=\"20px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color5)\" text_transform=\"lowercase\"].com[/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\" content_alignment=\"center\" margin_bottom=\"5px\"]\r\n<p>Starting from</p>\r\n[/fusion_text][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\" content_alignment=\"center\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\"]$45/year[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" type=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" spacing_left=\"0\" spacing_right=\"0\" border_sizes_left=\"1px\" border_color=\"var(--awb-color2)\" type_small=\"1_1\" margin_bottom_small=\"20px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"hsla(calc(var(--awb-color5-h) + 135),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\" text_transform=\"lowercase\"]\r\n<p>.net</p>\r\n[/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\" content_alignment=\"center\" margin_bottom=\"5px\"]\r\n<p>Starting from</p>\r\n[/fusion_text][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\" content_alignment=\"center\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\"]$40/year[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" type=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" spacing_left=\"0\" spacing_right=\"0\" border_sizes_left=\"1px\" border_color=\"var(--awb-color2)\" type_small=\"1_1\" margin_bottom_small=\"20px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"hsla(calc(var(--awb-color5-h) + 280),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\" text_transform=\"lowercase\"]\r\n<p>.org</p>\r\n[/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\" content_alignment=\"center\" margin_bottom=\"5px\"]\r\n<p>Starting from</p>\r\n[/fusion_text][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\" content_alignment=\"center\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\"]\r\n<p>$35/year</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" type=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" spacing_left=\"0\" spacing_right=\"0\" border_sizes_left=\"1px\" border_color=\"var(--awb-color2)\" type_small=\"1_1\" margin_bottom_small=\"20px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color4)\" text_transform=\"lowercase\"]\r\n<p>.biz</p>\r\n[/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\" content_alignment=\"center\" margin_bottom=\"5px\"]\r\n<p>Starting from</p>\r\n[/fusion_text][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\" content_alignment=\"center\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\"]$40/year[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" type=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" spacing_left=\"0\" spacing_right=\"0\" border_sizes_left=\"1px\" border_color=\"var(--awb-color2)\" type_small=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"hsla(calc(var(--awb-color5-h) + 85),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\" text_transform=\"lowercase\"]\r\n<p>.edu</p>\r\n[/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\" content_alignment=\"center\" margin_bottom=\"5px\"]\r\n<p>Starting from</p>\r\n[/fusion_text][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\" content_alignment=\"center\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\"]\r\n<p>$45/year</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"205|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-graphic-5.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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]Binte cailuy aliquid enim tempore[/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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]lightning-fast hosting that keeps your website running[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>Maecenas arc placerat tempus mor venenatis. Aliquet orci faucibus est ut etsy sociis rutrum dis. Viverra quam lacus dui adipiscing quis justo nibh purus.</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_small=\"1_2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"60px\" text_color=\"var(--awb-color4)\" margin_bottom=\"0\" margin_top=\"0\"]\r\n<p><strong>45%</strong></p>\r\n[/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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]\r\n<p>Growth from last year</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<p>Lorem ipsum tempor</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_small=\"1_2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"60px\" text_color=\"var(--awb-color4)\" margin_bottom=\"0\" margin_top=\"0\"]<strong>50k+</strong>[/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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]\r\n<p>Websites hosted server</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<p>Lorem ipsum tempor</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Hosting Features\"][fusion_builder_row][fusion_builder_column type=\"1_6\" type=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" margin_bottom=\"60px\" min_height=\"\" link=\"\"][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\" content_alignment=\"center\" text_color=\"var(--awb-color5)\" margin_bottom=\"10px\"]\r\n<p>Binte cailuy tiure aliquid enim tempore</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=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]\r\n<p>your website deserves the best - <br />and that\'s what we deliver!</p>\r\n[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_6\" type=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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=\"120\" transform_translate_y=\"20\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"120\" transform_translate_y_hover=\"20\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoic2NhbGUiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiMy41IiwibWF4X3NjYWxlIjoiMSIsIm1pbl9zY2FsZSI6IiIsImluaXRpYWxfcm90YXRlIjoiIiwiZW5kX3JvdGF0ZSI6IiIsImluaXRpYWxfYmx1ciI6IiIsImVuZF9ibHVyIjoiIiwic3RhcnRfZWxlbWVudCI6ImJvdHRvbSIsInN0YXJ0X3ZpZXdwb3J0IjoiIiwiZW5kX2VsZW1lbnQiOiJjZW50ZXIiLCJlbmRfdmlld3BvcnQiOiJjZW50ZXIiLCJtb3VzZV9lZmZlY3QiOiIiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoiIiwibW91c2VfZWZmZWN0X3NwZWVkIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uX3NwZWVkIjoiIn0seyJ0eXBlIjoic2Nyb2xsIiwic2Nyb2xsX3R5cGUiOiJ0cmFuc2l0aW9uIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImxlZnQiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMi4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIzLjUiLCJtYXhfc2NhbGUiOiIxLjAiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoiY2VudGVyIiwiZW5kX3ZpZXdwb3J0IjoiIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-server-solid\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"hsla(var(--awb-color2-h),var(--awb-color2-s),var(--awb-color2-l),calc(var(--awb-color2-a) - 30%))\" iconcolor_hover=\"hsla(var(--awb-color2-h),var(--awb-color2-s),var(--awb-color2-l),calc(var(--awb-color2-a) - 30%))\" size=\"140\" /][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" padding_top=\"70px\" padding_bottom=\"70px\" padding_right=\"45px\" padding_left=\"45px\" background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 95%))\" background_color_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 95%))\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" margin_bottom=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color4)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" icon_hover_type=\"slide\" circlecolor_hover=\"var(--awb-color4)\" border_radius_top_right=\"5px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>maximum performance</p>\r\n[/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\" margin_bottom=\"0\"]Dolore tempore magnid quibus&nbsp; eignismos sint duire taque aute galisum repud ipsum[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" padding_top=\"70px\" padding_bottom=\"70px\" padding_right=\"45px\" padding_left=\"45px\" background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 95%))\" background_color_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 95%))\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" margin_bottom=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-web-protection\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color4)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]safe &amp; secured[/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\" margin_bottom=\"0\"]Dolore tempore magnid quibus&nbsp; eignismos sint duire taque aute galisum repud ipsum[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" padding_top=\"70px\" padding_bottom=\"70px\" padding_right=\"45px\" padding_left=\"45px\" background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 95%))\" background_color_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 95%))\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" margin_bottom=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-personal-computer\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color4)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]99% server uptime[/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\" margin_bottom=\"0\"]Dolore tempore magnid quibus&nbsp; eignismos sint duire taque aute galisum repud ipsum[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" padding_top=\"70px\" padding_bottom=\"70px\" padding_right=\"45px\" padding_left=\"45px\" background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 95%))\" background_color_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 95%))\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom_small=\"40px\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-server\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color4)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>hassle-free setup</p>\r\n[/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\" margin_bottom=\"0\"]Dolore tempore magnid quibus&nbsp; eignismos sint duire taque aute galisum repud ipsum[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" padding_top=\"70px\" padding_bottom=\"70px\" padding_right=\"45px\" padding_left=\"45px\" background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 95%))\" background_color_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 95%))\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom_small=\"40px\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-setting\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color4)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]unmetered bandwidth[/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\" margin_bottom=\"0\"]Dolore tempore magnid quibus&nbsp; eignismos sint duire taque aute galisum repud ipsum[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" padding_top=\"70px\" padding_bottom=\"70px\" padding_right=\"45px\" padding_left=\"45px\" background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 95%))\" background_color_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 95%))\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom_small=\"40px\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-smartphone\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color4)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>dedicated support</p>\r\n[/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\" margin_bottom=\"0\"]Dolore tempore magnid quibus&nbsp; eignismos sint duire taque aute galisum repud ipsum[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1036\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"200px\" admin_label=\"CTA\" link_color=\"var(--awb-color4)\" padding_bottom=\"60px\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" margin_top_small=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_top_medium=\"40px\" padding_top_small=\"120px\" min_height=\"\" link=\"\"][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\" content_alignment=\"center\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"22px\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\"]Fast, reliable, and secure hosting to fast track your business. <a href=\"https://test-site.goodcausepartners.com/contact/\"><b style=\"color: var(--awb-color5);\">Get In Touch With Us</b></a>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Hosting FAQ\'s\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6InRpbHQiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoib3Bwb3NpdGUiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiIiLCJpbmZpbml0ZV9hbmltYXRpb25fc3BlZWQiOiIifV0=\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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=\"center\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\" max_width=\"1000px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.png[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]frequently asked questions[/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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\" content_alignment=\"center\" margin_bottom=\"60px\"]\r\n<p>Dignismos sinte iure taques dolore tempore unde magnis cuibus<br />&nbsp;atque laborum&nbsp;sed knam galisum repudiane</p>\r\n[/fusion_text][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"60px\" padding_right=\"60px\" padding_bottom=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 95%))\" last=\"no\" border_position=\"all\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" min_height=\"\" link=\"\"][fusion_accordion border_size=\"0\" title_tag=\"h4\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" boxed_mode=\"yes\" padding_top=\"10px\" padding_bottom=\"10px\" icon_size=\"18\" icon_box_color=\"var(--awb-color4)\" padding_right=\"10px\" padding_left=\"10px\" hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color1)\" icon_alignment=\"right\"][fusion_toggle title=\"How avada hosting help business succeed?\" open=\"no\"]\r\n<p>Ea tempore aliquam ut commodi possimus ut quasi asperiores. In porro praesentium cum consect edur doloribus accusan tium quos aut dignissimos aspernatur rem dicta nisi. Est neque laborum ad eius itaque ad quas blanditiis ut nemo omnis At dignissimos omnis et omnis earum aut placeat fugit. In libero quasi id quisquam aperiam auty.</p>\r\n[/fusion_toggle][fusion_toggle title=\"what are the hosting packages you offer?\" open=\"no\"]\r\n<p>Ea tempore aliquam ut commodi possimus ut quasi asperiores. In porro praesentium cum consect edur doloribus accusan tium quos aut dignissimos aspernatur rem dicta nisi. Est neque laborum ad eius itaque ad quas blanditiis ut nemo omnis At dignissimos omnis et omnis earum aut placeat fugit. In libero quasi id quisquam aperiam auty.</p>\r\n[/fusion_toggle][fusion_toggle title=\"How do I migrate over to your hosting service?\" open=\"no\"]\r\n<p>Ea tempore aliquam ut commodi possimus ut quasi asperiores. In porro praesentium cum consect edur doloribus accusan tium quos aut dignissimos aspernatur rem dicta nisi. Est neque laborum ad eius itaque ad quas blanditiis ut nemo omnis At dignissimos omnis et omnis earum aut placeat fugit. In libero quasi id quisquam aperiam auty.</p>\r\n[/fusion_toggle][fusion_toggle title=\"Why do I need a website?\" open=\"no\"]\r\n<p>Ea tempore aliquam ut commodi possimus ut quasi asperiores. In porro praesentium cum consect edur doloribus accusan tium quos aut dignissimos aspernatur rem dicta nisi. Est neque laborum ad eius itaque ad quas blanditiis ut nemo omnis At dignissimos omnis et omnis earum aut placeat fugit. In libero quasi id quisquam aperiam auty.</p>\r\n[/fusion_toggle][fusion_toggle title=\"Can I talk to support any time of the day?\" open=\"no\"]\r\n<p>Ea tempore aliquam ut commodi possimus ut quasi asperiores. In porro praesentium cum consect edur doloribus accusan tium quos aut dignissimos aspernatur rem dicta nisi. Est neque laborum ad eius itaque ad quas blanditiis ut nemo omnis At dignissimos omnis et omnis earum aut placeat fugit. In libero quasi id quisquam aperiam auty.</p>\r\n[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1379\"][fusion_global id=\"996\"][fusion_global id=\"1097\"]','Hosting Home','','publish','closed','closed','','hosting-home','','','2023-04-14 17:31:25','2023-04-14 17:31:25','',0,'https://test-site.goodcausepartners.com/?page_id=5',0,'page','',0),(34,1,'2023-05-19 14:55:52','2023-04-14 20:39:32','','Contact','','publish','closed','closed','','contact','','','2023-05-19 14:55:52','2023-04-14 20:39:32','',0,'https://test-site.goodcausepartners.com/?p=34',6,'nav_menu_item','',0),(378,1,'2023-05-24 16:13:24','2023-04-28 16:35:35','','Shared Hosting','','publish','closed','closed','','shared-hosting','','','2023-05-24 16:13:24','2023-04-28 16:35:35','',0,'https://test-site.goodcausepartners.com/?p=378',1,'nav_menu_item','',0),(379,1,'2023-05-24 16:13:24','2023-04-28 16:35:35','','Dedicated Server','','publish','closed','closed','','dedicated-server','','','2023-05-24 16:13:24','2023-04-28 16:35:35','',0,'https://test-site.goodcausepartners.com/?p=379',3,'nav_menu_item','',0),(380,1,'2023-05-24 16:13:24','2023-04-28 16:35:35','','WordPress Hosting','','publish','closed','closed','','wordpress-hosting','','','2023-05-24 16:13:24','2023-04-28 16:35:35','',0,'https://test-site.goodcausepartners.com/?p=380',2,'nav_menu_item','',0),(381,1,'2023-05-24 16:13:24','2023-04-28 16:35:35','','Website Builder','','publish','closed','closed','','website-builder','','','2023-05-24 16:13:24','2023-04-28 16:35:35','',0,'https://test-site.goodcausepartners.com/?p=381',4,'nav_menu_item','',0),(382,1,'2023-05-24 16:13:24','2023-04-28 16:35:35','','VPS / Cloud Hosting','','publish','closed','closed','','vps-cloud-hosting','','','2023-05-24 16:13:24','2023-04-28 16:35:35','',0,'https://test-site.goodcausepartners.com/?p=382',5,'nav_menu_item','',0),(383,1,'2023-05-24 16:13:24','2023-04-28 16:35:35','','Managed Private Server','','publish','closed','closed','','managed-private-server','','','2023-05-24 16:13:24','2023-04-28 16:35:35','',0,'https://test-site.goodcausepartners.com/?p=383',6,'nav_menu_item','',0),(529,1,'2023-05-05 17:05:15','2023-05-05 17:05: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=\"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_repeat=\"no-repeat\" fade=\"yes\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Image Section\" background_image=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/06/hosting-hero-image-2.jpg\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),calc(var(--awb-color5-a) - 10%))\" gradient_end_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),calc(var(--awb-color5-a) - 60%))\" background_image_medium=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/06/hosting-hero-image-mobile-3.jpg\" background_position_small=\"left top\" background_position_medium=\"center center\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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.00\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_top=\"11vw\" margin_bottom=\"8.5vw\" type_small=\"2_3\" margin_top_medium=\"15vw\" margin_top_small=\"18vw\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"capitalize\" content_alignment=\"center\"]\r\n<p>hosting that\'s affordable and efficient</p>\r\n[/fusion_text][fusion_separator style_type=\"single|dotted\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"62px\" bottom_margin=\"15px\" top_margin=\"5px\" sep_color=\"var(--awb-color4)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" 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\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"50px\" margin_right=\"50px\" margin_left=\"50px\"]your website deserves the best hosting services[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner type=\"2_5\" type=\"2_5\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" alignment=\"right\" link=\"https://test-site.goodcausepartners.com/about/\"]learn more[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"2_5\" type=\"2_5\" 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\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_top_small=\"40px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" alignment=\"right\" alignment_small=\"center\"]hosting plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_6\" type=\"1_6\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-setting\" spin=\"yes\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" alignment=\"center\" circle=\"no\" size=\"50\" icon_hover_type=\"fade\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"2_5\" type=\"2_5\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" line_height=\"var(--awb-typography5-line-height)\" margin_bottom=\"25px\" text_color=\"var(--awb-color1)\"]Need help? Call Us[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"26px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\" text_color=\"var(--awb-color1)\"]\r\n<p><strong>(010) 456 7890</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"2_5\" type=\"2_5\" 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\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_top_small=\"20px\" padding_bottom_small=\"20px\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography5-line-height)\" margin_bottom=\"35px\" content_alignment_small=\"center\"]Need help? Call Us[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"26px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\" text_color=\"var(--awb-color1)\" content_alignment_small=\"center\"]\r\n<p><strong>(010) 456 7890</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Info Banner Domain Search\"][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\" padding_right=\"50px\" padding_left=\"50px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" background_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 50%),var(--awb-color5-a))\" border_color=\"var(--awb-color4)\" border_color_hover=\"var(--awb-color5)\" last=\"no\" border_position=\"all\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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=\"parent\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"20\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_bottom=\"40px\" last=\"no\" border_position=\"all\" padding_right=\"20px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]get the ultimate hosting plans and experience[/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\" margin_bottom=\"10px\"]\r\n<p>Lacus quis id proin blandit. At sodales vitae duim pharetra. Mollis leo scelerisque auctor odio. Aliqua met ipan faucibus.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"2_5\" type=\"2_5\" align_self=\"stretch\" content_layout=\"column\" 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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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=\"parent\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"-20\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"579|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/user-with-laptop-1.png[/fusion_imageframe][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"right bottom\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" background_color=\"hsla(calc(var(--awb-color5-h) + 12),var(--awb-color5-s),calc(var(--awb-color5-l) - 25%),var(--awb-color5-a))\" padding_top=\"32px\" padding_right=\"35px\" padding_bottom=\"42px\" padding_left=\"35px\" background_image=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/hosting-banner-bg-2.png\" background_repeat=\"no-repeat\" background_size=\"custom\" background_custom_size=\"45%\" background_color_hover=\"hsla(calc(var(--awb-color5-h) + 12),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" link=\"https://test-site.goodcausepartners.com/hosting/vps-cloud-hosting/\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_top_small=\"60px\" background_image_medium=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/hosting-banner-bg-2.png\" background_position_medium=\"right bottom\" background_repeat_medium=\"no-repeat\" background_size_medium=\"custom\" background_custom_size_medium=\"45%\" background_image_small=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/hosting-banner-bg-2.png\" background_position_small=\"right bottom\" background_repeat_small=\"no-repeat\" background_size_small=\"custom\" background_custom_size_small=\"45%\" min_height=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]get VPS cloud hosting[/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\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 30%))\" fusion_font_variant_text_font=\"400\" text_transform=\"var(--awb-typography3-text-transform)\" line_height=\"1\"]\r\n<p>Starts only 3.99 / Month</p>\r\n[/fusion_text][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"var(--awb-color1)\" item_padding_top=\"0px\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Unlimited Bandwidth[/fusion_li_item][fusion_li_item]\r\n<p>99% server uptime</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Safe &amp; Secure</p>\r\n[/fusion_li_item][/fusion_checklist][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_top=\"50px\" background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 95%))\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" padding_top=\"60px\" padding_bottom=\"60px\" padding_right=\"120px\" padding_left=\"120px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 80%))\" border_color_hover=\"var(--awb-color4)\" min_height=\"\" link=\"\"][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\" content_alignment=\"center\" text_color=\"var(--awb-color5)\" margin_bottom=\"10px\"]\r\n<p>Binte cailuy tiure aliquid enim tempore</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=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"40px\"]\r\n<p>find your perfect domain</p>\r\n[/fusion_title][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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" margin_bottom=\"40px\" margin_top_small=\"40px\" min_height=\"\" link=\"\"][fusion_form form_post_id=\"117\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_builder_row_inner][fusion_builder_column_inner 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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color5)\" text_transform=\"lowercase\"].com[/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\" content_alignment=\"center\" margin_bottom=\"5px\"]\r\n<p>Starting from</p>\r\n[/fusion_text][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\" content_alignment=\"center\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\"]$45/year[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"hsla(calc(var(--awb-color5-h) + 135),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\" text_transform=\"lowercase\"]\r\n<p>.net</p>\r\n[/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\" content_alignment=\"center\" margin_bottom=\"5px\"]\r\n<p>Starting from</p>\r\n[/fusion_text][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\" content_alignment=\"center\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\"]$40/year[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"hsla(calc(var(--awb-color5-h) + 280),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\" text_transform=\"lowercase\"]\r\n<p>.org</p>\r\n[/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\" content_alignment=\"center\" margin_bottom=\"5px\"]\r\n<p>Starting from</p>\r\n[/fusion_text][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\" content_alignment=\"center\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\"]$35/year[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color4)\" text_transform=\"lowercase\"]\r\n<p>.biz</p>\r\n[/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\" content_alignment=\"center\" margin_bottom=\"5px\"]\r\n<p>Starting from</p>\r\n[/fusion_text][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\" content_alignment=\"center\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\"]\r\n<p>$40/year</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"hsla(calc(var(--awb-color5-h) + 85),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\" text_transform=\"lowercase\"]\r\n<p>.edu</p>\r\n[/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\" content_alignment=\"center\" margin_bottom=\"5px\"]\r\n<p>Starting from</p>\r\n[/fusion_text][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\" content_alignment=\"center\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\"]$45/year[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Features\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-smartphone\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]\r\n<p>maximum <br />performance</p>\r\n[/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\"]Dignismos sint duire atcque<br />\r\ndolore tempor sedip magnis<br />\r\ngalisum repud ipsum.[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-cloud-hosting\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]\r\n<p>fully secure <br />data centers</p>\r\n[/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\"]Dignismos sint duire atcque<br />\r\ndolore tempor sedip magnis<br />\r\ngalisum repud ipsum.[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]\r\n<p>DDos attack <br />prevention</p>\r\n[/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\"]Dignismos sint duire atcque<br />\r\ndolore tempor sedip magnis<br />\r\ngalisum repud ipsum.[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-web-protection\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]\r\n<p>get unmetered <br />bandwidth</p>\r\n[/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\"]Dignismos sint duire atcque<br />\r\ndolore tempor sedip magnis<br />\r\ngalisum repud ipsum.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Plans\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"100px\" padding_bottom=\"120px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" margin_top=\"80px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom=\"80px\" margin_bottom_small=\"20px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\" text_color=\"var(--awb-color1)\"]\r\n<p>our hosting is designed to take your website to next level</p>\r\n[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" padding_left=\"40px\" last=\"no\" border_position=\"all\" padding_left_small=\"0\" padding_bottom_small=\"40px\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color1)\"]\r\n<p>Dignismos sinte iure taque dolorem tempore magnis cuibusdam sed knam galisum repudiane</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/hosting/\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\" button_gradient_top_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" button_gradient_bottom_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" accent_color=\"var(--awb-color4)\" 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_gradient_bottom_color_hover=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" accent_hover_color=\"var(--awb-color5)\" padding_left=\"0\" border_color=\"var(--awb-color4)\" border_hover_color=\"var(--awb-color5)\"]view all hosting plans[/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\" padding_top=\"30px\" padding_bottom=\"30px\" padding_left=\"50px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" border_color_hover=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" margin_bottom=\"60px\" border_radius_bottom_left=\"5px\" type_medium=\"1_2\" padding_right_medium=\"20px\" border_sizes_top=\"0\" border_sizes_right=\"0\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiaW4iLCJzY2FsZV90eXBlIjoiIiwiaW5pdGlhbF9zY2FsZSI6IiIsIm1heF9zY2FsZSI6IiIsIm1pbl9zY2FsZSI6IiIsImluaXRpYWxfcm90YXRlIjoiIiwiZW5kX3JvdGF0ZSI6IiIsImluaXRpYWxfYmx1ciI6IiIsImVuZF9ibHVyIjoiIiwic3RhcnRfZWxlbWVudCI6IiIsInN0YXJ0X3ZpZXdwb3J0IjoiIiwiZW5kX2VsZW1lbnQiOiJ0b3AiLCJlbmRfdmlld3BvcnQiOiJjZW50ZXIiLCJtb3VzZV9lZmZlY3QiOiIiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoiIiwibW91c2VfZWZmZWN0X3NwZWVkIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uX3NwZWVkIjoiIn1d\" link=\"https://test-site.goodcausepartners.com/hosting/shared-hosting/\" min_height=\"\"][fusion_imageframe custom_aspect_ratio=\"56\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"170|full\" margin_bottom_small=\"40px\" margin_bottom=\"30px\" max_width=\"125px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/shared-hosting.png[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\" text_color=\"var(--awb-color1)\"]\r\n<p>shared hosting</p>\r\n[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"var(--awb-color5)\"]Starts at $1.50 / Mo[/fusion_text][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\" text_color=\"var(--awb-color1)\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" padding_bottom=\"30px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" padding_top=\"30px\" border_color_hover=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" border_radius_bottom_left=\"5px\" type_medium=\"1_2\" margin_bottom=\"60px\" padding_right_medium=\"20px\" border_sizes_top=\"0\" border_sizes_right=\"0\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" link=\"https://test-site.goodcausepartners.com/hosting/wordpress-hosting/\" min_height=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"168|full\" max_width=\"119px\" margin_bottom_small=\"40px\" margin_bottom=\"30px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/wordpress-hosting.png[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\" text_color=\"var(--awb-color1)\"]wordPress hosting[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"var(--awb-color5)\"]Starts at $3.75 / Mo[/fusion_text][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\" text_color=\"var(--awb-color1)\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" padding_bottom=\"30px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" padding_top=\"30px\" border_color_hover=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" border_radius_bottom_left=\"5px\" type_medium=\"1_2\" margin_bottom=\"60px\" padding_right_medium=\"20px\" border_sizes_top=\"0\" border_sizes_right=\"0\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" link=\"https://test-site.goodcausepartners.com/hosting/dedicated-server/\" min_height=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"169|full\" max_width=\"125px\" margin_bottom_small=\"40px\" margin_bottom=\"30px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/dedicated-server.png[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\" text_color=\"var(--awb-color1)\"]dedicated server[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"var(--awb-color5)\"]Starts at $6.90 / Mo[/fusion_text][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\" text_color=\"var(--awb-color1)\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" padding_bottom=\"30px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" padding_top=\"30px\" border_color_hover=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" border_radius_bottom_left=\"5px\" type_medium=\"1_2\" margin_bottom_small=\"60px\" padding_right_medium=\"20px\" border_sizes_top=\"0\" border_sizes_right=\"0\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" link=\"https://test-site.goodcausepartners.com/hosting/vps-cloud-hosting/\" min_height=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"171|full\" max_width=\"125px\" margin_bottom_small=\"40px\" margin_bottom=\"30px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/vps-hosting.png[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\" text_color=\"var(--awb-color1)\"]\r\n<p>VPS / cloud hosting</p>\r\n[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"var(--awb-color5)\"]\r\n<p>Starts at $2.35 / Mo</p>\r\n[/fusion_text][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\" text_color=\"var(--awb-color1)\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" padding_bottom=\"30px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" padding_top=\"30px\" border_color_hover=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" border_radius_bottom_left=\"5px\" type_medium=\"1_2\" margin_bottom_small=\"60px\" padding_right_medium=\"20px\" border_sizes_top=\"0\" border_sizes_right=\"0\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" link=\"https://test-site.goodcausepartners.com/hosting/managed-private-server/\" min_height=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"193|full\" max_width=\"119px\" margin_bottom_small=\"40px\" margin_bottom=\"30px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/managed-servers.png[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\" text_color=\"var(--awb-color1)\"]\r\n<p>managed private server</p>\r\n[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"var(--awb-color5)\"]\r\n<p>Starts at $4.70 / Mo</p>\r\n[/fusion_text][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\" text_color=\"var(--awb-color1)\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" padding_bottom=\"30px\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" padding_top=\"40px\" border_color_hover=\"var(--awb-color1)\" last=\"no\" border_position=\"all\" padding_right=\"50px\" background_color=\"hsla(calc(var(--awb-color5-h) + 12),var(--awb-color5-s),calc(var(--awb-color5-l) - 25%),var(--awb-color5-a))\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" type_medium=\"1_2\" padding_bottom_small=\"45px\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<p>your website, our expertise.</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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"60px\" text_color=\"var(--awb-color4)\" margin_bottom=\"0\" line_height=\"1.4\"]<strong>8.6k</strong>[/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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\" margin_top=\"-5px\"]\r\n<p>Registered Domains</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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"60px\" text_color=\"hsla(calc(var(--awb-color5-h) + 280),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\" margin_bottom=\"0\" line_height=\"1.4\"]<strong>12.5k</strong>[/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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\" margin_top=\"-5px\"]Happy Customers[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"no\" border_position=\"all\" padding_top_small=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]importance of backup and recovery in web hosting[/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\" margin_bottom=\"0\"]Maecenas arcu placerat tempus venenatis. Orci aliquet faucibus estut etsy sociis rutrum dis. Viverra quam lacus duis.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-global-servers\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"60\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]\r\n<p>fast global servers</p>\r\n[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\"]\r\n<p>Lorem ipsum tempore</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-web-analytics\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"60\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]website analytics[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\"]\r\n<p>Lorem ipsum tempore</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]start free trial[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\" line_height=\"var(--awb-typography5-line-height)\" margin_top=\"10px\"]* No credit card required[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 2\" padding_bottom=\"80px\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]\r\n<p>efficient and reliable cloud hosting for your website</p>\r\n[/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\" margin_bottom=\"0\"]\r\n<p>Maecenas placerat tempus venenatis. Orci aliquet faucibus estutas etsy sociis rutrum dis. Viverra quam lacus dui adipiscing quis justo sed ipsum lorem nibh purus.</p>\r\n[/fusion_text][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color5)\" item_padding_bottom=\"12px\" margin_top=\"30px\"][fusion_li_item]\r\n<p><strong>Maximize your website\'s potential</strong></p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p><strong>Get the speed and performance you need</strong></p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p><strong>Future-proof your website with hosting technology</strong></p>\r\n[/fusion_li_item][/fusion_checklist][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]get started today[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\" line_height=\"var(--awb-typography5-line-height)\" margin_top=\"10px\"]* No credit card required[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"988\"][fusion_global id=\"1083\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"News Articles\" margin_bottom=\"100px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" margin_bottom=\"80px\" margin_bottom_small=\"20px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]get excellent customer support and personalized solutions[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" padding_left=\"40px\" last=\"no\" border_position=\"all\" padding_left_small=\"0\" padding_bottom_small=\"40px\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>Dignismos sinte iure taque dolorem tempore magnis cuibusdam sed knam galisum repudiane</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/blog/\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\" button_gradient_top_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" button_gradient_bottom_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" accent_color=\"var(--awb-color4)\" 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_gradient_bottom_color_hover=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" accent_hover_color=\"var(--awb-color5)\" padding_left=\"0\" border_color=\"var(--awb-color4)\" border_hover_color=\"var(--awb-color5)\"]more articles &amp; updates[/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom=\"20px\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"2\" offset=\"3\" 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\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"2\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"814\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"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\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Hosting Home Alternate','','publish','closed','closed','','hosting-home-alternate','','','2023-05-05 17:05:15','2023-05-05 17:05:15','',0,'https://test-site.goodcausepartners.com/?page_id=529',0,'page','',0),(903,1,'2023-05-11 16:23:35','2023-05-11 16:23:35','[fusion_builder_container type=\"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 top\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Image Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),calc(var(--awb-color5-a) - 15%))\" gradient_end_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),calc(var(--awb-color5-a) - 40%))\" menu_anchor=\"domain-search\" background_image=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/06/register-domain-2.jpg\" background_position_medium=\"right top\"][fusion_builder_row][fusion_builder_column type=\"3_4\" type=\"3_4\" layout=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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.00\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" margin_top=\"11vw\" margin_bottom=\"7vw\" type_small=\"5_6\" margin_top_medium=\"15vw\" margin_top_small=\"18vw\" first=\"true\" type_medium=\"3_4\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_bottom=\"10px\"]Get start with a domain name[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"capitalize\" content_alignment=\"center\" margin_bottom=\"50px\"]search you new domain name here[/fusion_text][fusion_form form_post_id=\"117\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][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\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\" margin_top=\"30px\"]\r\n<p>* Get free Privacy &amp; DDoS Protection with every domain registered.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" animation_speed=\"1.0\" animation_delay=\"0.5\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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=\"hsla(calc(var(--awb-color4-h) + 240),var(--awb-color4-s),calc(var(--awb-color4-l) + 5%),var(--awb-color4-a))\" link_color=\"var(--awb-color4)\" admin_label=\"Flash Deal \" animation_type=\"reveal\" padding_top=\"20px\" padding_bottom=\"5px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_text animation_direction=\"left\" animation_color=\"var(--awb-color6)\" animation_speed=\"1.0\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"var(--awb-color3)\" content_alignment=\"center\"]Get 30% off on shared hosting plan with free domain. <a href=\"https://bit.ly/3pcsDfq\">Subscribe Today!</a>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Domain Names\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][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\" content_alignment=\"center\" text_color=\"var(--awb-color5)\" margin_bottom=\"10px\"]\r\n<p>Binte cailuy tiure aliquid enim tempore</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=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"60px\"]popular domain names at less[/fusion_title][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" padding_top=\"25px\" padding_bottom=\"50px\" padding_right=\"45px\" padding_left=\"45px\" background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 95%))\" background_color_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 95%))\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" margin_bottom=\"50px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color5)\" text_transform=\"lowercase\" font_size=\"52px\" line_height=\"1\"].com[/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\" margin_bottom=\"0\"]Identifies your website on the internet[/fusion_text][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\" margin_bottom=\"20px\" margin_top=\"20px\"]\r\n<p>Starting from</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"400\" font_size=\"40px\" line_height=\"1\"]$9.99<span style=\"font-size: 26px;\" data-fusion-font=\"true\">/year</span>[/fusion_text][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color5)\" button_gradient_bottom_color_hover=\"var(--awb-color5)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"var(--awb-color1)\" button_gradient_bottom_color=\"var(--awb-color1)\" accent_color=\"var(--awb-color4)\" border_color=\"var(--awb-color4)\"]15% off[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" padding_top=\"25px\" padding_bottom=\"50px\" padding_right=\"45px\" padding_left=\"45px\" background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 95%))\" background_color_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 95%))\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" margin_bottom=\"50px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"hsla(calc(var(--awb-color5-h) + 135),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\" text_transform=\"lowercase\" font_size=\"52px\" line_height=\"1\"]\r\n<p>.net</p>\r\n[/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\" margin_bottom=\"0\"]Identifies your website on the internet[/fusion_text][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\" margin_bottom=\"20px\" margin_top=\"20px\"]\r\n<p>Starting from</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"400\" font_size=\"40px\" line_height=\"1\"]$4.50<span style=\"font-size: 26px;\" data-fusion-font=\"true\">/year</span>[/fusion_text][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color5)\" button_gradient_bottom_color_hover=\"var(--awb-color5)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"var(--awb-color1)\" button_gradient_bottom_color=\"var(--awb-color1)\" accent_color=\"var(--awb-color4)\" border_color=\"var(--awb-color4)\"]8% off[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" padding_top=\"25px\" padding_bottom=\"50px\" padding_right=\"45px\" padding_left=\"45px\" background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 95%))\" background_color_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 95%))\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" margin_bottom=\"50px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"hsla(calc(var(--awb-color5-h) + 280),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\" text_transform=\"lowercase\" font_size=\"52px\" line_height=\"1\"].org[/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\" margin_bottom=\"0\"]Identifies your website on the internet[/fusion_text][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\" margin_bottom=\"20px\" margin_top=\"20px\"]\r\n<p>Starting from</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"400\" font_size=\"40px\" line_height=\"1\"]$6.99<span style=\"font-size: 26px;\" data-fusion-font=\"true\">/year</span>[/fusion_text][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color5)\" button_gradient_bottom_color_hover=\"var(--awb-color5)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"var(--awb-color1)\" button_gradient_bottom_color=\"var(--awb-color1)\" accent_color=\"var(--awb-color4)\" border_color=\"var(--awb-color4)\"]10% off[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" padding_top=\"25px\" padding_bottom=\"50px\" padding_right=\"45px\" padding_left=\"45px\" background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 95%))\" background_color_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 95%))\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" margin_bottom=\"50px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color4)\" text_transform=\"lowercase\" font_size=\"52px\" line_height=\"1\"]\r\n<p>.biz</p>\r\n[/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\" margin_bottom=\"0\"]Identifies your website on the internet[/fusion_text][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\" margin_bottom=\"20px\" margin_top=\"20px\"]\r\n<p>Starting from</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"400\" font_size=\"40px\" line_height=\"1\"]$3.99<span style=\"font-size: 26px;\" data-fusion-font=\"true\">/year</span>[/fusion_text][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color5)\" button_gradient_bottom_color_hover=\"var(--awb-color5)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"var(--awb-color1)\" button_gradient_bottom_color=\"var(--awb-color1)\" accent_color=\"var(--awb-color4)\" border_color=\"var(--awb-color4)\"]10% off[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" padding_top=\"25px\" padding_bottom=\"50px\" padding_right=\"45px\" padding_left=\"45px\" background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 95%))\" background_color_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 95%))\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" margin_bottom=\"50px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"hsla(calc(var(--awb-color5-h) + 85),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\" text_transform=\"lowercase\" font_size=\"52px\" line_height=\"1\"]\r\n<p>.edu</p>\r\n[/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\" margin_bottom=\"0\"]Identifies your website on the internet[/fusion_text][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\" margin_bottom=\"20px\" margin_top=\"20px\"]\r\n<p>Starting from</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"400\" font_size=\"40px\" line_height=\"1\"]$15.99<span style=\"font-size: 26px;\" data-fusion-font=\"true\">/year</span>[/fusion_text][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color5)\" button_gradient_bottom_color_hover=\"var(--awb-color5)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"var(--awb-color1)\" button_gradient_bottom_color=\"var(--awb-color1)\" accent_color=\"var(--awb-color4)\" border_color=\"var(--awb-color4)\"]20% off[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" padding_top=\"25px\" padding_bottom=\"50px\" padding_right=\"45px\" padding_left=\"45px\" background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 95%))\" background_color_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 95%))\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" margin_bottom=\"50px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" type_medium=\"1_2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"hsla(calc(var(--awb-color5-h) - 20),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\" text_transform=\"lowercase\" font_size=\"52px\" line_height=\"1\"]\r\n<p>.xyz</p>\r\n[/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\" margin_bottom=\"0\"]Identifies your website on the internet[/fusion_text][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\" margin_bottom=\"20px\" margin_top=\"20px\"]\r\n<p>Starting from</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"400\" font_size=\"40px\" line_height=\"1\"]$8.99<span style=\"font-size: 26px;\" data-fusion-font=\"true\">/year</span>[/fusion_text][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color5)\" button_gradient_bottom_color_hover=\"var(--awb-color5)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"var(--awb-color1)\" button_gradient_bottom_color=\"var(--awb-color1)\" accent_color=\"var(--awb-color4)\" border_color=\"var(--awb-color4)\"]15% off[/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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"3\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Domain Features\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"100px\" padding_bottom=\"100px\" pattern_bg_size=\"50%\" pattern_bg_color=\"var(--awb-color1)\" margin_top=\"50px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" type_medium=\"1_1\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]Binte cailuy aliquid enim tempore[/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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]\r\n<p>trusted by potential visitors</p>\r\n[/fusion_title][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\" margin_top=\"20px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.png[/fusion_imageframe][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_top=\"40px\"]\r\n<p>Maecenas arc placerat tempus mor venenatis. Aliquet orci faucibus est ut etsy sociis rutrum dis. Viverra quam lacus dui adipiscing quis justo sed.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" margin_bottom=\"10px\" link=\"#domain-search\" class=\"fusion-menu\"]search a domain[/fusion_button][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_medium=\"5_6\" padding_top_medium=\"40px\" padding_left=\"20px\" padding_top=\"20px\" min_height=\"\" link=\"\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_right=\"20px\" margin_bottom=\"60px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-online-identity\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color1)\" size=\"70\" margin_bottom=\"20px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\" text_color=\"var(--awb-color1)\"]\r\n<p>establishes online identity</p>\r\n[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" margin_top=\"10px\"]\r\n<p>Sed ipsum tempore dut</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_bottom=\"60px\" padding_right=\"20px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-global-servers\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color1)\" size=\"70\" margin_bottom=\"20px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\" text_color=\"var(--awb-color1)\"]get easy website relocation[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" margin_top=\"10px\"]\r\n<p>Sed ipsum tempore dut</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_right=\"20px\" last=\"no\" border_position=\"all\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-web-analytics\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color1)\" size=\"70\" margin_bottom=\"20px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\" text_color=\"var(--awb-color1)\"]\r\n<p>improve search engine rankings</p>\r\n[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" margin_top=\"10px\"]\r\n<p>Sed ipsum tempore dut</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_right=\"20px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-secure-business\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color1)\" size=\"70\" margin_bottom=\"20px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\" text_color=\"var(--awb-color1)\"]Protect &amp; secure your business[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 20%))\" margin_top=\"10px\"]\r\n<p>Sed ipsum tempore dut</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"988\"][fusion_global id=\"996\"][fusion_global id=\"1097\"]','Domains','','publish','closed','closed','','domains','','','2023-05-11 16:23:35','2023-05-11 16:23:35','',0,'https://test-site.goodcausepartners.com/?page_id=903',0,'page','',0);
INSERT INTO `wp_gc2023posts` VALUES (1004,1,'2023-05-12 14:10:44','2023-05-12 14:10:44','[fusion_global id=\"1017\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),calc(var(--awb-color8-l) - 8%),var(--awb-color8-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 80%))\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"150\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"fixed\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" background_image=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-image-1.jpg\" padding_top=\"9vw\" padding_bottom=\"9vw\" admin_label=\"Parallax BG\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_medium=\"5_6\" padding_left_medium=\"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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" font_size=\"52px\" margin_bottom=\"40px\" margin_bottom_small=\"40px\"]get unbeatable uptime with our hosting services[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" type=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" margin_right=\"20px\" line_height=\"1\"]Trusted reviews&nbsp; 4.9/5.0[/fusion_text][fusion_fontawesome icon=\"fusion-prefix-hosting-template-star\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"20\" iconcolor_hover=\"var(--awb-color4)\" margin_right=\"2px\" /][fusion_fontawesome icon=\"fusion-prefix-hosting-template-star\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"20\" iconcolor_hover=\"var(--awb-color4)\" margin_right=\"2px\" /][fusion_fontawesome icon=\"fusion-prefix-hosting-template-star\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"20\" iconcolor_hover=\"var(--awb-color4)\" margin_right=\"2px\" /][fusion_fontawesome icon=\"fusion-prefix-hosting-template-star\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"20\" iconcolor_hover=\"var(--awb-color4)\" margin_right=\"2px\" /][fusion_fontawesome icon=\"fusion-prefix-hosting-template-star\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"20\" iconcolor_hover=\"var(--awb-color4)\" margin_right=\"2px\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"60\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Features\" padding_top=\"100px\" pattern_bg_color=\"var(--awb-color1)\" pattern_bg_size=\"85%\"][fusion_builder_row][fusion_builder_column type=\"1_6\" type=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" margin_bottom=\"60px\" min_height=\"\" link=\"\"][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\" content_alignment=\"center\" text_color=\"var(--awb-color5)\" margin_bottom=\"10px\"]\r\n<p>Binte cailuy tiure aliquid enim tempore</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=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]\r\n<p>top-notch &amp; fastest Server locations</p>\r\n[/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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\" content_alignment=\"center\"]\r\n<p>Dignismos sinte iure taques dolore tempore unde magnis cuibus<br />&nbsp;atque laborum&nbsp;sed knam galisum repudiane</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" type=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-smartphone\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color5)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]\r\n<p>maximum <br />performance</p>\r\n[/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\" content_alignment=\"center\"]Dignismos sint duire atcque<br />\r\ndolore tempor sedip magnis<br />\r\ngalisum repud ipsum.[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-cloud-hosting\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color5)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]\r\n<p>fully secure <br />data centers</p>\r\n[/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\" content_alignment=\"center\"]Dignismos sint duire atcque<br />\r\ndolore tempor sedip magnis<br />\r\ngalisum repud ipsum.[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color5)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]\r\n<p>DDos attack <br />prevention</p>\r\n[/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\" content_alignment=\"center\"]Dignismos sint duire atcque<br />\r\ndolore tempor sedip magnis<br />\r\ngalisum repud ipsum.[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-web-protection\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color5)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]\r\n<p>get unmetered <br />bandwidth</p>\r\n[/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\" content_alignment=\"center\"]Dignismos sint duire atcque<br />\r\ndolore tempor sedip magnis<br />\r\ngalisum repud ipsum.[/fusion_text][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom=\"50px\" border_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 80%))\" margin_top=\"50px\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 80%))\" /][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"18px\"][fusion_li_item]<strong>Empowering your website</strong>[/fusion_li_item][fusion_li_item]<strong>Offering 24/7 live expert support</strong>[/fusion_li_item][/fusion_checklist][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"18px\"][fusion_li_item]<strong>Flexible hosting options &amp; plans</strong>[/fusion_li_item][fusion_li_item]\r\n<p><strong>Performance without compromise</strong></p>\r\n[/fusion_li_item][/fusion_checklist][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"18px\"][fusion_li_item]<strong>Get fastest cloud hosting</strong>[/fusion_li_item][fusion_li_item]<strong>Migrate from previous host easily</strong>[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1036\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"200px\" admin_label=\"CTA\" link_color=\"var(--awb-color4)\" padding_bottom=\"60px\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" margin_top_small=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_top_medium=\"40px\" padding_top_small=\"120px\" min_height=\"\" link=\"\"][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\" content_alignment=\"center\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"22px\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\"]Fast, reliable, and secure hosting to fast track your business. <a href=\"https://test-site.goodcausepartners.com/contact\"><b style=\"color: var(--awb-color5);\">Get In Touch With Us</b></a>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Hosting FAQ\'s\" margin_bottom=\"100px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6InRpbHQiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoib3Bwb3NpdGUiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiIiLCJpbmZpbml0ZV9hbmltYXRpb25fc3BlZWQiOiIifV0=\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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=\"center\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\" max_width=\"1000px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.png[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]frequently asked questions[/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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\" content_alignment=\"center\" margin_bottom=\"60px\"]\r\n<p>Dignismos sinte iure taques dolore tempore unde magnis cuibus<br />&nbsp;atque laborum&nbsp;sed knam galisum repudiane</p>\r\n[/fusion_text][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"60px\" padding_right=\"60px\" padding_bottom=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 95%))\" last=\"no\" border_position=\"all\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" min_height=\"\" link=\"\"][fusion_accordion border_size=\"0\" title_tag=\"h4\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" boxed_mode=\"yes\" padding_top=\"10px\" padding_bottom=\"10px\" icon_size=\"18\" icon_box_color=\"var(--awb-color4)\" padding_right=\"10px\" padding_left=\"10px\" hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color1)\" icon_alignment=\"right\"][fusion_toggle title=\"How avada hosting help business succeed?\" open=\"no\"]\r\n<p>Ea tempore aliquam ut commodi possimus ut quasi asperiores. In porro praesentium cum consect edur doloribus accusan tium quos aut dignissimos aspernatur rem dicta nisi. Est neque laborum ad eius itaque ad quas blanditiis ut nemo omnis At dignissimos omnis et omnis earum aut placeat fugit. In libero quasi id quisquam aperiam auty.</p>\r\n[/fusion_toggle][fusion_toggle title=\"what are the hosting packages you offer?\" open=\"no\"]\r\n<p>Ea tempore aliquam ut commodi possimus ut quasi asperiores. In porro praesentium cum consect edur doloribus accusan tium quos aut dignissimos aspernatur rem dicta nisi. Est neque laborum ad eius itaque ad quas blanditiis ut nemo omnis At dignissimos omnis et omnis earum aut placeat fugit. In libero quasi id quisquam aperiam auty.</p>\r\n[/fusion_toggle][fusion_toggle title=\"How do I migrate over to your hosting service?\" open=\"no\"]\r\n<p>Ea tempore aliquam ut commodi possimus ut quasi asperiores. In porro praesentium cum consect edur doloribus accusan tium quos aut dignissimos aspernatur rem dicta nisi. Est neque laborum ad eius itaque ad quas blanditiis ut nemo omnis At dignissimos omnis et omnis earum aut placeat fugit. In libero quasi id quisquam aperiam auty.</p>\r\n[/fusion_toggle][fusion_toggle title=\"Why do I need a website?\" open=\"no\"]\r\n<p>Ea tempore aliquam ut commodi possimus ut quasi asperiores. In porro praesentium cum consect edur doloribus accusan tium quos aut dignissimos aspernatur rem dicta nisi. Est neque laborum ad eius itaque ad quas blanditiis ut nemo omnis At dignissimos omnis et omnis earum aut placeat fugit. In libero quasi id quisquam aperiam auty.</p>\r\n[/fusion_toggle][fusion_toggle title=\"Can I talk to support any time of the day?\" open=\"no\"]\r\n<p>Ea tempore aliquam ut commodi possimus ut quasi asperiores. In porro praesentium cum consect edur doloribus accusan tium quos aut dignissimos aspernatur rem dicta nisi. Est neque laborum ad eius itaque ad quas blanditiis ut nemo omnis At dignissimos omnis et omnis earum aut placeat fugit. In libero quasi id quisquam aperiam auty.</p>\r\n[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Hosting','','publish','closed','closed','','hosting','','','2023-05-12 14:10:44','2023-05-12 14:10:44','',0,'https://test-site.goodcausepartners.com/?page_id=1004',0,'page','',0),(1068,1,'2023-05-15 18:38:03','2023-05-15 18:38: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][fusion_builder_row][fusion_builder_column type=\"60\" type=\"60\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]About Good Cause Marketing Partners[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Where Passion for Effective Marketing Meets Dedication to Societal Impact</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>At Good Cause Marketing Partners, we stand proud as a leading boutique integrated marketing communications agency, tailor-made for the unique demands of both businesses and nonprofits. Our vision is crystallized in our relentless pursuit to weave compelling narratives that enhance visibility and foster growth. </p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Explore Our Services[/fusion_button][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1819|full\" max_width=\"600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/whoweare-intro.webp[/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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\" padding_bottom=\"65\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"40\"]Our Expertise Spans a Range of Specialized Areas[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"24\" type=\"24\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" 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\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Strategy &amp; Branding[/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\" content_alignment=\"center\"]\r\n<p>Shaping identities that capture attention, resonate, and linger.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"23.00\" type=\"23.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-bullhorn fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Marketing &amp; Communications[/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\" content_alignment=\"center\"]Creating campaigns that target and persuade audiences.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"23.00\" type=\"23.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" alignment=\"center\" icon=\"fa-comment-dots fas\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Digital &amp; Social Media[/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\" content_alignment=\"center\"]\r\n<p> Harnessing the virtual sphere for tangible results.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"28.00\" type=\"28.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-handshake fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Partnerships &amp; Community Engagement[/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\" content_alignment=\"center\"]\r\n<p>Connecting and collaborating for amplified impact.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_small=\"3_4\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Approach at Good Cause Marketing Partners[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>Every collaboration with <b>Good Cause Marketing Partners</b> promises a holistic approach. We are not just about marketing; we are about creating a ripple effect. Through meticulous positioning and strategy, we endeavor to shape public perceptions, stir emotions, and encourage actions that resonate with your brand values.</p>\r\n<p>Our philosophy for every project is underpinned by three cardinal principles:</p>\r\n<ol>\r\n<li><b>Unified Brand Experience</b>: Enable brands to be consistent, recognizable, and memorable.</li>\r\n<li><b>Vision-Driven Community Building</b>: Construct a brand community that rallies around a shared vision.</li>\r\n<li><b>Strategic Enterprise Framework</b>: Architect a consolidated marketing framework that aligns seamlessly with a company’s ethos.</li>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>The heart of any organization lies in its mission and vision. Recognizing this, we ensure all branding, marketing, and communication endeavors are tuned to echo these sentiments. As guardians of your brand, we understand the nuances of modern consumers, who are as invested in a company\'s ethos as they are in its offerings. This understanding drives us to craft each communication piece as an ambassador of your brand\'s core messages.</p>\r\n<p>In an era dominated by information overload, we champion the art of timely and relevant messaging, reaching out to audiences precisely when and where they should be reached. Transparency, continuous learning, and unwavering accountability guide our every move, ensuring our strategies are not just efficient but progressively innovative.</p>\r\n<ol>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][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=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0\" margin_bottom_small=\"0\"]Meet Matt Midura[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" logics=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]Founder of Good Cause Marketing Partners[/fusion_text][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\" margin_bottom=\"0\"]<p>Matt is a brand strategist, marketer, and producer with more than 25 years of experience in the planning, development, execution, and measurement of strategic marketing and communications initiatives in the corporate, nonprofit and education sectors. He is a creative and collaborative problem-solver with a proven track record for delivering results.</p><p>Matt is an active member within the community, serving on several boards including the Greater Conejo Valley Chamber of Commerce, the Greater Conejo Valley Community Foundation, and the Rotary Club of Westlake Village Sunrise. He was named volunteer of the year by the Chamber in 2015 and served as board chair in 2016.</p><p>Matt and his family have lived in Westlake Village since 2004.</p>[/fusion_text][fusion_checklist parent_dynamic_content=\"\" type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\"][fusion_li_item iconcolor=\"var(--awb-color5)\"]<p><a href=\"https://www.linkedin.com/in/mmidura/\" target=\"_blank\" rel=\"noopener\"><b>Read More on LinkedIn</b></a></p>[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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=\"center\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" hover_type=\"zoomin\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" 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=\"1917|full\" alt=\"Matt Midura\" borderradius=\"6\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/mid-prez-sq-400x400-1.webp[/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\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\" background_color=\"var(--awb-color2)\" padding_top=\"50\" padding_bottom=\"50\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1809|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/who-we-are-intro2.webp[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Let\'s Craft Your Story Together[/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\" margin_bottom=\"0\"]\r\n<p>Every brand has a unique narrative, and every cause has the power to impact. With Good Cause Marketing Partners and the expertise of seasoned professionals like Matt Midura, you’re not just getting a marketing campaign; you’re gaining a dedicated partner in sharing your story with the world. Dive into a partnership where passion, expertise, and genuine commitment come together to create waves of change.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]Connect with Us Today[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Who We Are','','publish','closed','closed','','who-we-are','','','2023-08-23 15:32:24','2023-08-23 15:32:24','',0,'https://test-site.goodcausepartners.com/?page_id=1068',0,'page','',0),(1807,1,'2023-08-22 18:22:45','2023-08-22 18:22: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]About Good Cause Marketing Partners[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Where Passion for Effective Marketing Meets Dedication to Societal Impact</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>At Good Cause Marketing Partners, we stand proud as a leading boutique integrated marketing communications agency, tailor-made for the unique demands of both businesses and nonprofits. Our vision is crystallized in our relentless pursuit to weave compelling narratives that enhance visibility and foster growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore Our Services[/fusion_button][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\" padding_bottom=\"65\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"40\"]Our Expertise Spans a Range of Specialized Areas[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"24\" type=\"24\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" 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\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Strategy &amp; Branding[/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\" content_alignment=\"center\"]\r\n<p>Shaping identities that capture attention, resonate, and linger.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"23.00\" type=\"23.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-bullhorn fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Marketing &amp; Communications[/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\" content_alignment=\"center\"]Creating campaigns that target and persuade audiences.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"23.00\" type=\"23.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" alignment=\"center\" icon=\"fa-comment-dots fas\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Digital &amp; Social Media[/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\" content_alignment=\"center\"]\r\n<p> Harnessing the virtual sphere for tangible results.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"28.00\" type=\"28.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-handshake fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Partnerships &amp; Community Engagement[/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\" content_alignment=\"center\"]\r\n<p>Connecting and collaborating for amplified impact.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Approach at Good Cause Marketing Partners[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>Every collaboration with <b>Good Cause Marketing Partners</b> promises a holistic approach. We are not just about marketing; we are about creating a ripple effect. Through meticulous positioning and strategy, we endeavor to shape public perceptions, stir emotions, and encourage actions that resonate with your brand values.</p>\r\n<p>Our philosophy for every project is underpinned by three cardinal principles:</p>\r\n<ol>\r\n<li><b>Unified Brand Experience</b>: Enable brands to be consistent, recognizable, and memorable.</li>\r\n<li><b>Vision-Driven Community Building</b>: Construct a brand community that rallies around a shared vision.</li>\r\n<li><b>Strategic Enterprise Framework</b>: Architect a consolidated marketing framework that aligns seamlessly with a company’s ethos.</li>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>The heart of any organization lies in its mission and vision. Recognizing this, we ensure all branding, marketing, and communication endeavors are tuned to echo these sentiments. As guardians of your brand, we understand the nuances of modern consumers, who are as invested in a company\'s ethos as they are in its offerings. This understanding drives us to craft each communication piece as an ambassador of your brand\'s core messages.</p>\r\n<p>In an era dominated by information overload, we champion the art of timely and relevant messaging, reaching out to audiences precisely when and where they should be reached. Transparency, continuous learning, and unwavering accountability guide our every move, ensuring our strategies are not just efficient but progressively innovative.</p>\r\n<ol>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.png[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Let\'s Craft Your Story Together[/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\" margin_bottom=\"0\"]\r\n<p>Every brand has a unique narrative, and every cause has the power to impact. With Good Cause Marketing Partners and the expertise of seasoned professionals like Matt Midura, you’re not just getting a marketing campaign; you’re gaining a dedicated partner in sharing your story with the world. Dive into a partnership where passion, expertise, and genuine commitment come together to create waves of change.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]Connect with Us Today[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','Who We Are','','inherit','closed','closed','','1068-revision-v1','','','2023-08-22 18:22:45','2023-08-22 18:22:45','',1068,'https://test-site.goodcausepartners.com/?p=1807',0,'revision','',0),(1781,1,'2023-08-22 16:21:38','2023-08-22 16:21: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]About Good Cause Marketing Partners[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Where Passion for Effective Marketing Meets Dedication to Societal Impact</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>At Good Cause Marketing Partners, we stand proud as a leading boutique integrated marketing communications agency, tailor-made for the unique demands of both businesses and nonprofits. Our vision is crystallized in our relentless pursuit to weave compelling narratives that enhance visibility and foster growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore Our Services[/fusion_button][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"40\"]Our Expertise Spans a Range of Specialized Areas[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"23.00\" type=\"23.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-cloud-hosting\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Strategy &amp; Branding[/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\" content_alignment=\"center\"]\r\n<p>Shaping identities that capture attention, resonate, and linger.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"23.00\" type=\"23.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Marketing &amp; Communications[/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\" content_alignment=\"center\"]Creating campaigns that target and persuade audiences.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"23.00\" type=\"23.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-cloud-hosting\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Digital &amp; Social Media[/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\" content_alignment=\"center\"]\r\n<p> Harnessing the virtual sphere for tangible results.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"28.00\" type=\"28.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Partnerships &amp; Community Engagement[/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\" content_alignment=\"center\"]\r\n<p>Connecting and collaborating for amplified impact.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Approach at Good Cause Marketing Partners[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>Every collaboration with <b>Good Cause Marketing Partners</b> promises a holistic approach. We are not just about marketing; we are about creating a ripple effect. Through meticulous positioning and strategy, we endeavor to shape public perceptions, stir emotions, and encourage actions that resonate with your brand values.</p>\r\n<p>Our philosophy for every project is underpinned by three cardinal principles:</p>\r\n<ol>\r\n<li><b>Unified Brand Experience</b>: Enable brands to be consistent, recognizable, and memorable.</li>\r\n<li><b>Vision-Driven Community Building</b>: Construct a brand community that rallies around a shared vision.</li>\r\n<li><b>Strategic Enterprise Framework</b>: Architect a consolidated marketing framework that aligns seamlessly with a company’s ethos.</li>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>The heart of any organization lies in its mission and vision. Recognizing this, we ensure all branding, marketing, and communication endeavors are tuned to echo these sentiments. As guardians of your brand, we understand the nuances of modern consumers, who are as invested in a company\'s ethos as they are in its offerings. This understanding drives us to craft each communication piece as an ambassador of your brand\'s core messages.</p>\r\n<p>In an era dominated by information overload, we champion the art of timely and relevant messaging, reaching out to audiences precisely when and where they should be reached. Transparency, continuous learning, and unwavering accountability guide our every move, ensuring our strategies are not just efficient but progressively innovative.</p>\r\n<ol>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.png[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Let\'s Craft Your Story Together[/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\" margin_bottom=\"0\"]\r\n<p>Every brand has a unique narrative, and every cause has the power to impact. With Good Cause Marketing Partners and the expertise of seasoned professionals like Matt Midura, you’re not just getting a marketing campaign; you’re gaining a dedicated partner in sharing your story with the world. Dive into a partnership where passion, expertise, and genuine commitment come together to create waves of change.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]Connect with Us Today[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','Who We Are','','inherit','closed','closed','','1068-revision-v1','','','2023-08-22 16:21:38','2023-08-22 16:21:38','',1068,'https://test-site.goodcausepartners.com/?p=1781',0,'revision','',0),(1127,1,'2023-05-16 13:27:58','2023-05-16 13:27:58','[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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"50\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Categories\" pattern_bg_color=\"var(--awb-color2)\" box_shadow_vertical=\"0\" 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) - 95%))\" pattern_bg_size=\"100%\" padding_top=\"30px\" padding_bottom=\"30px\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_menu menu=\"hosting-categories\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" transition_time=\"300\" align_items=\"flex-start\" justify_content=\"flex-start\" main_justify_content=\"left\" transition_type=\"center-vertical\" icons_position=\"left\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" 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\" animation_delay=\"0\" gap=\"15px\" bg=\"var(--awb-color2)\" active_bg=\"var(--awb-color4)\" color=\"var(--awb-color6)\" active_color=\"var(--awb-color1)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" items_padding_right=\"15px\" items_padding_left=\"15px\" fusion_font_variant_typography=\"var(--awb-typography5)\" fusion_font_family_typography=\"var(--awb-typography5-font-family)\" 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)\" min_height=\"35px\" items_padding_top=\"5px\" items_padding_bottom=\"5px\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-end\" valign_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" margin_top_small=\"40px\" min_height=\"\" link=\"\"][fusion_search search_content=\"post\" live_results_height=\"250\" live_results_scrollbar=\"hidden\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" placeholder=\"Search Blog ...\" text_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 60%))\" border_size_top=\"0\" border_size_right=\"0\" border_size_left=\"0\" border_radius=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"News\" margin_top=\"100px\" margin_bottom=\"40px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"0\" offset=\"0\" orderby=\"rand\" orderby_term=\"name\" order=\"DESC\" upcoming_events_only=\"yes\" featured_events_only=\"no\" scrolling=\"infinite\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"2\" columns_small=\"1\" columns=\"2\" column_spacing=\"60\" row_spacing=\"80\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Blog','','publish','closed','closed','','blog','','','2023-08-23 08:51:52','2023-08-23 08:51:52','',0,'https://test-site.goodcausepartners.com/?page_id=1127',0,'page','',0),(1911,1,'2023-08-23 08:51:52','2023-08-23 08:51:52','[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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"50\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Categories\" pattern_bg_color=\"var(--awb-color2)\" box_shadow_vertical=\"0\" 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) - 95%))\" pattern_bg_size=\"100%\" padding_top=\"30px\" padding_bottom=\"30px\"][fusion_builder_row][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_menu menu=\"hosting-categories\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" transition_time=\"300\" align_items=\"flex-start\" justify_content=\"flex-start\" main_justify_content=\"left\" transition_type=\"center-vertical\" icons_position=\"left\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" 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\" animation_delay=\"0\" gap=\"15px\" bg=\"var(--awb-color2)\" active_bg=\"var(--awb-color4)\" color=\"var(--awb-color6)\" active_color=\"var(--awb-color1)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" items_padding_right=\"15px\" items_padding_left=\"15px\" fusion_font_variant_typography=\"var(--awb-typography5)\" fusion_font_family_typography=\"var(--awb-typography5-font-family)\" 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)\" min_height=\"35px\" items_padding_top=\"5px\" items_padding_bottom=\"5px\" /][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-end\" valign_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" margin_top_small=\"40px\" min_height=\"\" link=\"\"][fusion_search search_content=\"post\" live_results_height=\"250\" live_results_scrollbar=\"hidden\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" placeholder=\"Search Blog ...\" text_color=\"hsla(var(--awb-color8-h),var(--awb-color8-s),var(--awb-color8-l),calc(var(--awb-color8-a) - 60%))\" border_size_top=\"0\" border_size_right=\"0\" border_size_left=\"0\" border_radius=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"News\" margin_top=\"100px\" margin_bottom=\"40px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"0\" offset=\"0\" orderby=\"rand\" orderby_term=\"name\" order=\"DESC\" upcoming_events_only=\"yes\" featured_events_only=\"no\" scrolling=\"infinite\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"2\" columns_small=\"1\" columns=\"2\" column_spacing=\"60\" row_spacing=\"80\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Blog','','inherit','closed','closed','','1127-revision-v1','','','2023-08-23 08:51:52','2023-08-23 08:51:52','',1127,'https://test-site.goodcausepartners.com/?p=1911',0,'revision','',0),(1270,1,'2023-05-17 19:18:37','2023-05-17 19:18: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=\"space-between\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Contact Info\" padding_top=\"65\" padding_bottom=\"65\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Contact Good Cause Marketing Partners[/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\" margin_bottom=\"20\"]\r\n<p>At Good Cause Marketing Partners, communication sits at the heart of what we do. Whether you have an inquiry, a suggestion, or simply wish to learn more about our services, we\'re eager to hear from you. We value every opportunity to connect and understand your needs better. </p>\r\n<p>Please feel free to reach out using the details below or the form, and we\'ll ensure to get back to you promptly.</p>\r\n[/fusion_text][fusion_separator style_type=\"single|dotted\" flex_grow=\"0\" height=\"20\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"300px\" border_size=\"3\" /][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\" margin_top=\"20\" margin_bottom=\"20\"]\r\n<p><b>Phone: </b>(805) 870 - 5050</p>\r\n<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-hover);\"><b>Hours of Operation</b>: Monday-Friday, 8 am - 5 pm</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" margin_top_small=\"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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"30px\" margin_bottom_small=\"25px\"]\r\n<p>send a message</p>\r\n[/fusion_title][fusion_form form_post_id=\"1292\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Contact','','publish','closed','closed','','contact','','','2023-08-23 08:52:42','2023-08-23 08:52:42','',0,'https://test-site.goodcausepartners.com/?page_id=1270',0,'page','',0),(1912,1,'2023-08-23 08:52:42','2023-08-23 08:52: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=\"space-between\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Contact Info\" padding_top=\"65\" padding_bottom=\"65\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Contact Good Cause Marketing Partners[/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\" margin_bottom=\"20\"]\r\n<p>At Good Cause Marketing Partners, communication sits at the heart of what we do. Whether you have an inquiry, a suggestion, or simply wish to learn more about our services, we\'re eager to hear from you. We value every opportunity to connect and understand your needs better. </p>\r\n<p>Please feel free to reach out using the details below or the form, and we\'ll ensure to get back to you promptly.</p>\r\n[/fusion_text][fusion_separator style_type=\"single|dotted\" flex_grow=\"0\" height=\"20\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"300px\" border_size=\"3\" /][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\" margin_top=\"20\" margin_bottom=\"20\"]\r\n<p><b>Phone: </b>(805) 870 - 5050</p>\r\n<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-hover);\"><b>Hours of Operation</b>: Monday-Friday, 8 am - 5 pm</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" margin_top_small=\"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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"30px\" margin_bottom_small=\"25px\"]\r\n<p>send a message</p>\r\n[/fusion_title][fusion_form form_post_id=\"1292\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Contact','','inherit','closed','closed','','1270-revision-v1','','','2023-08-23 08:52:42','2023-08-23 08:52:42','',1270,'https://test-site.goodcausepartners.com/?p=1912',0,'revision','',0),(1373,1,'2023-05-19 21:05:27','2023-05-19 21:05:27','[fusion_global id=\"1379\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" border_sizes_top=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" admin_label=\"Features Section\" padding_top=\"100px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-server\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color4)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color5)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>hassle-free setup</p>\r\n[/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\" margin_bottom=\"0\"]\r\n<p>Dolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color4)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color5)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>maximum performance</p>\r\n[/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\" margin_bottom=\"0\"]\r\n<p>Dolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-personal-computer\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color4)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color5)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>99% server uptime</p>\r\n[/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\" margin_bottom=\"0\"]\r\n<p>Dolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Features Section\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"no\" border_position=\"all\" padding_top_small=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Get the speed &amp; performance you need with shared hosting[/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\" margin_bottom=\"0\"]Maecenas arcu placerat tempus venenatis. Orci aliquet faucibus estut etsy sociis rutrum dis. Viverra quam lacus duis.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-global-servers\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"60\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]\r\n<p>fast global servers</p>\r\n[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\"]\r\n<p>Lorem ipsum tempore</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-web-analytics\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"60\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]website analytics[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\"]\r\n<p>Lorem ipsum tempore</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\"]start free trial[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\" line_height=\"var(--awb-typography5-line-height)\" margin_top=\"10px\"]* No credit card required[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"triangle\" pattern_bg_style=\"default\" pattern_bg_opacity=\"50\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Pricing Plans\" padding_top=\"100px\" background_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) + 2%),var(--awb-color2-a))\" pattern_bg_size=\"50%\" pattern_bg_color=\"var(--awb-color1)\" padding_bottom=\"100px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" margin_bottom=\"80px\" margin_bottom_small=\"20px\" padding_right=\"10px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]choose your shared web hosting package[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" padding_left=\"40px\" last=\"no\" border_position=\"all\" padding_left_small=\"0\" padding_bottom_small=\"40px\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>Dignismos sinte iure taque dolorem tempore magnis cuibusdam sed knam galisum repudiane</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" margin_bottom_small=\"60px\" 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"no\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color5)\" button_gradient_bottom_color_hover=\"var(--awb-color5)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 280),var(--awb-color5-s),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 280),var(--awb-color5-s),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\"]15% off[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]\r\n<p>single hosting pack</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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$29 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\r\n<p>Hosting made simple &#8211; for beginners and experts alike.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]1 Website[/fusion_li_item][fusion_li_item]\r\n<p>Free SSL Certificate</p>\r\n[/fusion_li_item][fusion_li_item]2 GB SSD Storage[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color4)\"]\r\n<p>cPanel Included</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\r\n<p>Daily Backup</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\r\n<p>Lifetime Support</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" margin_bottom_small=\"60px\" 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"no\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color4)\" button_gradient_bottom_color_hover=\"var(--awb-color4)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 135),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 135),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\"]most popular[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]gold hosting pack[/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$35 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\r\n<p>Hosting made simple &#8211; for beginners and experts alike.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]5 Websites[/fusion_li_item][fusion_li_item]\r\n<p>Free SSL Certificate</p>\r\n[/fusion_li_item][fusion_li_item]15 GB SSD Storage[/fusion_li_item][fusion_li_item]\r\n<p>cPanel Included</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color4)\"]\r\n<p>Daily Backup</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\r\n<p>Lifetime Support</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"no\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color5)\" button_gradient_bottom_color_hover=\"var(--awb-color5)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 85),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 85),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\"]30% off[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]\r\n<p>business hosting pack</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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$49 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\r\n<p>Hosting made simple &#8211; for beginners and experts alike.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]20 Websites[/fusion_li_item][fusion_li_item]\r\n<p>Free SSL Certificate</p>\r\n[/fusion_li_item][fusion_li_item]30 GB SSD Storage[/fusion_li_item][fusion_li_item]\r\n<p>cPanel Included</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Daily Backup</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Lifetime Support</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Hosting Features - TABS\"][fusion_builder_row][fusion_builder_column type=\"1_6\" type=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" margin_bottom=\"60px\" padding_right=\"60px\" padding_left=\"60px\" min_height=\"\" link=\"\"][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\" content_alignment=\"center\" text_color=\"var(--awb-color5)\" margin_bottom=\"10px\"]\r\n<p>Binte cailuy tiure aliquid enim tempore</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=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]avada hosting service - best choice for business owners[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_6\" type=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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=\"120\" transform_translate_y=\"20\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"120\" transform_translate_y_hover=\"20\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoic2NhbGUiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiMy41IiwibWF4X3NjYWxlIjoiMSIsIm1pbl9zY2FsZSI6IiIsImluaXRpYWxfcm90YXRlIjoiIiwiZW5kX3JvdGF0ZSI6IiIsImluaXRpYWxfYmx1ciI6IiIsImVuZF9ibHVyIjoiIiwic3RhcnRfZWxlbWVudCI6ImJvdHRvbSIsInN0YXJ0X3ZpZXdwb3J0IjoiIiwiZW5kX2VsZW1lbnQiOiJjZW50ZXIiLCJlbmRfdmlld3BvcnQiOiJjZW50ZXIiLCJtb3VzZV9lZmZlY3QiOiIiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoiIiwibW91c2VfZWZmZWN0X3NwZWVkIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uX3NwZWVkIjoiIn0seyJ0eXBlIjoic2Nyb2xsIiwic2Nyb2xsX3R5cGUiOiJ0cmFuc2l0aW9uIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImxlZnQiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMi4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIzLjUiLCJtYXhfc2NhbGUiOiIxLjAiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoiY2VudGVyIiwiZW5kX3ZpZXdwb3J0IjoiIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-server-solid\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"hsla(var(--awb-color2-h),var(--awb-color2-s),var(--awb-color2-l),calc(var(--awb-color2-a) - 30%))\" iconcolor_hover=\"hsla(var(--awb-color2-h),var(--awb-color2-s),var(--awb-color2-l),calc(var(--awb-color2-a) - 30%))\" size=\"140\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" margin_bottom=\"100px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_tabs design=\"classic\" layout=\"horizontal\" justified=\"yes\" alignment=\"start\" sticky_tabs=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_tag=\"h4\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_font=\"var(--awb-typography2-font-family)\" title_font_size=\"var(--awb-typography2-font-size)\" title_line_height=\"var(--awb-typography2-line-height)\" title_letter_spacing=\"var(--awb-typography2-letter-spacing)\" title_text_transform=\"capitalize\" title_padding_top=\"15px\" title_padding_bottom=\"15px\" bordercolor=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" content_padding_right=\"40px\" content_padding_left=\"40px\" content_padding_bottom=\"30px\" margin_bottom=\"0px\"][fusion_tab title=\"global data centers\"]\r\n<p><img class=\"alignnone size-full wp-image-1249\" style=\"margin: 40px 0px 30px 0px;\" src=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/blog-image-7.jpg\" alt=\"\" width=\"1160\" height=\"700\"></p>\r\n<h4>Maximize your website\'s potential with avada hosting</h4>\r\n<p>Vestibulum leo eros condimen tum vitae ante molestie, comm eado feugiat sapien. Quisque consectetur nunc sit amet congue sodales. Phasellus interdum gravida tortor, vulputate luctus sapien iaculis eu. Nullam id justo enim. Phasellus dictum viverra interdum. Quisque eu tortor vel turpis scelerisque luctus. Vivamus lacinia, eros vitae tempor pellentesque, odio orci finibus lacus sempers.</p>\r\n[/fusion_tab][fusion_tab title=\"benefits of hosting\"]\r\n<p><img class=\"alignnone size-full wp-image-1254\" style=\"margin: 40px 0px 30px 0px;\" src=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/blog-image-10.jpg\" alt=\"\" width=\"1160\" height=\"700\"></p>\r\n<h4>Elevate your online presence with avada cloud hosting</h4>\r\n<p>Vestibulum leo eros condimen tum vitae ante molestie, comm eado feugiat sapien. Quisque consectetur nunc sit amet congue sodales. Phasellus interdum gravida tortor, vulputate luctus sapien iaculis eu. Nullam id justo enim. Phasellus dictum viverra interdum. Quisque eu tortor vel turpis scelerisque luctus. Vivamus lacinia, eros vitae tempor pellentesque, odio orci finibus lacus sempers.</p>\r\n[/fusion_tab][fusion_tab title=\"fully optimized servers\"]\r\n<p><img class=\"alignnone size-full wp-image-783\" style=\"margin: 40px 0px 30px 0px;\" src=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/blog-image-2.jpg\" alt=\"\" width=\"1160\" height=\"700\"></p>\r\n<h4>Future-proof your website with avada cloud hosting technology</h4>\r\n<p>Vestibulum leo eros condimen tum vitae ante molestie, comm eado feugiat sapien. Quisque consectetur nunc sit amet congue sodales. Phasellus interdum gravida tortor, vulputate luctus sapien iaculis eu. Nullam id justo enim. Phasellus dictum viverra interdum. Quisque eu tortor vel turpis scelerisque luctus. Vivamus lacinia, eros vitae tempor pellentesque, odio orci finibus lacus sempers.</p>\r\n[/fusion_tab][/fusion_tabs][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"][fusion_global id=\"996\"]','Shared Hosting','','publish','closed','closed','','shared-hosting','','','2023-08-21 17:34:13','2023-08-21 17:34:13','',1004,'https://test-site.goodcausepartners.com/?page_id=1373',0,'page','',0),(1431,1,'2023-05-22 16:11:04','2023-05-22 16:11: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\" 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\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" admin_label=\"Features Section\" padding_top=\"100px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-server\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color5)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color6)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>hassle-free setup</p>\r\n[/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\" margin_bottom=\"0\"]\r\n<p>Dolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color5)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color6)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>maximum performance</p>\r\n[/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\" margin_bottom=\"0\"]\r\n<p>Dolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-personal-computer\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color5)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color6)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>99% server uptime</p>\r\n[/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\" margin_bottom=\"0\"]\r\n<p>Dolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" admin_label=\"Features Section\" padding_top=\"100px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-server\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color5)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color6)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>hassle-free setup</p>\r\n[/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\" margin_bottom=\"0\"]\r\n<p>Dolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color5)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color6)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>maximum performance</p>\r\n[/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\" margin_bottom=\"0\"]\r\n<p>Dolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-personal-computer\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color5)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color6)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>99% server uptime</p>\r\n[/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\" margin_bottom=\"0\"]\r\n<p>Dolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Features Section\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"no\" border_position=\"all\" padding_top_small=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]WordPress experience : unleash the full potential[/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\" margin_bottom=\"0\"]Maecenas arcu placerat tempus venenatis. Orci aliquet faucibus estut etsy sociis rutrum dis. Viverra quam lacus duis.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-global-servers\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"60\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]\r\n<p>fast global servers</p>\r\n[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\"]\r\n<p>Lorem ipsum tempore</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-web-analytics\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"60\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]website analytics[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\"]\r\n<p>Lorem ipsum tempore</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\"]start free trial[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\" line_height=\"var(--awb-typography5-line-height)\" margin_top=\"10px\"]* No credit card required[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"triangle\" pattern_bg_style=\"default\" pattern_bg_opacity=\"50\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Pricing Plans\" padding_top=\"100px\" background_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) + 2%),var(--awb-color2-a))\" pattern_bg_size=\"50%\" pattern_bg_color=\"var(--awb-color1)\" padding_bottom=\"100px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" margin_bottom=\"80px\" margin_bottom_small=\"20px\" padding_right=\"10px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]\r\n<p>choose your WordPress <br />hosting package</p>\r\n[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" padding_left=\"40px\" last=\"no\" border_position=\"all\" padding_left_small=\"0\" padding_bottom_small=\"40px\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>Dignismos sinte iure taque dolorem tempore magnis cuibusdam sed knam galisum repudiane</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"no\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color5)\" button_gradient_bottom_color_hover=\"var(--awb-color5)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 280),var(--awb-color5-s),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 280),var(--awb-color5-s),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\"]15% off[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]\r\n<p>single hosting pack</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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$29 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\r\n<p>Hosting made simple &#8211; for beginners and experts alike.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]1 Website[/fusion_li_item][fusion_li_item]\r\n<p>Free SSL Certificate</p>\r\n[/fusion_li_item][fusion_li_item]2 GB SSD Storage[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color4)\"]\r\n<p>cPanel Included</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\r\n<p>Daily Backup</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\r\n<p>Lifetime Support</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"no\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color4)\" button_gradient_bottom_color_hover=\"var(--awb-color4)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 135),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 135),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\"]most popular[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]gold hosting pack[/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$35 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\r\n<p>Hosting made simple &#8211; for beginners and experts alike.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]5 Websites[/fusion_li_item][fusion_li_item]\r\n<p>Free SSL Certificate</p>\r\n[/fusion_li_item][fusion_li_item]15 GB SSD Storage[/fusion_li_item][fusion_li_item]\r\n<p>cPanel Included</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color4)\"]\r\n<p>Daily Backup</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\r\n<p>Lifetime Support</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"no\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color5)\" button_gradient_bottom_color_hover=\"var(--awb-color5)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 85),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 85),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\"]30% off[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]\r\n<p>business hosting pack</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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$49 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\r\n<p>Hosting made simple &#8211; for beginners and experts alike.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]20 Websites[/fusion_li_item][fusion_li_item]\r\n<p>Free SSL Certificate</p>\r\n[/fusion_li_item][fusion_li_item]30 GB SSD Storage[/fusion_li_item][fusion_li_item]\r\n<p>cPanel Included</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Daily Backup</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Lifetime Support</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1379\"][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"60px\" admin_label=\"Hosting Features - TABS\" margin_bottom=\"80px\"][fusion_builder_row][fusion_builder_column type=\"1_6\" type=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" margin_bottom=\"60px\" padding_right=\"60px\" padding_left=\"60px\" min_height=\"\" link=\"\"][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\" content_alignment=\"center\" text_color=\"var(--awb-color5)\" margin_bottom=\"10px\"]\r\n<p>Binte cailuy tiure aliquid enim tempore</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=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]avada hosting service - best choice for business owners[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_6\" type=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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=\"120\" transform_translate_y=\"20\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"120\" transform_translate_y_hover=\"20\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoic2NhbGUiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiMy41IiwibWF4X3NjYWxlIjoiMSIsIm1pbl9zY2FsZSI6IiIsImluaXRpYWxfcm90YXRlIjoiIiwiZW5kX3JvdGF0ZSI6IiIsImluaXRpYWxfYmx1ciI6IiIsImVuZF9ibHVyIjoiIiwic3RhcnRfZWxlbWVudCI6ImJvdHRvbSIsInN0YXJ0X3ZpZXdwb3J0IjoiIiwiZW5kX2VsZW1lbnQiOiJjZW50ZXIiLCJlbmRfdmlld3BvcnQiOiJjZW50ZXIiLCJtb3VzZV9lZmZlY3QiOiIiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoiIiwibW91c2VfZWZmZWN0X3NwZWVkIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uX3NwZWVkIjoiIn0seyJ0eXBlIjoic2Nyb2xsIiwic2Nyb2xsX3R5cGUiOiJ0cmFuc2l0aW9uIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImxlZnQiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMi4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIzLjUiLCJtYXhfc2NhbGUiOiIxLjAiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoiY2VudGVyIiwiZW5kX3ZpZXdwb3J0IjoiIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-server-solid\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"hsla(var(--awb-color2-h),var(--awb-color2-s),var(--awb-color2-l),calc(var(--awb-color2-a) - 30%))\" iconcolor_hover=\"hsla(var(--awb-color2-h),var(--awb-color2-s),var(--awb-color2-l),calc(var(--awb-color2-a) - 30%))\" size=\"140\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_tabs design=\"classic\" layout=\"horizontal\" justified=\"yes\" alignment=\"start\" sticky_tabs=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_tag=\"h4\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_font=\"var(--awb-typography2-font-family)\" title_font_size=\"var(--awb-typography2-font-size)\" title_line_height=\"var(--awb-typography2-line-height)\" title_letter_spacing=\"var(--awb-typography2-letter-spacing)\" title_text_transform=\"capitalize\" title_padding_top=\"15px\" title_padding_bottom=\"15px\" bordercolor=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" content_padding_right=\"40px\" content_padding_left=\"40px\" content_padding_bottom=\"30px\" margin_bottom=\"0px\"][fusion_tab title=\"global data centers\"]\r\n<p><img class=\"alignnone size-full wp-image-1249\" style=\"margin: 40px 0px 30px 0px;\" src=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/blog-image-7.jpg\" alt=\"\" width=\"1160\" height=\"700\"></p>\r\n<h4>Maximize your website\'s potential with avada hosting</h4>\r\n<p>Vestibulum leo eros condimen tum vitae ante molestie, comm eado feugiat sapien. Quisque consectetur nunc sit amet congue sodales. Phasellus interdum gravida tortor, vulputate luctus sapien iaculis eu. Nullam id justo enim. Phasellus dictum viverra interdum. Quisque eu tortor vel turpis scelerisque luctus. Vivamus lacinia, eros vitae tempor pellentesque, odio orci finibus lacus sempers.</p>\r\n[/fusion_tab][fusion_tab title=\"benefits of hosting\"]\r\n<p><img class=\"alignnone size-full wp-image-1254\" style=\"margin: 40px 0px 30px 0px;\" src=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/blog-image-10.jpg\" alt=\"\" width=\"1160\" height=\"700\"></p>\r\n<h4>Elevate your online presence with avada cloud hosting</h4>\r\n<p>Vestibulum leo eros condimen tum vitae ante molestie, comm eado feugiat sapien. Quisque consectetur nunc sit amet congue sodales. Phasellus interdum gravida tortor, vulputate luctus sapien iaculis eu. Nullam id justo enim. Phasellus dictum viverra interdum. Quisque eu tortor vel turpis scelerisque luctus. Vivamus lacinia, eros vitae tempor pellentesque, odio orci finibus lacus sempers.</p>\r\n[/fusion_tab][fusion_tab title=\"fully optimized servers\"]\r\n<p><img class=\"alignnone size-full wp-image-783\" style=\"margin: 40px 0px 30px 0px;\" src=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/blog-image-2.jpg\" alt=\"\" width=\"1160\" height=\"700\"></p>\r\n<h4>Future-proof your website with avada cloud hosting technology</h4>\r\n<p>Vestibulum leo eros condimen tum vitae ante molestie, comm eado feugiat sapien. Quisque consectetur nunc sit amet congue sodales. Phasellus interdum gravida tortor, vulputate luctus sapien iaculis eu. Nullam id justo enim. Phasellus dictum viverra interdum. Quisque eu tortor vel turpis scelerisque luctus. Vivamus lacinia, eros vitae tempor pellentesque, odio orci finibus lacus sempers.</p>\r\n[/fusion_tab][/fusion_tabs][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','WordPress Hosting','','publish','closed','closed','','wordpress-hosting','','','2023-08-22 01:15:02','2023-08-22 01:15:02','',1004,'https://test-site.goodcausepartners.com/?page_id=1431',0,'page','',0),(1444,1,'2023-05-22 17:55:47','2023-05-22 17:55:47','[fusion_global id=\"1379\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"20px\" admin_label=\"Features Section\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"no\" border_position=\"all\" padding_top_small=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]optimal performance with dedicated&nbsp; server hosting[/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\" margin_bottom=\"0\"]Maecenas arcu placerat tempus venenatis. Orci aliquet faucibus estut etsy sociis rutrum dis. Viverra quam lacus duis. Proin ferm turpis mollis scelerisque mollis lectus pretium.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-start\" valign_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"30px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-global-servers\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"28\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"12px\"]<strong>Build Your Website with User-Friendly Tools</strong>[/fusion_title][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-start\" valign_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-secure-business\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"28\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"12px\"]<strong>Experience Reliable Hosting with 99.9% Uptime</strong>[/fusion_title][/fusion_builder_column_inner][fusion_builder_column_inner type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"row\" align_content=\"flex-start\" valign_content=\"center\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-web-analytics\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"28\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"12px\"]<strong>Gain the Edge with Cutting-Edge Hosting Technology</strong>[/fusion_title][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" admin_label=\"Features Section\" padding_top=\"80px\" margin_top=\"100px\" padding_bottom=\"80px\" background_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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-server\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color4)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color5)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>hassle-free setup</p>\r\n[/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\" margin_bottom=\"0\"]\r\n<p>Dolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color4)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color5)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>maximum performance</p>\r\n[/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\" margin_bottom=\"0\"]\r\n<p>Dolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-personal-computer\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color4)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color5)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>99% server uptime</p>\r\n[/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\" margin_bottom=\"0\"]\r\n<p>Dolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"50\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Pricing Plans\" pattern_bg_size=\"50%\" pattern_bg_color=\"var(--awb-color1)\" margin_bottom=\"100px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" margin_bottom=\"60px\" margin_bottom_small=\"20px\" padding_right=\"10px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]<p>choose your dedicated web hosting package</p>[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" padding_left=\"40px\" last=\"no\" border_position=\"all\" padding_left_small=\"0\" padding_bottom_small=\"40px\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>Dignismos sinte iure taque dolorem tempore magnis cuibusdam sed knam galisum repudiane</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"no\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color5)\" button_gradient_bottom_color_hover=\"var(--awb-color5)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 280),var(--awb-color5-s),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 280),var(--awb-color5-s),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\"]15% off[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]\r\n<p>single hosting pack</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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$29 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\r\n<p>Hosting made simple &#8211; for beginners and experts alike.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]1 Website[/fusion_li_item][fusion_li_item]\r\n<p>Free SSL Certificate</p>\r\n[/fusion_li_item][fusion_li_item]2 GB SSD Storage[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color4)\"]\r\n<p>cPanel Included</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\r\n<p>Daily Backup</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\r\n<p>Lifetime Support</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"no\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color4)\" button_gradient_bottom_color_hover=\"var(--awb-color4)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 135),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 135),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\"]most popular[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]gold hosting pack[/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$35 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\r\n<p>Hosting made simple &#8211; for beginners and experts alike.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]5 Websites[/fusion_li_item][fusion_li_item]\r\n<p>Free SSL Certificate</p>\r\n[/fusion_li_item][fusion_li_item]15 GB SSD Storage[/fusion_li_item][fusion_li_item]\r\n<p>cPanel Included</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color4)\"]\r\n<p>Daily Backup</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\r\n<p>Lifetime Support</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"no\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color5)\" button_gradient_bottom_color_hover=\"var(--awb-color5)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 85),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 85),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\"]30% off[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]\r\n<p>business hosting pack</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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$49 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\r\n<p>Hosting made simple &#8211; for beginners and experts alike.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]20 Websites[/fusion_li_item][fusion_li_item]\r\n<p>Free SSL Certificate</p>\r\n[/fusion_li_item][fusion_li_item]30 GB SSD Storage[/fusion_li_item][fusion_li_item]\r\n<p>cPanel Included</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Daily Backup</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Lifetime Support</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"996\"][fusion_global id=\"1097\"]','Dedicated Server','','publish','closed','closed','','dedicated-server','','','2023-05-22 17:55:47','2023-05-22 17:55:47','',1004,'https://test-site.goodcausepartners.com/?page_id=1444',0,'page','',0),(1470,1,'2023-05-22 19:46:44','2023-05-22 19:46: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\" 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\" margin_top=\"100px\" admin_label=\"Info Banner Domain Search\"][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\" padding_right=\"50px\" padding_left=\"50px\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" background_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 50%),var(--awb-color5-a))\" border_color=\"var(--awb-color4)\" border_color_hover=\"var(--awb-color5)\" last=\"no\" border_position=\"all\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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=\"parent\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"20\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_bottom=\"40px\" last=\"no\" border_position=\"all\" padding_right=\"20px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]get the ultimate VPS cloud hosting plans[/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\" margin_bottom=\"10px\"]\r\n<p>Lacus quis id proin blandit. At sodales vitae duim pharetra. Mollis leo scelerisque auctor odio. Aliqua met ipan faucibus.</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"2_5\" type=\"2_5\" align_self=\"stretch\" content_layout=\"column\" 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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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=\"parent\" transform_scale_x=\"1\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"-20\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"579|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/user-with-laptop-1.png[/fusion_imageframe][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"right bottom\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" background_color=\"hsla(calc(var(--awb-color5-h) + 12),var(--awb-color5-s),calc(var(--awb-color5-l) - 25%),var(--awb-color5-a))\" padding_top=\"32px\" padding_right=\"35px\" padding_bottom=\"42px\" padding_left=\"35px\" background_image=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/hosting-banner-bg-2.png\" background_repeat=\"no-repeat\" background_size=\"custom\" background_custom_size=\"45%\" background_color_hover=\"hsla(calc(var(--awb-color5-h) + 12),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" link=\"https://test-site.goodcausepartners.com/hosting/shared-hosting/\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_top_small=\"60px\" background_image_medium=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/hosting-banner-bg-2.png\" background_position_medium=\"right bottom\" background_repeat_medium=\"no-repeat\" background_size_medium=\"custom\" background_custom_size_medium=\"45%\" background_image_small=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/hosting-banner-bg-2.png\" background_position_small=\"right bottom\" background_repeat_small=\"no-repeat\" background_size_small=\"custom\" background_custom_size_small=\"45%\" min_height=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]avada shared hosting[/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\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 30%))\" fusion_font_variant_text_font=\"400\" text_transform=\"var(--awb-typography3-text-transform)\" line_height=\"1\"]\r\n<p>Starts only 3.99 / Month</p>\r\n[/fusion_text][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"var(--awb-color1)\" item_padding_top=\"0px\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Unlimited Bandwidth[/fusion_li_item][fusion_li_item]\r\n<p>99% server uptime</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Safe &amp; Secure</p>\r\n[/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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Features\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-smartphone\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]\r\n<p>maximum <br />performance</p>\r\n[/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\"]Dignismos sint duire atcque<br />\r\ndolore tempor sedip magnis<br />\r\ngalisum repud ipsum.[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-cloud-hosting\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]\r\n<p>fully secure <br />data centers</p>\r\n[/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\"]Dignismos sint duire atcque<br />\r\ndolore tempor sedip magnis<br />\r\ngalisum repud ipsum.[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]\r\n<p>DDos attack <br />prevention</p>\r\n[/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\"]Dignismos sint duire atcque<br />\r\ndolore tempor sedip magnis<br />\r\ngalisum repud ipsum.[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-web-protection\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color4)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]\r\n<p>get unmetered <br />bandwidth</p>\r\n[/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\"]Dignismos sint duire atcque<br />\r\ndolore tempor sedip magnis<br />\r\ngalisum repud ipsum.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Hosting FAQ\'s\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6InRpbHQiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoib3Bwb3NpdGUiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiIiLCJpbmZpbml0ZV9hbmltYXRpb25fc3BlZWQiOiIifV0=\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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=\"center\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\" max_width=\"1000px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.png[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]frequently asked questions[/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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\" content_alignment=\"center\" margin_bottom=\"60px\"]\r\n<p>Dignismos sinte iure taques dolore tempore unde magnis cuibus<br />&nbsp;atque laborum&nbsp;sed knam galisum repudiane</p>\r\n[/fusion_text][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"60px\" padding_right=\"60px\" padding_bottom=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 95%))\" last=\"no\" border_position=\"all\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" min_height=\"\" link=\"\"][fusion_accordion border_size=\"0\" title_tag=\"h4\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" boxed_mode=\"yes\" padding_top=\"10px\" padding_bottom=\"10px\" icon_size=\"18\" icon_box_color=\"var(--awb-color4)\" padding_right=\"10px\" padding_left=\"10px\" hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color1)\" icon_alignment=\"right\"][fusion_toggle title=\"How avada hosting help business succeed?\" open=\"no\"]\r\n<p>Ea tempore aliquam ut commodi possimus ut quasi asperiores. In porro praesentium cum consect edur doloribus accusan tium quos aut dignissimos aspernatur rem dicta nisi. Est neque laborum ad eius itaque ad quas blanditiis ut nemo omnis At dignissimos omnis et omnis earum aut placeat fugit. In libero quasi id quisquam aperiam auty.</p>\r\n[/fusion_toggle][fusion_toggle title=\"what are the hosting packages you offer?\" open=\"no\"]\r\n<p>Ea tempore aliquam ut commodi possimus ut quasi asperiores. In porro praesentium cum consect edur doloribus accusan tium quos aut dignissimos aspernatur rem dicta nisi. Est neque laborum ad eius itaque ad quas blanditiis ut nemo omnis At dignissimos omnis et omnis earum aut placeat fugit. In libero quasi id quisquam aperiam auty.</p>\r\n[/fusion_toggle][fusion_toggle title=\"How do I migrate over to your hosting service?\" open=\"no\"]\r\n<p>Ea tempore aliquam ut commodi possimus ut quasi asperiores. In porro praesentium cum consect edur doloribus accusan tium quos aut dignissimos aspernatur rem dicta nisi. Est neque laborum ad eius itaque ad quas blanditiis ut nemo omnis At dignissimos omnis et omnis earum aut placeat fugit. In libero quasi id quisquam aperiam auty.</p>\r\n[/fusion_toggle][fusion_toggle title=\"Why do I need a website?\" open=\"no\"]\r\n<p>Ea tempore aliquam ut commodi possimus ut quasi asperiores. In porro praesentium cum consect edur doloribus accusan tium quos aut dignissimos aspernatur rem dicta nisi. Est neque laborum ad eius itaque ad quas blanditiis ut nemo omnis At dignissimos omnis et omnis earum aut placeat fugit. In libero quasi id quisquam aperiam auty.</p>\r\n[/fusion_toggle][fusion_toggle title=\"Can I talk to support any time of the day?\" open=\"no\"]\r\n<p>Ea tempore aliquam ut commodi possimus ut quasi asperiores. In porro praesentium cum consect edur doloribus accusan tium quos aut dignissimos aspernatur rem dicta nisi. Est neque laborum ad eius itaque ad quas blanditiis ut nemo omnis At dignissimos omnis et omnis earum aut placeat fugit. In libero quasi id quisquam aperiam auty.</p>\r\n[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1379\"][fusion_global id=\"996\"][fusion_global id=\"1097\"]','VPS Cloud Hosting','','publish','closed','closed','','vps-cloud-hosting','','','2023-05-22 19:46:44','2023-05-22 19:46:44','',1004,'https://test-site.goodcausepartners.com/?page_id=1470',0,'page','',0),(1472,1,'2023-05-22 19:49:05','2023-05-22 19:49: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\" 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\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" admin_label=\"Features Section\" margin_top=\"100px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-server\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color5)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color6)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>hassle-free setup</p>\r\n[/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\" margin_bottom=\"0\"]\r\n<p>Dolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color5)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color6)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>maximum performance</p>\r\n[/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\" margin_bottom=\"0\"]\r\n<p>Dolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-personal-computer\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color5)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color6)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>99% server uptime</p>\r\n[/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\" margin_bottom=\"0\"]\r\n<p>Dolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"triangle\" pattern_bg_style=\"default\" pattern_bg_opacity=\"50\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Pricing Plans\" padding_top=\"100px\" background_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) + 2%),var(--awb-color2-a))\" pattern_bg_size=\"50%\" pattern_bg_color=\"var(--awb-color1)\" padding_bottom=\"100px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" margin_bottom=\"80px\" margin_bottom_small=\"20px\" padding_right=\"10px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]choose your shared web hosting package[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" padding_left=\"40px\" last=\"no\" border_position=\"all\" padding_left_small=\"0\" padding_bottom_small=\"40px\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>Dignismos sinte iure taque dolorem tempore magnis cuibusdam sed knam galisum repudiane</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"no\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color5)\" button_gradient_bottom_color_hover=\"var(--awb-color5)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 280),var(--awb-color5-s),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 280),var(--awb-color5-s),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\"]15% off[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]\r\n<p>single hosting pack</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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$29 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\r\n<p>Hosting made simple &#8211; for beginners and experts alike.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]1 Website[/fusion_li_item][fusion_li_item]\r\n<p>Free SSL Certificate</p>\r\n[/fusion_li_item][fusion_li_item]2 GB SSD Storage[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color4)\"]\r\n<p>cPanel Included</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\r\n<p>Daily Backup</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\r\n<p>Lifetime Support</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"no\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color4)\" button_gradient_bottom_color_hover=\"var(--awb-color4)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 135),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 135),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\"]most popular[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]gold hosting pack[/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$35 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\r\n<p>Hosting made simple &#8211; for beginners and experts alike.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]5 Websites[/fusion_li_item][fusion_li_item]\r\n<p>Free SSL Certificate</p>\r\n[/fusion_li_item][fusion_li_item]15 GB SSD Storage[/fusion_li_item][fusion_li_item]\r\n<p>cPanel Included</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color4)\"]\r\n<p>Daily Backup</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\r\n<p>Lifetime Support</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"no\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color5)\" button_gradient_bottom_color_hover=\"var(--awb-color5)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 85),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 85),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\"]30% off[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]\r\n<p>business hosting pack</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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$49 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\r\n<p>Hosting made simple &#8211; for beginners and experts alike.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]20 Websites[/fusion_li_item][fusion_li_item]\r\n<p>Free SSL Certificate</p>\r\n[/fusion_li_item][fusion_li_item]30 GB SSD Storage[/fusion_li_item][fusion_li_item]\r\n<p>cPanel Included</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Daily Backup</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Lifetime Support</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Hosting Features - TABS\"][fusion_builder_row][fusion_builder_column type=\"1_6\" type=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" margin_bottom=\"60px\" padding_right=\"60px\" padding_left=\"60px\" min_height=\"\" link=\"\"][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\" content_alignment=\"center\" text_color=\"var(--awb-color5)\" margin_bottom=\"10px\"]\r\n<p>Binte cailuy tiure aliquid enim tempore</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=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]avada hosting service - best choice for business owners[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_6\" type=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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=\"120\" transform_translate_y=\"20\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"120\" transform_translate_y_hover=\"20\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoic2NhbGUiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiMy41IiwibWF4X3NjYWxlIjoiMSIsIm1pbl9zY2FsZSI6IiIsImluaXRpYWxfcm90YXRlIjoiIiwiZW5kX3JvdGF0ZSI6IiIsImluaXRpYWxfYmx1ciI6IiIsImVuZF9ibHVyIjoiIiwic3RhcnRfZWxlbWVudCI6ImJvdHRvbSIsInN0YXJ0X3ZpZXdwb3J0IjoiIiwiZW5kX2VsZW1lbnQiOiJjZW50ZXIiLCJlbmRfdmlld3BvcnQiOiJjZW50ZXIiLCJtb3VzZV9lZmZlY3QiOiIiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoiIiwibW91c2VfZWZmZWN0X3NwZWVkIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uX3NwZWVkIjoiIn0seyJ0eXBlIjoic2Nyb2xsIiwic2Nyb2xsX3R5cGUiOiJ0cmFuc2l0aW9uIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImxlZnQiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMi4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIzLjUiLCJtYXhfc2NhbGUiOiIxLjAiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoiY2VudGVyIiwiZW5kX3ZpZXdwb3J0IjoiIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-server-solid\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"hsla(var(--awb-color2-h),var(--awb-color2-s),var(--awb-color2-l),calc(var(--awb-color2-a) - 30%))\" iconcolor_hover=\"hsla(var(--awb-color2-h),var(--awb-color2-s),var(--awb-color2-l),calc(var(--awb-color2-a) - 30%))\" size=\"140\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_tabs design=\"classic\" layout=\"horizontal\" justified=\"yes\" alignment=\"start\" sticky_tabs=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_tag=\"h4\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_font=\"var(--awb-typography2-font-family)\" title_font_size=\"var(--awb-typography2-font-size)\" title_line_height=\"var(--awb-typography2-line-height)\" title_letter_spacing=\"var(--awb-typography2-letter-spacing)\" title_text_transform=\"capitalize\" title_padding_top=\"15px\" title_padding_bottom=\"15px\" bordercolor=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" content_padding_right=\"40px\" content_padding_left=\"40px\" content_padding_bottom=\"30px\" margin_bottom=\"0px\"][fusion_tab title=\"global data centers\"]\r\n<p><img class=\"alignnone size-full wp-image-1249\" style=\"margin: 40px 0px 30px 0px;\" src=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/blog-image-7.jpg\" alt=\"\" width=\"1160\" height=\"700\"></p>\r\n<h4>Maximize your website\'s potential with avada hosting</h4>\r\n<p>Vestibulum leo eros condimen tum vitae ante molestie, comm eado feugiat sapien. Quisque consectetur nunc sit amet congue sodales. Phasellus interdum gravida tortor, vulputate luctus sapien iaculis eu. Nullam id justo enim. Phasellus dictum viverra interdum. Quisque eu tortor vel turpis scelerisque luctus. Vivamus lacinia, eros vitae tempor pellentesque, odio orci finibus lacus sempers.</p>\r\n[/fusion_tab][fusion_tab title=\"benefits of hosting\"]\r\n<p><img class=\"alignnone size-full wp-image-1254\" style=\"margin: 40px 0px 30px 0px;\" src=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/blog-image-10.jpg\" alt=\"\" width=\"1160\" height=\"700\"></p>\r\n<h4>Elevate your online presence with avada cloud hosting</h4>\r\n<p>Vestibulum leo eros condimen tum vitae ante molestie, comm eado feugiat sapien. Quisque consectetur nunc sit amet congue sodales. Phasellus interdum gravida tortor, vulputate luctus sapien iaculis eu. Nullam id justo enim. Phasellus dictum viverra interdum. Quisque eu tortor vel turpis scelerisque luctus. Vivamus lacinia, eros vitae tempor pellentesque, odio orci finibus lacus sempers.</p>\r\n[/fusion_tab][fusion_tab title=\"fully optimized servers\"]\r\n<p><img class=\"alignnone size-full wp-image-783\" style=\"margin: 40px 0px 30px 0px;\" src=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/blog-image-2.jpg\" alt=\"\" width=\"1160\" height=\"700\"></p>\r\n<h4>Future-proof your website with avada cloud hosting technology</h4>\r\n<p>Vestibulum leo eros condimen tum vitae ante molestie, comm eado feugiat sapien. Quisque consectetur nunc sit amet congue sodales. Phasellus interdum gravida tortor, vulputate luctus sapien iaculis eu. Nullam id justo enim. Phasellus dictum viverra interdum. Quisque eu tortor vel turpis scelerisque luctus. Vivamus lacinia, eros vitae tempor pellentesque, odio orci finibus lacus sempers.</p>\r\n[/fusion_tab][/fusion_tabs][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"988\"]','Managed Private Server','','publish','closed','closed','','managed-private-server','','','2023-08-21 17:34:13','2023-08-21 17:34:13','',1004,'https://test-site.goodcausepartners.com/?page_id=1472',0,'page','',0),(1508,1,'2023-05-23 18:52:30','2023-05-23 18:52:30','[fusion_global id=\"1379\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Feature Section 1\" padding_top=\"100px\" border_sizes_top=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"no\" border_position=\"all\" padding_top_small=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]a powerful tool to create professional websites[/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\" margin_bottom=\"0\"]Maecenas arcu placerat tempus venenatis. Orci aliquet faucibus estut etsy sociis rutrum dis. Viverra quam lacus duis.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"30px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-plus\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"60\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]\r\n<p>no coding skills required</p>\r\n[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\"]\r\n<p>Lorem ipsum tempore</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"30px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-connection\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"60\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]get full control over the layout[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\"]\r\n<p>Lorem ipsum tempore</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"40px\" link=\"https://test-site.goodcausepartners.com/contact/\"]start free trial[/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\" pattern_bg=\"triangle\" pattern_bg_style=\"default\" pattern_bg_opacity=\"50\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Pricing Plans\" padding_top=\"100px\" background_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) + 2%),var(--awb-color2-a))\" pattern_bg_size=\"50%\" pattern_bg_color=\"var(--awb-color1)\" padding_bottom=\"100px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" margin_bottom=\"80px\" margin_bottom_small=\"20px\" padding_right=\"10px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]choose your favorite website builder package[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" padding_left=\"40px\" last=\"no\" border_position=\"all\" padding_left_small=\"0\" padding_bottom_small=\"40px\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>Dignismos sinte iure taque dolorem tempore magnis cuibusdam sed knam galisum repudiane</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"no\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color5)\" button_gradient_bottom_color_hover=\"var(--awb-color5)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 280),var(--awb-color5-s),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 280),var(--awb-color5-s),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\"]15% off[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]\r\n<p>single hosting pack</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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$29 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\r\n<p>Hosting made simple &#8211; for beginners and experts alike.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]1 Website[/fusion_li_item][fusion_li_item]\r\n<p>Free SSL Certificate</p>\r\n[/fusion_li_item][fusion_li_item]2 GB SSD Storage[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color4)\"]\r\n<p>cPanel Included</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\r\n<p>Daily Backup</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\r\n<p>Lifetime Support</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"no\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color4)\" button_gradient_bottom_color_hover=\"var(--awb-color4)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 135),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 135),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\"]most popular[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]gold hosting pack[/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$35 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\r\n<p>Hosting made simple &#8211; for beginners and experts alike.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]5 Websites[/fusion_li_item][fusion_li_item]\r\n<p>Free SSL Certificate</p>\r\n[/fusion_li_item][fusion_li_item]15 GB SSD Storage[/fusion_li_item][fusion_li_item]\r\n<p>cPanel Included</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color4)\"]\r\n<p>Daily Backup</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\r\n<p>Lifetime Support</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"no\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color5)\" button_gradient_bottom_color_hover=\"var(--awb-color5)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 85),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 85),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\"]30% off[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]\r\n<p>business hosting pack</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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$49 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\r\n<p>Hosting made simple &#8211; for beginners and experts alike.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]20 Websites[/fusion_li_item][fusion_li_item]\r\n<p>Free SSL Certificate</p>\r\n[/fusion_li_item][fusion_li_item]30 GB SSD Storage[/fusion_li_item][fusion_li_item]\r\n<p>cPanel Included</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Daily Backup</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Lifetime Support</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Hosting FAQ\'s\" margin_bottom=\"80px\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6InRpbHQiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoib3Bwb3NpdGUiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiIiLCJpbmZpbml0ZV9hbmltYXRpb25fc3BlZWQiOiIifV0=\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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=\"center\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\" max_width=\"1000px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.png[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]frequently asked questions[/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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\" content_alignment=\"center\" margin_bottom=\"60px\"]\r\n<p>Dignismos sinte iure taques dolore tempore unde magnis cuibus<br />&nbsp;atque laborum&nbsp;sed knam galisum repudiane</p>\r\n[/fusion_text][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"60px\" padding_right=\"60px\" padding_bottom=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 95%))\" last=\"no\" border_position=\"all\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" min_height=\"\" link=\"\"][fusion_accordion border_size=\"0\" title_tag=\"h4\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" boxed_mode=\"yes\" padding_top=\"10px\" padding_bottom=\"10px\" icon_size=\"18\" icon_box_color=\"var(--awb-color4)\" padding_right=\"10px\" padding_left=\"10px\" hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color1)\" icon_alignment=\"right\"][fusion_toggle title=\"How avada hosting help business succeed?\" open=\"no\"]\r\n<p>Ea tempore aliquam ut commodi possimus ut quasi asperiores. In porro praesentium cum consect edur doloribus accusan tium quos aut dignissimos aspernatur rem dicta nisi. Est neque laborum ad eius itaque ad quas blanditiis ut nemo omnis At dignissimos omnis et omnis earum aut placeat fugit. In libero quasi id quisquam aperiam auty.</p>\r\n[/fusion_toggle][fusion_toggle title=\"what are the hosting packages you offer?\" open=\"no\"]\r\n<p>Ea tempore aliquam ut commodi possimus ut quasi asperiores. In porro praesentium cum consect edur doloribus accusan tium quos aut dignissimos aspernatur rem dicta nisi. Est neque laborum ad eius itaque ad quas blanditiis ut nemo omnis At dignissimos omnis et omnis earum aut placeat fugit. In libero quasi id quisquam aperiam auty.</p>\r\n[/fusion_toggle][fusion_toggle title=\"How do I migrate over to your hosting service?\" open=\"no\"]\r\n<p>Ea tempore aliquam ut commodi possimus ut quasi asperiores. In porro praesentium cum consect edur doloribus accusan tium quos aut dignissimos aspernatur rem dicta nisi. Est neque laborum ad eius itaque ad quas blanditiis ut nemo omnis At dignissimos omnis et omnis earum aut placeat fugit. In libero quasi id quisquam aperiam auty.</p>\r\n[/fusion_toggle][fusion_toggle title=\"Why do I need a website?\" open=\"no\"]\r\n<p>Ea tempore aliquam ut commodi possimus ut quasi asperiores. In porro praesentium cum consect edur doloribus accusan tium quos aut dignissimos aspernatur rem dicta nisi. Est neque laborum ad eius itaque ad quas blanditiis ut nemo omnis At dignissimos omnis et omnis earum aut placeat fugit. In libero quasi id quisquam aperiam auty.</p>\r\n[/fusion_toggle][fusion_toggle title=\"Can I talk to support any time of the day?\" open=\"no\"]\r\n<p>Ea tempore aliquam ut commodi possimus ut quasi asperiores. In porro praesentium cum consect edur doloribus accusan tium quos aut dignissimos aspernatur rem dicta nisi. Est neque laborum ad eius itaque ad quas blanditiis ut nemo omnis At dignissimos omnis et omnis earum aut placeat fugit. In libero quasi id quisquam aperiam auty.</p>\r\n[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Website Builder','','publish','closed','closed','','website-builder','','','2023-05-23 18:52:30','2023-05-23 18:52:30','',1004,'https://test-site.goodcausepartners.com/?page_id=1508',0,'page','',0),(766,1,'2023-05-09 20:26:57','2023-05-09 20:26: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\" 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\" admin_label=\"Post Content\" link_color=\"var(--awb-color4)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" spacing_left=\"0\" spacing_right=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\nunlocking the secrets of server uptime\r\n\r\n[/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[fusion_dropcap color=\"var(--awb-color4)\" text_color=\"\" boxed=\"yes\" boxed_radius=\"5px\" class=\"\" id=\"\"]B[/fusion_dropcap]aulpa voluptatem et dolorem rerum aut necessitatibus provident sed eligendi dolor rem nulla eveniet. Non voluptatem nisi et natus incidunt et dolores rerum qui nihil corporis. Qui quos asperiores et sint sequi dolor iste emst provident Quis. Ad excepturi esse et beatae molestiae ut natus molestiae ut officiis officia.\r\n\r\nIn dolor labore 33 rerum rerum cum galisum tempore ut architecto quam sit eror saepe. Ex minus quis est nesciu nt autem et molestiae internos At harum dolorem ex modi tempore?\r\n\r\n[/fusion_text][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color5)\" margin_bottom=\"25px\"][fusion_li_item]\r\n\r\n<strong>Maximize your website\'s potential</strong>\r\n\r\n[/fusion_li_item][fusion_li_item]\r\n\r\n<strong>Get the speed and performance you need</strong>\r\n\r\n[/fusion_li_item][fusion_li_item]\r\n\r\n<strong>Future-proof your website with hosting technology</strong>\r\n\r\n[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\nensuring your website is always accessible\r\n\r\n[/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\" margin_bottom=\"40px\"]Vel corrupti omnis non reprehenderit omnis et rerum consequuntur vel aspernatur vitae nam itaque error hic minima voluptas. Et placeat quae id iure natus qui doloribus voluptatem est rerum neque aut internos enim qui provident consequatur! In autem provident non sequi pariatur est maiores culpa est velit recusandae non ipsum ipsum.\r\n\r\nNam unde galisum sed sunt veritatis <span style=\"color: var(--awb-color4);\"><a href=\"#\">non asperiores quia id excepturi</a></span> repudiandae qui odit iusto. Ut blanditiis incidunt et molestiae laudantium qui dolores ducimus non sint corporis aut quae galisum et nisi recusandae. Et odio galisum qui dolore soluta et voluptatem magni.\r\n\r\nQui error unde est possimus repellat qui ipsa rerum! Et eaque nihil ex voluptatem dolorem ut nulla incidunt id inventore animi aut repellendus dolorem quo omnis neque et dolore rerum?[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"110\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"120\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1030|full\" borderradius=\"5px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-image-1.jpg[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"40px\" last=\"true\" border_position=\"all\" padding_top_small=\"40px\" padding_left_medium=\"20px\" padding_right_small=\"40px\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\njump to a similar post\r\n\r\n[/fusion_title][fusion_post_cards post_card=\"814\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"1\" 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\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"1\" columns_small=\"0\" columns=\"1\" column_spacing=\"40\" row_spacing=\"0\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][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\" margin_bottom=\"40px\" margin_top=\"40px\"]\r\n\r\nEst omnis accusamus sed dolorum veniam qui dolores quae est ratione reprehenderit. Es temporibus sunt quo quos nihil ea quibusdam rerum non sunt placeat. Sit nulla eius sit tempore quam et tempora ratione sed porred molestiae non odio sed ipsum consequuntur voluptatem omnis ea quisquam.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\nart of website migration: the seamless transition\r\n\r\n[/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\r\nAd esse quos est eaque libero et dignissimos dolores et dolor aperiam non adipisci possimus sed fugiat assumenda eos ipsa quas. Et soluta maiores est quia internos eos eius quidem qui nemo quibusdam sit nostrum consequuntur ut laudantium magni. Qui numquam fuga quo facilis similique sed odit iusto sit molestiae accusamus.\r\n\r\n[/fusion_text][fusion_progress percentage=\"70\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"yes\" animated_stripes=\"yes\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\"]Website Speed Optimization[/fusion_progress][fusion_progress percentage=\"90\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"yes\" animated_stripes=\"no\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\" margin_bottom=\"10px\" filledcolor=\"var(--awb-color4)\"]Managed WordPress Hosting[/fusion_progress][fusion_progress percentage=\"80\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"no\" animated_stripes=\"no\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\" margin_bottom=\"10px\"]Generate Leads &amp; Earn Money[/fusion_progress][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\" margin_bottom=\"60px\" margin_top=\"40px\" columns=\"2\"]\r\n\r\nEst omnis accusamus sed dolorum veniam qui dolores quae est ratione reprehenderit. Es temporibus sunt quo quos nihil ea quibusdam rerum non sunt placeat. Sit nulla eius sit tempore quam et tempora ratione sed porred molestiae non odio sed ipsum consequuntur volupta em omnis quisquam repellendus consequuntur est facere sequi et temporibus nobis. Eum labore mollitia cum delectus quia ut rerum accusantium. Qui quod enim aut illo error aut laboriosam.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','10 questions to ask before choosing a hosting service for your website','Rhoncus tellus pretium urna turpis sed vitae sit. Fringilla euismod quis amet suspendise tempus. Mauris quis vulputate.','draft','open','open','','10-questions-to-ask-before-choosing-a-hosting-service-for-your-website','','','2023-08-22 20:53:38','2023-08-22 20:53:38','',0,'https://test-site.goodcausepartners.com/?p=766',0,'post','',0),(769,1,'2023-05-09 20:29:19','2023-05-09 20:29: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\" 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\" admin_label=\"Post Content\" link_color=\"var(--awb-color4)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" spacing_left=\"0\" spacing_right=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\nsecure your website, protect your online presence\r\n\r\n[/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[fusion_dropcap color=\"var(--awb-color4)\" text_color=\"\" boxed=\"yes\" boxed_radius=\"5px\" class=\"\" id=\"\"]B[/fusion_dropcap]aulpa voluptatem et dolorem rerum aut necessitatibus provident sed eligendi dolor rem nulla eveniet. Non voluptatem nisi et natus incidunt et dolores rerum qui nihil corporis. Qui quos asperiores et sint sequi dolor iste emst provident Quis. Ad excepturi esse et beatae molestiae ut natus molestiae ut officiis officia.\r\n\r\nIn dolor labore 33 rerum rerum cum galisum tempore ut architecto quam sit eror saepe. Ex minus quis est nesciu nt autem et molestiae internos At harum dolorem ex modi tempore?\r\n\r\n[/fusion_text][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color5)\" margin_bottom=\"25px\"][fusion_li_item]\r\n\r\n<strong>Maximize your website\'s potential</strong>\r\n\r\n[/fusion_li_item][fusion_li_item]\r\n\r\n<strong>Get the speed and performance you need</strong>\r\n\r\n[/fusion_li_item][fusion_li_item]\r\n\r\n<strong>Future-proof your website with hosting technology</strong>\r\n\r\n[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\nensuring your website is always accessible\r\n\r\n[/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\" margin_bottom=\"40px\"]Vel corrupti omnis non reprehenderit omnis et rerum consequuntur vel aspernatur vitae nam itaque error hic minima voluptas. Et placeat quae id iure natus qui doloribus voluptatem est rerum neque aut internos enim qui provident consequatur! In autem provident non sequi pariatur est maiores culpa est velit recusandae non ipsum ipsum.\r\n\r\nNam unde galisum sed sunt veritatis <span style=\"color: var(--awb-color4);\"><a href=\"#\">non asperiores quia id excepturi</a></span> repudiandae qui odit iusto. Ut blanditiis incidunt et molestiae laudantium qui dolores ducimus non sint corporis aut quae galisum et nisi recusandae. Et odio galisum qui dolore soluta et voluptatem magni.\r\n\r\nQui error unde est possimus repellat qui ipsa rerum! Et eaque nihil ex voluptatem dolorem ut nulla incidunt id inventore animi aut repellendus dolorem quo omnis neque et dolore rerum?[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"110\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"120\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1030|full\" borderradius=\"5px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-image-1.jpg[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"40px\" last=\"true\" border_position=\"all\" padding_top_small=\"40px\" padding_left_medium=\"20px\" padding_right_small=\"40px\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\njump to a similar post\r\n\r\n[/fusion_title][fusion_post_cards post_card=\"814\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"1\" 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\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"1\" columns_small=\"0\" columns=\"1\" column_spacing=\"40\" row_spacing=\"0\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][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\" margin_bottom=\"40px\" margin_top=\"40px\"]\r\n\r\nEst omnis accusamus sed dolorum veniam qui dolores quae est ratione reprehenderit. Es temporibus sunt quo quos nihil ea quibusdam rerum non sunt placeat. Sit nulla eius sit tempore quam et tempora ratione sed porred molestiae non odio sed ipsum consequuntur voluptatem omnis ea quisquam.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\nart of website migration: the seamless transition\r\n\r\n[/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\r\nAd esse quos est eaque libero et dignissimos dolores et dolor aperiam non adipisci possimus sed fugiat assumenda eos ipsa quas. Et soluta maiores est quia internos eos eius quidem qui nemo quibusdam sit nostrum consequuntur ut laudantium magni. Qui numquam fuga quo facilis similique sed odit iusto sit molestiae accusamus.\r\n\r\n[/fusion_text][fusion_progress percentage=\"70\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"yes\" animated_stripes=\"yes\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\"]Website Speed Optimization[/fusion_progress][fusion_progress percentage=\"90\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"yes\" animated_stripes=\"no\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\" margin_bottom=\"10px\" filledcolor=\"var(--awb-color4)\"]Managed WordPress Hosting[/fusion_progress][fusion_progress percentage=\"80\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"no\" animated_stripes=\"no\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\" margin_bottom=\"10px\"]Generate Leads &amp; Earn Money[/fusion_progress][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\" margin_bottom=\"60px\" margin_top=\"40px\" columns=\"2\"]\r\n\r\nEst omnis accusamus sed dolorum veniam qui dolores quae est ratione reprehenderit. Es temporibus sunt quo quos nihil ea quibusdam rerum non sunt placeat. Sit nulla eius sit tempore quam et tempora ratione sed porred molestiae non odio sed ipsum consequuntur volupta em omnis quisquam repellendus consequuntur est facere sequi et temporibus nobis. Eum labore mollitia cum delectus quia ut rerum accusantium. Qui quod enim aut illo error aut laboriosam.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Why security should be a top priority when choosing a hosting service','Cursus in id ut congue commodo. Arcu nullam nibh elit elementum dictumst ultricies turpis cras. Mattis elementum.','draft','open','open','','why-security-should-be-a-top-priority-when-choosing-a-hosting-service','','','2023-08-22 20:53:38','2023-08-22 20:53:38','',0,'https://test-site.goodcausepartners.com/?p=769',0,'post','',0),(772,1,'2023-05-09 20:33:07','2023-05-09 20:33: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\" 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\" admin_label=\"Post Content\" link_color=\"var(--awb-color4)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" spacing_left=\"0\" spacing_right=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\ncertain hosting plans have resource limitations\r\n\r\n[/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[fusion_dropcap color=\"var(--awb-color4)\" text_color=\"\" boxed=\"yes\" boxed_radius=\"5px\" class=\"\" id=\"\"]B[/fusion_dropcap]aulpa voluptatem et dolorem rerum aut necessitatibus provident sed eligendi dolor rem nulla eveniet. Non voluptatem nisi et natus incidunt et dolores rerum qui nihil corporis. Qui quos asperiores et sint sequi dolor iste emst provident Quis. Ad excepturi esse et beatae molestiae ut natus molestiae ut officiis officia.\r\n\r\nIn dolor labore 33 rerum rerum cum galisum tempore ut architecto quam sit eror saepe. Ex minus quis est nesciu nt autem et molestiae internos At harum dolorem ex modi tempore?\r\n\r\n[/fusion_text][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color5)\" margin_bottom=\"25px\"][fusion_li_item]\r\n\r\n<strong>Maximize your website\'s potential</strong>\r\n\r\n[/fusion_li_item][fusion_li_item]\r\n\r\n<strong>Get the speed and performance you need</strong>\r\n\r\n[/fusion_li_item][fusion_li_item]\r\n\r\n<strong>Future-proof your website with hosting technology</strong>\r\n\r\n[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\nensuring your website is always accessible\r\n\r\n[/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\" margin_bottom=\"40px\"]Vel corrupti omnis non reprehenderit omnis et rerum consequuntur vel aspernatur vitae nam itaque error hic minima voluptas. Et placeat quae id iure natus qui doloribus voluptatem est rerum neque aut internos enim qui provident consequatur! In autem provident non sequi pariatur est maiores culpa est velit recusandae non ipsum ipsum.\r\n\r\nNam unde galisum sed sunt veritatis <span style=\"color: var(--awb-color4);\"><a href=\"#\">non asperiores quia id excepturi</a></span> repudiandae qui odit iusto. Ut blanditiis incidunt et molestiae laudantium qui dolores ducimus non sint corporis aut quae galisum et nisi recusandae. Et odio galisum qui dolore soluta et voluptatem magni.\r\n\r\nQui error unde est possimus repellat qui ipsa rerum! Et eaque nihil ex voluptatem dolorem ut nulla incidunt id inventore animi aut repellendus dolorem quo omnis neque et dolore rerum?[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"110\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"120\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1030|full\" borderradius=\"5px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-image-1.jpg[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"40px\" last=\"true\" border_position=\"all\" padding_top_small=\"40px\" padding_left_medium=\"20px\" padding_right_small=\"40px\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\njump to a similar post\r\n\r\n[/fusion_title][fusion_post_cards post_card=\"814\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"1\" 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\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"1\" columns_small=\"0\" columns=\"1\" column_spacing=\"40\" row_spacing=\"0\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][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\" margin_bottom=\"40px\" margin_top=\"40px\"]\r\n\r\nEst omnis accusamus sed dolorum veniam qui dolores quae est ratione reprehenderit. Es temporibus sunt quo quos nihil ea quibusdam rerum non sunt placeat. Sit nulla eius sit tempore quam et tempora ratione sed porred molestiae non odio sed ipsum consequuntur voluptatem omnis ea quisquam.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\nart of website migration: the seamless transition\r\n\r\n[/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\r\nAd esse quos est eaque libero et dignissimos dolores et dolor aperiam non adipisci possimus sed fugiat assumenda eos ipsa quas. Et soluta maiores est quia internos eos eius quidem qui nemo quibusdam sit nostrum consequuntur ut laudantium magni. Qui numquam fuga quo facilis similique sed odit iusto sit molestiae accusamus.\r\n\r\n[/fusion_text][fusion_progress percentage=\"70\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"yes\" animated_stripes=\"yes\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\"]Website Speed Optimization[/fusion_progress][fusion_progress percentage=\"90\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"yes\" animated_stripes=\"no\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\" margin_bottom=\"10px\" filledcolor=\"var(--awb-color4)\"]Managed WordPress Hosting[/fusion_progress][fusion_progress percentage=\"80\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"no\" animated_stripes=\"no\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\" margin_bottom=\"10px\"]Generate Leads &amp; Earn Money[/fusion_progress][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\" margin_bottom=\"60px\" margin_top=\"40px\" columns=\"2\"]\r\n\r\nEst omnis accusamus sed dolorum veniam qui dolores quae est ratione reprehenderit. Es temporibus sunt quo quos nihil ea quibusdam rerum non sunt placeat. Sit nulla eius sit tempore quam et tempora ratione sed porred molestiae non odio sed ipsum consequuntur volupta em omnis quisquam repellendus consequuntur est facere sequi et temporibus nobis. Eum labore mollitia cum delectus quia ut rerum accusantium. Qui quod enim aut illo error aut laboriosam.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','The pros and cons of free hosting services: Why you get what you pay for','Rhoncus tellus pretium urna turpis sed vitae sit. Fringilla euismod quis amet suspendise tempus. Mauris quis vulputate.','draft','open','open','','the-pros-and-cons-of-free-hosting-services-why-you-get-what-you-pay-for','','','2023-08-22 20:53:38','2023-08-22 20:53:38','',0,'https://test-site.goodcausepartners.com/?p=772',0,'post','',0),(774,1,'2023-05-09 20:35:06','2023-05-09 20: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\" 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\" admin_label=\"Post Content\" link_color=\"var(--awb-color4)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" spacing_left=\"0\" spacing_right=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\nunlocking the secrets of server uptime\r\n\r\n[/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[fusion_dropcap color=\"var(--awb-color4)\" text_color=\"\" boxed=\"yes\" boxed_radius=\"5px\" class=\"\" id=\"\"]B[/fusion_dropcap]aulpa voluptatem et dolorem rerum aut necessitatibus provident sed eligendi dolor rem nulla eveniet. Non voluptatem nisi et natus incidunt et dolores rerum qui nihil corporis. Qui quos asperiores et sint sequi dolor iste emst provident Quis. Ad excepturi esse et beatae molestiae ut natus molestiae ut officiis officia.\r\n\r\nIn dolor labore 33 rerum rerum cum galisum tempore ut architecto quam sit eror saepe. Ex minus quis est nesciu nt autem et molestiae internos At harum dolorem ex modi tempore?\r\n\r\n[/fusion_text][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color5)\" margin_bottom=\"25px\"][fusion_li_item]\r\n\r\n<strong>Maximize your website\'s potential</strong>\r\n\r\n[/fusion_li_item][fusion_li_item]\r\n\r\n<strong>Get the speed and performance you need</strong>\r\n\r\n[/fusion_li_item][fusion_li_item]\r\n\r\n<strong>Future-proof your website with hosting technology</strong>\r\n\r\n[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\nensuring your website is always accessible\r\n\r\n[/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\" margin_bottom=\"40px\"]Vel corrupti omnis non reprehenderit omnis et rerum consequuntur vel aspernatur vitae nam itaque error hic minima voluptas. Et placeat quae id iure natus qui doloribus voluptatem est rerum neque aut internos enim qui provident consequatur! In autem provident non sequi pariatur est maiores culpa est velit recusandae non ipsum ipsum.\r\n\r\nNam unde galisum sed sunt veritatis <span style=\"color: var(--awb-color4);\"><a href=\"#\">non asperiores quia id excepturi</a></span> repudiandae qui odit iusto. Ut blanditiis incidunt et molestiae laudantium qui dolores ducimus non sint corporis aut quae galisum et nisi recusandae. Et odio galisum qui dolore soluta et voluptatem magni.\r\n\r\nQui error unde est possimus repellat qui ipsa rerum! Et eaque nihil ex voluptatem dolorem ut nulla incidunt id inventore animi aut repellendus dolorem quo omnis neque et dolore rerum?[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"110\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"120\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1030|full\" borderradius=\"5px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-image-1.jpg[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"40px\" last=\"true\" border_position=\"all\" padding_top_small=\"40px\" padding_left_medium=\"20px\" padding_right_small=\"40px\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\njump to a similar post\r\n\r\n[/fusion_title][fusion_post_cards post_card=\"814\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"1\" 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\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"1\" columns_small=\"0\" columns=\"1\" column_spacing=\"40\" row_spacing=\"0\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][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\" margin_bottom=\"40px\" margin_top=\"40px\"]\r\n\r\nEst omnis accusamus sed dolorum veniam qui dolores quae est ratione reprehenderit. Es temporibus sunt quo quos nihil ea quibusdam rerum non sunt placeat. Sit nulla eius sit tempore quam et tempora ratione sed porred molestiae non odio sed ipsum consequuntur voluptatem omnis ea quisquam.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\nart of website migration: the seamless transition\r\n\r\n[/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\r\nAd esse quos est eaque libero et dignissimos dolores et dolor aperiam non adipisci possimus sed fugiat assumenda eos ipsa quas. Et soluta maiores est quia internos eos eius quidem qui nemo quibusdam sit nostrum consequuntur ut laudantium magni. Qui numquam fuga quo facilis similique sed odit iusto sit molestiae accusamus.\r\n\r\n[/fusion_text][fusion_progress percentage=\"70\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"yes\" animated_stripes=\"yes\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\"]Website Speed Optimization[/fusion_progress][fusion_progress percentage=\"90\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"yes\" animated_stripes=\"no\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\" margin_bottom=\"10px\" filledcolor=\"var(--awb-color4)\"]Managed WordPress Hosting[/fusion_progress][fusion_progress percentage=\"80\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"no\" animated_stripes=\"no\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\" margin_bottom=\"10px\"]Generate Leads &amp; Earn Money[/fusion_progress][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\" margin_bottom=\"60px\" margin_top=\"40px\" columns=\"2\"]\r\n\r\nEst omnis accusamus sed dolorum veniam qui dolores quae est ratione reprehenderit. Es temporibus sunt quo quos nihil ea quibusdam rerum non sunt placeat. Sit nulla eius sit tempore quam et tempora ratione sed porred molestiae non odio sed ipsum consequuntur volupta em omnis quisquam repellendus consequuntur est facere sequi et temporibus nobis. Eum labore mollitia cum delectus quia ut rerum accusantium. Qui quod enim aut illo error aut laboriosam.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','How our hosting service can improve your website\'s speed and performance','Cursus in id ut congue commodo. Arcu nullam nibh elit elementum dictumst ultricies turpis cras. Mattis elementum.','draft','open','open','','how-our-hosting-service-can-improve-your-websites-speed-and-performance','','','2023-08-22 20:53:38','2023-08-22 20:53:38','',0,'https://test-site.goodcausepartners.com/?p=774',0,'post','',0),(776,1,'2023-05-09 20:38:53','2023-05-09 20:38: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\" 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\" admin_label=\"Post Content\" link_color=\"var(--awb-color4)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" spacing_left=\"0\" spacing_right=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\nunlocking the secrets of server uptime\r\n\r\n[/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[fusion_dropcap color=\"var(--awb-color4)\" text_color=\"\" boxed=\"yes\" boxed_radius=\"5px\" class=\"\" id=\"\"]B[/fusion_dropcap]aulpa voluptatem et dolorem rerum aut necessitatibus provident sed eligendi dolor rem nulla eveniet. Non voluptatem nisi et natus incidunt et dolores rerum qui nihil corporis. Qui quos asperiores et sint sequi dolor iste emst provident Quis. Ad excepturi esse et beatae molestiae ut natus molestiae ut officiis officia.\r\n\r\nIn dolor labore 33 rerum rerum cum galisum tempore ut architecto quam sit eror saepe. Ex minus quis est nesciu nt autem et molestiae internos At harum dolorem ex modi tempore?\r\n\r\n[/fusion_text][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color5)\" margin_bottom=\"25px\"][fusion_li_item]\r\n\r\n<strong>Maximize your website\'s potential</strong>\r\n\r\n[/fusion_li_item][fusion_li_item]\r\n\r\n<strong>Get the speed and performance you need</strong>\r\n\r\n[/fusion_li_item][fusion_li_item]\r\n\r\n<strong>Future-proof your website with hosting technology</strong>\r\n\r\n[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\nensuring your website is always accessible\r\n\r\n[/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\" margin_bottom=\"40px\"]Vel corrupti omnis non reprehenderit omnis et rerum consequuntur vel aspernatur vitae nam itaque error hic minima voluptas. Et placeat quae id iure natus qui doloribus voluptatem est rerum neque aut internos enim qui provident consequatur! In autem provident non sequi pariatur est maiores culpa est velit recusandae non ipsum ipsum.\r\n\r\nNam unde galisum sed sunt veritatis <span style=\"color: var(--awb-color4);\"><a href=\"#\">non asperiores quia id excepturi</a></span> repudiandae qui odit iusto. Ut blanditiis incidunt et molestiae laudantium qui dolores ducimus non sint corporis aut quae galisum et nisi recusandae. Et odio galisum qui dolore soluta et voluptatem magni.\r\n\r\nQui error unde est possimus repellat qui ipsa rerum! Et eaque nihil ex voluptatem dolorem ut nulla incidunt id inventore animi aut repellendus dolorem quo omnis neque et dolore rerum?[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"110\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"120\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1030|full\" borderradius=\"5px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-image-1.jpg[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"40px\" last=\"true\" border_position=\"all\" padding_top_small=\"40px\" padding_left_medium=\"20px\" padding_right_small=\"40px\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\njump to a similar post\r\n\r\n[/fusion_title][fusion_post_cards post_card=\"814\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"1\" 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\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"1\" columns_small=\"0\" columns=\"1\" column_spacing=\"40\" row_spacing=\"0\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][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\" margin_bottom=\"40px\" margin_top=\"40px\"]\r\n\r\nEst omnis accusamus sed dolorum veniam qui dolores quae est ratione reprehenderit. Es temporibus sunt quo quos nihil ea quibusdam rerum non sunt placeat. Sit nulla eius sit tempore quam et tempora ratione sed porred molestiae non odio sed ipsum consequuntur voluptatem omnis ea quisquam.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\nart of website migration: the seamless transition\r\n\r\n[/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\r\nAd esse quos est eaque libero et dignissimos dolores et dolor aperiam non adipisci possimus sed fugiat assumenda eos ipsa quas. Et soluta maiores est quia internos eos eius quidem qui nemo quibusdam sit nostrum consequuntur ut laudantium magni. Qui numquam fuga quo facilis similique sed odit iusto sit molestiae accusamus.\r\n\r\n[/fusion_text][fusion_progress percentage=\"70\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"yes\" animated_stripes=\"yes\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\"]Website Speed Optimization[/fusion_progress][fusion_progress percentage=\"90\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"yes\" animated_stripes=\"no\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\" margin_bottom=\"10px\" filledcolor=\"var(--awb-color4)\"]Managed WordPress Hosting[/fusion_progress][fusion_progress percentage=\"80\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"no\" animated_stripes=\"no\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\" margin_bottom=\"10px\"]Generate Leads &amp; Earn Money[/fusion_progress][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\" margin_bottom=\"60px\" margin_top=\"40px\" columns=\"2\"]\r\n\r\nEst omnis accusamus sed dolorum veniam qui dolores quae est ratione reprehenderit. Es temporibus sunt quo quos nihil ea quibusdam rerum non sunt placeat. Sit nulla eius sit tempore quam et tempora ratione sed porred molestiae non odio sed ipsum consequuntur volupta em omnis quisquam repellendus consequuntur est facere sequi et temporibus nobis. Eum labore mollitia cum delectus quia ut rerum accusantium. Qui quod enim aut illo error aut laboriosam.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','From shared to dedicated hosting: Which service is right for You and why?','Rhoncus tellus pretium urna turpis sed vitae sit. Fringilla euismod quis amet suspendise tempus. Mauris quis vulputate.','draft','open','open','','from-shared-to-dedicated-hosting-which-service-is-right-for-you-and-why','','','2023-08-22 20:53:38','2023-08-22 20:53:38','',0,'https://test-site.goodcausepartners.com/?p=776',0,'post','',0),(1256,1,'2023-05-17 17:17:14','2023-05-17 17:17: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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Post Content\" link_color=\"var(--awb-color4)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" spacing_left=\"0\" spacing_right=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n<p>unlocking the secrets of server uptime</p>\r\n[/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[fusion_dropcap color=\"var(--awb-color4)\" text_color=\"\" boxed=\"yes\" boxed_radius=\"5px\" class=\"\" id=\"\"]B[/fusion_dropcap]aulpa voluptatem et dolorem rerum aut necessitatibus provident sed eligendi dolor rem nulla eveniet. Non voluptatem nisi et natus incidunt et dolores rerum qui nihil corporis. Qui quos asperiores et sint sequi dolor iste emst provident Quis. Ad excepturi esse et beatae molestiae ut natus molestiae ut officiis officia.</p>\r\n<p>In dolor labore 33 rerum rerum cum galisum tempore ut architecto quam sit eror saepe. Ex minus quis est nesciu nt autem et molestiae internos At harum dolorem ex modi tempore?</p>\r\n[/fusion_text][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color5)\" margin_bottom=\"25px\"][fusion_li_item]\r\n<p><strong>Maximize your website\'s potential</strong></p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p><strong>Get the speed and performance you need</strong></p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p><strong>Future-proof your website with hosting technology</strong></p>\r\n[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n<p>ensuring your website is always accessible</p>\r\n[/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\" margin_bottom=\"40px\"]Vel corrupti omnis non reprehenderit omnis et rerum consequuntur vel aspernatur vitae nam itaque error hic minima voluptas. Et placeat quae id iure natus qui doloribus voluptatem est rerum neque aut internos enim qui provident consequatur! In autem provident non sequi pariatur est maiores culpa est velit recusandae non ipsum ipsum.</p>\r\n<p>Nam unde galisum sed sunt veritatis <span style=\"color: var(--awb-color4);\"><a href=\"#\">non asperiores quia id excepturi</a></span> repudiandae qui odit iusto. Ut blanditiis incidunt et molestiae laudantium qui dolores ducimus non sint corporis aut quae galisum et nisi recusandae. Et odio galisum qui dolore soluta et voluptatem magni.</p>\r\n<p>Qui error unde est possimus repellat qui ipsa rerum! Et eaque nihil ex voluptatem dolorem ut nulla incidunt id inventore animi aut repellendus dolorem quo omnis neque et dolore rerum?[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"110\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"120\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1030|full\" borderradius=\"5px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-image-1.jpg[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"40px\" last=\"true\" border_position=\"all\" padding_top_small=\"40px\" padding_left_medium=\"20px\" padding_right_small=\"40px\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>jump to a similar post</p>\r\n[/fusion_title][fusion_post_cards post_card=\"814\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"1\" 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\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"1\" columns_small=\"0\" columns=\"1\" column_spacing=\"40\" row_spacing=\"0\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][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\" margin_bottom=\"40px\" margin_top=\"40px\"]\r\n<p>Est omnis accusamus sed dolorum veniam qui dolores quae est ratione reprehenderit. Es temporibus sunt quo quos nihil ea quibusdam rerum non sunt placeat. Sit nulla eius sit tempore quam et tempora ratione sed porred molestiae non odio sed ipsum consequuntur voluptatem omnis ea quisquam.</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=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n<p>art of website migration: the seamless transition</p>\r\n[/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>Ad esse quos est eaque libero et dignissimos dolores et dolor aperiam non adipisci possimus sed fugiat assumenda eos ipsa quas. Et soluta maiores est quia internos eos eius quidem qui nemo quibusdam sit nostrum consequuntur ut laudantium magni. Qui numquam fuga quo facilis similique sed odit iusto sit molestiae accusamus.</p>\r\n[/fusion_text][fusion_progress percentage=\"70\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"yes\" animated_stripes=\"yes\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\"]Website Speed Optimization[/fusion_progress][fusion_progress percentage=\"90\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"yes\" animated_stripes=\"no\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\" margin_bottom=\"10px\" filledcolor=\"var(--awb-color4)\"]Managed WordPress Hosting[/fusion_progress][fusion_progress percentage=\"80\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"no\" animated_stripes=\"no\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\" margin_bottom=\"10px\"]Generate Leads &amp; Earn Money[/fusion_progress][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\" margin_bottom=\"60px\" margin_top=\"40px\" columns=\"2\"]\r\n<p>Est omnis accusamus sed dolorum veniam qui dolores quae est ratione reprehenderit. Es temporibus sunt quo quos nihil ea quibusdam rerum non sunt placeat. Sit nulla eius sit tempore quam et tempora ratione sed porred molestiae non odio sed ipsum consequuntur volupta em omnis quisquam repellendus consequuntur est facere sequi et temporibus nobis. Eum labore mollitia cum delectus quia ut rerum accusantium. Qui quod enim aut illo error aut laboriosam.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Maximizing Uptime: How reliable hosting ensures your website stays online','Cursus in id ut congue commodo. Arcu nullam nibh elit elementum dictumst ultricies turpis cras. Mattis elementum.','draft','open','open','','maximizing-uptime-how-reliable-hosting-ensures-your-website-stays-online','','','2023-08-22 20:53:38','2023-08-22 20:53:38','',0,'https://test-site.goodcausepartners.com/?p=1256',0,'post','',0),(1633,1,'2023-05-19 21:05:27','2023-05-19 21:05:27','[fusion_global id=\"1379\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" border_sizes_top=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" admin_label=\"Features Section\" padding_top=\"100px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-server\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color4)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color5)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>hassle-free setup</p>\r\n[/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\" margin_bottom=\"0\"]\r\n<p>Dolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color4)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color5)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>maximum performance</p>\r\n[/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\" margin_bottom=\"0\"]\r\n<p>Dolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-personal-computer\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color4)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color5)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>99% server uptime</p>\r\n[/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\" margin_bottom=\"0\"]\r\n<p>Dolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Features Section\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"no\" border_position=\"all\" padding_top_small=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Get the speed &amp; performance you need with shared hosting[/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\" margin_bottom=\"0\"]Maecenas arcu placerat tempus venenatis. Orci aliquet faucibus estut etsy sociis rutrum dis. Viverra quam lacus duis.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-global-servers\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"60\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]\r\n<p>fast global servers</p>\r\n[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\"]\r\n<p>Lorem ipsum tempore</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-web-analytics\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"60\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]website analytics[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\"]\r\n<p>Lorem ipsum tempore</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\"]start free trial[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\" line_height=\"var(--awb-typography5-line-height)\" margin_top=\"10px\"]* No credit card required[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"triangle\" pattern_bg_style=\"default\" pattern_bg_opacity=\"50\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Pricing Plans\" padding_top=\"100px\" background_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) + 2%),var(--awb-color2-a))\" pattern_bg_size=\"50%\" pattern_bg_color=\"var(--awb-color1)\" padding_bottom=\"100px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" margin_bottom=\"80px\" margin_bottom_small=\"20px\" padding_right=\"10px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]choose your shared web hosting package[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" padding_left=\"40px\" last=\"no\" border_position=\"all\" padding_left_small=\"0\" padding_bottom_small=\"40px\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>Dignismos sinte iure taque dolorem tempore magnis cuibusdam sed knam galisum repudiane</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" margin_bottom_small=\"60px\" 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"no\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color5)\" button_gradient_bottom_color_hover=\"var(--awb-color5)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 280),var(--awb-color5-s),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 280),var(--awb-color5-s),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\"]15% off[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]\r\n<p>single hosting pack</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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$29 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\r\n<p>Hosting made simple &#8211; for beginners and experts alike.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]1 Website[/fusion_li_item][fusion_li_item]\r\n<p>Free SSL Certificate</p>\r\n[/fusion_li_item][fusion_li_item]2 GB SSD Storage[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color4)\"]\r\n<p>cPanel Included</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\r\n<p>Daily Backup</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\r\n<p>Lifetime Support</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" margin_bottom_small=\"60px\" 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"no\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color4)\" button_gradient_bottom_color_hover=\"var(--awb-color4)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 135),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 135),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\"]most popular[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]gold hosting pack[/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$35 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\r\n<p>Hosting made simple &#8211; for beginners and experts alike.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]5 Websites[/fusion_li_item][fusion_li_item]\r\n<p>Free SSL Certificate</p>\r\n[/fusion_li_item][fusion_li_item]15 GB SSD Storage[/fusion_li_item][fusion_li_item]\r\n<p>cPanel Included</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color4)\"]\r\n<p>Daily Backup</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\r\n<p>Lifetime Support</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"no\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color5)\" button_gradient_bottom_color_hover=\"var(--awb-color5)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 85),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 85),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\"]30% off[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]\r\n<p>business hosting pack</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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$49 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\r\n<p>Hosting made simple &#8211; for beginners and experts alike.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]20 Websites[/fusion_li_item][fusion_li_item]\r\n<p>Free SSL Certificate</p>\r\n[/fusion_li_item][fusion_li_item]30 GB SSD Storage[/fusion_li_item][fusion_li_item]\r\n<p>cPanel Included</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Daily Backup</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Lifetime Support</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Hosting Features - TABS\"][fusion_builder_row][fusion_builder_column type=\"1_6\" type=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" margin_bottom=\"60px\" padding_right=\"60px\" padding_left=\"60px\" min_height=\"\" link=\"\"][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\" content_alignment=\"center\" text_color=\"var(--awb-color5)\" margin_bottom=\"10px\"]\r\n<p>Binte cailuy tiure aliquid enim tempore</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=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]avada hosting service - best choice for business owners[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_6\" type=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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=\"120\" transform_translate_y=\"20\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"120\" transform_translate_y_hover=\"20\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoic2NhbGUiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiMy41IiwibWF4X3NjYWxlIjoiMSIsIm1pbl9zY2FsZSI6IiIsImluaXRpYWxfcm90YXRlIjoiIiwiZW5kX3JvdGF0ZSI6IiIsImluaXRpYWxfYmx1ciI6IiIsImVuZF9ibHVyIjoiIiwic3RhcnRfZWxlbWVudCI6ImJvdHRvbSIsInN0YXJ0X3ZpZXdwb3J0IjoiIiwiZW5kX2VsZW1lbnQiOiJjZW50ZXIiLCJlbmRfdmlld3BvcnQiOiJjZW50ZXIiLCJtb3VzZV9lZmZlY3QiOiIiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoiIiwibW91c2VfZWZmZWN0X3NwZWVkIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uX3NwZWVkIjoiIn0seyJ0eXBlIjoic2Nyb2xsIiwic2Nyb2xsX3R5cGUiOiJ0cmFuc2l0aW9uIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImxlZnQiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMi4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIzLjUiLCJtYXhfc2NhbGUiOiIxLjAiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoiY2VudGVyIiwiZW5kX3ZpZXdwb3J0IjoiIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-server-solid\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"hsla(var(--awb-color2-h),var(--awb-color2-s),var(--awb-color2-l),calc(var(--awb-color2-a) - 30%))\" iconcolor_hover=\"hsla(var(--awb-color2-h),var(--awb-color2-s),var(--awb-color2-l),calc(var(--awb-color2-a) - 30%))\" size=\"140\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" margin_bottom=\"100px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_tabs design=\"classic\" layout=\"horizontal\" justified=\"yes\" alignment=\"start\" sticky_tabs=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_tag=\"h4\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_font=\"var(--awb-typography2-font-family)\" title_font_size=\"var(--awb-typography2-font-size)\" title_line_height=\"var(--awb-typography2-line-height)\" title_letter_spacing=\"var(--awb-typography2-letter-spacing)\" title_text_transform=\"capitalize\" title_padding_top=\"15px\" title_padding_bottom=\"15px\" bordercolor=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" content_padding_right=\"40px\" content_padding_left=\"40px\" content_padding_bottom=\"30px\" margin_bottom=\"0px\"][fusion_tab title=\"global data centers\"]\r\n<p><img class=\"alignnone size-full wp-image-1249\" style=\"margin: 40px 0px 30px 0px;\" src=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/blog-image-7.jpg\" alt=\"\" width=\"1160\" height=\"700\"></p>\r\n<h4>Maximize your website\'s potential with avada hosting</h4>\r\n<p>Vestibulum leo eros condimen tum vitae ante molestie, comm eado feugiat sapien. Quisque consectetur nunc sit amet congue sodales. Phasellus interdum gravida tortor, vulputate luctus sapien iaculis eu. Nullam id justo enim. Phasellus dictum viverra interdum. Quisque eu tortor vel turpis scelerisque luctus. Vivamus lacinia, eros vitae tempor pellentesque, odio orci finibus lacus sempers.</p>\r\n[/fusion_tab][fusion_tab title=\"benefits of hosting\"]\r\n<p><img class=\"alignnone size-full wp-image-1254\" style=\"margin: 40px 0px 30px 0px;\" src=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/blog-image-10.jpg\" alt=\"\" width=\"1160\" height=\"700\"></p>\r\n<h4>Elevate your online presence with avada cloud hosting</h4>\r\n<p>Vestibulum leo eros condimen tum vitae ante molestie, comm eado feugiat sapien. Quisque consectetur nunc sit amet congue sodales. Phasellus interdum gravida tortor, vulputate luctus sapien iaculis eu. Nullam id justo enim. Phasellus dictum viverra interdum. Quisque eu tortor vel turpis scelerisque luctus. Vivamus lacinia, eros vitae tempor pellentesque, odio orci finibus lacus sempers.</p>\r\n[/fusion_tab][fusion_tab title=\"fully optimized servers\"]\r\n<p><img class=\"alignnone size-full wp-image-783\" style=\"margin: 40px 0px 30px 0px;\" src=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/blog-image-2.jpg\" alt=\"\" width=\"1160\" height=\"700\"></p>\r\n<h4>Future-proof your website with avada cloud hosting technology</h4>\r\n<p>Vestibulum leo eros condimen tum vitae ante molestie, comm eado feugiat sapien. Quisque consectetur nunc sit amet congue sodales. Phasellus interdum gravida tortor, vulputate luctus sapien iaculis eu. Nullam id justo enim. Phasellus dictum viverra interdum. Quisque eu tortor vel turpis scelerisque luctus. Vivamus lacinia, eros vitae tempor pellentesque, odio orci finibus lacus sempers.</p>\r\n[/fusion_tab][/fusion_tabs][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"][fusion_global id=\"996\"]','Shared Hosting','','inherit','closed','closed','','1373-revision-v1','','','2023-05-19 21:05:27','2023-05-19 21:05:27','',1373,'https://test-site.goodcausepartners.com/?p=1633',0,'revision','',0);
INSERT INTO `wp_gc2023posts` VALUES (1634,1,'2023-05-22 16:11:04','2023-05-22 16:11: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\" 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\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" admin_label=\"Features Section\" padding_top=\"100px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-server\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color5)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color6)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>hassle-free setup</p>\r\n[/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\" margin_bottom=\"0\"]\r\n<p>Dolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color5)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color6)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>maximum performance</p>\r\n[/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\" margin_bottom=\"0\"]\r\n<p>Dolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-personal-computer\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color5)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color6)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>99% server uptime</p>\r\n[/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\" margin_bottom=\"0\"]\r\n<p>Dolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Features Section\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"no\" border_position=\"all\" padding_top_small=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]WordPress experience : unleash the full potential[/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\" margin_bottom=\"0\"]Maecenas arcu placerat tempus venenatis. Orci aliquet faucibus estut etsy sociis rutrum dis. Viverra quam lacus duis.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-global-servers\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"60\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]\r\n<p>fast global servers</p>\r\n[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\"]\r\n<p>Lorem ipsum tempore</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-web-analytics\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"60\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]website analytics[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\"]\r\n<p>Lorem ipsum tempore</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\"]start free trial[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\" line_height=\"var(--awb-typography5-line-height)\" margin_top=\"10px\"]* No credit card required[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"triangle\" pattern_bg_style=\"default\" pattern_bg_opacity=\"50\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Pricing Plans\" padding_top=\"100px\" background_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) + 2%),var(--awb-color2-a))\" pattern_bg_size=\"50%\" pattern_bg_color=\"var(--awb-color1)\" padding_bottom=\"100px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" margin_bottom=\"80px\" margin_bottom_small=\"20px\" padding_right=\"10px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]\r\n<p>choose your WordPress <br />hosting package</p>\r\n[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" padding_left=\"40px\" last=\"no\" border_position=\"all\" padding_left_small=\"0\" padding_bottom_small=\"40px\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>Dignismos sinte iure taque dolorem tempore magnis cuibusdam sed knam galisum repudiane</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"no\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color5)\" button_gradient_bottom_color_hover=\"var(--awb-color5)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 280),var(--awb-color5-s),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 280),var(--awb-color5-s),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\"]15% off[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]\r\n<p>single hosting pack</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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$29 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\r\n<p>Hosting made simple &#8211; for beginners and experts alike.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]1 Website[/fusion_li_item][fusion_li_item]\r\n<p>Free SSL Certificate</p>\r\n[/fusion_li_item][fusion_li_item]2 GB SSD Storage[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color4)\"]\r\n<p>cPanel Included</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\r\n<p>Daily Backup</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\r\n<p>Lifetime Support</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"no\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color4)\" button_gradient_bottom_color_hover=\"var(--awb-color4)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 135),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 135),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\"]most popular[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]gold hosting pack[/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$35 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\r\n<p>Hosting made simple &#8211; for beginners and experts alike.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]5 Websites[/fusion_li_item][fusion_li_item]\r\n<p>Free SSL Certificate</p>\r\n[/fusion_li_item][fusion_li_item]15 GB SSD Storage[/fusion_li_item][fusion_li_item]\r\n<p>cPanel Included</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color4)\"]\r\n<p>Daily Backup</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\r\n<p>Lifetime Support</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"no\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color5)\" button_gradient_bottom_color_hover=\"var(--awb-color5)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 85),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 85),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\"]30% off[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]\r\n<p>business hosting pack</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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$49 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\r\n<p>Hosting made simple &#8211; for beginners and experts alike.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]20 Websites[/fusion_li_item][fusion_li_item]\r\n<p>Free SSL Certificate</p>\r\n[/fusion_li_item][fusion_li_item]30 GB SSD Storage[/fusion_li_item][fusion_li_item]\r\n<p>cPanel Included</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Daily Backup</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Lifetime Support</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1379\"][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"60px\" admin_label=\"Hosting Features - TABS\" margin_bottom=\"80px\"][fusion_builder_row][fusion_builder_column type=\"1_6\" type=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" margin_bottom=\"60px\" padding_right=\"60px\" padding_left=\"60px\" min_height=\"\" link=\"\"][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\" content_alignment=\"center\" text_color=\"var(--awb-color5)\" margin_bottom=\"10px\"]\r\n<p>Binte cailuy tiure aliquid enim tempore</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=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]avada hosting service - best choice for business owners[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_6\" type=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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=\"120\" transform_translate_y=\"20\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"120\" transform_translate_y_hover=\"20\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoic2NhbGUiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiMy41IiwibWF4X3NjYWxlIjoiMSIsIm1pbl9zY2FsZSI6IiIsImluaXRpYWxfcm90YXRlIjoiIiwiZW5kX3JvdGF0ZSI6IiIsImluaXRpYWxfYmx1ciI6IiIsImVuZF9ibHVyIjoiIiwic3RhcnRfZWxlbWVudCI6ImJvdHRvbSIsInN0YXJ0X3ZpZXdwb3J0IjoiIiwiZW5kX2VsZW1lbnQiOiJjZW50ZXIiLCJlbmRfdmlld3BvcnQiOiJjZW50ZXIiLCJtb3VzZV9lZmZlY3QiOiIiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoiIiwibW91c2VfZWZmZWN0X3NwZWVkIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uX3NwZWVkIjoiIn0seyJ0eXBlIjoic2Nyb2xsIiwic2Nyb2xsX3R5cGUiOiJ0cmFuc2l0aW9uIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImxlZnQiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMi4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIzLjUiLCJtYXhfc2NhbGUiOiIxLjAiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoiY2VudGVyIiwiZW5kX3ZpZXdwb3J0IjoiIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-server-solid\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"hsla(var(--awb-color2-h),var(--awb-color2-s),var(--awb-color2-l),calc(var(--awb-color2-a) - 30%))\" iconcolor_hover=\"hsla(var(--awb-color2-h),var(--awb-color2-s),var(--awb-color2-l),calc(var(--awb-color2-a) - 30%))\" size=\"140\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_tabs design=\"classic\" layout=\"horizontal\" justified=\"yes\" alignment=\"start\" sticky_tabs=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_tag=\"h4\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_font=\"var(--awb-typography2-font-family)\" title_font_size=\"var(--awb-typography2-font-size)\" title_line_height=\"var(--awb-typography2-line-height)\" title_letter_spacing=\"var(--awb-typography2-letter-spacing)\" title_text_transform=\"capitalize\" title_padding_top=\"15px\" title_padding_bottom=\"15px\" bordercolor=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" content_padding_right=\"40px\" content_padding_left=\"40px\" content_padding_bottom=\"30px\" margin_bottom=\"0px\"][fusion_tab title=\"global data centers\"]\r\n<p><img class=\"alignnone size-full wp-image-1249\" style=\"margin: 40px 0px 30px 0px;\" src=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/blog-image-7.jpg\" alt=\"\" width=\"1160\" height=\"700\"></p>\r\n<h4>Maximize your website\'s potential with avada hosting</h4>\r\n<p>Vestibulum leo eros condimen tum vitae ante molestie, comm eado feugiat sapien. Quisque consectetur nunc sit amet congue sodales. Phasellus interdum gravida tortor, vulputate luctus sapien iaculis eu. Nullam id justo enim. Phasellus dictum viverra interdum. Quisque eu tortor vel turpis scelerisque luctus. Vivamus lacinia, eros vitae tempor pellentesque, odio orci finibus lacus sempers.</p>\r\n[/fusion_tab][fusion_tab title=\"benefits of hosting\"]\r\n<p><img class=\"alignnone size-full wp-image-1254\" style=\"margin: 40px 0px 30px 0px;\" src=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/blog-image-10.jpg\" alt=\"\" width=\"1160\" height=\"700\"></p>\r\n<h4>Elevate your online presence with avada cloud hosting</h4>\r\n<p>Vestibulum leo eros condimen tum vitae ante molestie, comm eado feugiat sapien. Quisque consectetur nunc sit amet congue sodales. Phasellus interdum gravida tortor, vulputate luctus sapien iaculis eu. Nullam id justo enim. Phasellus dictum viverra interdum. Quisque eu tortor vel turpis scelerisque luctus. Vivamus lacinia, eros vitae tempor pellentesque, odio orci finibus lacus sempers.</p>\r\n[/fusion_tab][fusion_tab title=\"fully optimized servers\"]\r\n<p><img class=\"alignnone size-full wp-image-783\" style=\"margin: 40px 0px 30px 0px;\" src=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/blog-image-2.jpg\" alt=\"\" width=\"1160\" height=\"700\"></p>\r\n<h4>Future-proof your website with avada cloud hosting technology</h4>\r\n<p>Vestibulum leo eros condimen tum vitae ante molestie, comm eado feugiat sapien. Quisque consectetur nunc sit amet congue sodales. Phasellus interdum gravida tortor, vulputate luctus sapien iaculis eu. Nullam id justo enim. Phasellus dictum viverra interdum. Quisque eu tortor vel turpis scelerisque luctus. Vivamus lacinia, eros vitae tempor pellentesque, odio orci finibus lacus sempers.</p>\r\n[/fusion_tab][/fusion_tabs][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','WordPress Hosting','','inherit','closed','closed','','1431-revision-v1','','','2023-05-22 16:11:04','2023-05-22 16:11:04','',1431,'https://test-site.goodcausepartners.com/?p=1634',0,'revision','',0),(1635,1,'2023-05-22 19:49:05','2023-05-22 19:49: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\" 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\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" admin_label=\"Features Section\" margin_top=\"100px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-server\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color5)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color6)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>hassle-free setup</p>\r\n[/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\" margin_bottom=\"0\"]\r\n<p>Dolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color5)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color6)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>maximum performance</p>\r\n[/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\" margin_bottom=\"0\"]\r\n<p>Dolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-personal-computer\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color5)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color6)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>99% server uptime</p>\r\n[/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\" margin_bottom=\"0\"]\r\n<p>Dolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"triangle\" pattern_bg_style=\"default\" pattern_bg_opacity=\"50\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Pricing Plans\" padding_top=\"100px\" background_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) + 2%),var(--awb-color2-a))\" pattern_bg_size=\"50%\" pattern_bg_color=\"var(--awb-color1)\" padding_bottom=\"100px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" margin_bottom=\"80px\" margin_bottom_small=\"20px\" padding_right=\"10px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]choose your shared web hosting package[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" padding_left=\"40px\" last=\"no\" border_position=\"all\" padding_left_small=\"0\" padding_bottom_small=\"40px\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>Dignismos sinte iure taque dolorem tempore magnis cuibusdam sed knam galisum repudiane</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"no\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color5)\" button_gradient_bottom_color_hover=\"var(--awb-color5)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 280),var(--awb-color5-s),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 280),var(--awb-color5-s),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\"]15% off[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]\r\n<p>single hosting pack</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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$29 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\r\n<p>Hosting made simple &#8211; for beginners and experts alike.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]1 Website[/fusion_li_item][fusion_li_item]\r\n<p>Free SSL Certificate</p>\r\n[/fusion_li_item][fusion_li_item]2 GB SSD Storage[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color4)\"]\r\n<p>cPanel Included</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\r\n<p>Daily Backup</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\r\n<p>Lifetime Support</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"no\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color4)\" button_gradient_bottom_color_hover=\"var(--awb-color4)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 135),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 135),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\"]most popular[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]gold hosting pack[/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$35 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\r\n<p>Hosting made simple &#8211; for beginners and experts alike.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]5 Websites[/fusion_li_item][fusion_li_item]\r\n<p>Free SSL Certificate</p>\r\n[/fusion_li_item][fusion_li_item]15 GB SSD Storage[/fusion_li_item][fusion_li_item]\r\n<p>cPanel Included</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color4)\"]\r\n<p>Daily Backup</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\r\n<p>Lifetime Support</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"no\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color5)\" button_gradient_bottom_color_hover=\"var(--awb-color5)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 85),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 85),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\"]30% off[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]\r\n<p>business hosting pack</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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$49 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\r\n<p>Hosting made simple &#8211; for beginners and experts alike.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]20 Websites[/fusion_li_item][fusion_li_item]\r\n<p>Free SSL Certificate</p>\r\n[/fusion_li_item][fusion_li_item]30 GB SSD Storage[/fusion_li_item][fusion_li_item]\r\n<p>cPanel Included</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Daily Backup</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Lifetime Support</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Hosting Features - TABS\"][fusion_builder_row][fusion_builder_column type=\"1_6\" type=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" margin_bottom=\"60px\" padding_right=\"60px\" padding_left=\"60px\" min_height=\"\" link=\"\"][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\" content_alignment=\"center\" text_color=\"var(--awb-color5)\" margin_bottom=\"10px\"]\r\n<p>Binte cailuy tiure aliquid enim tempore</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=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]avada hosting service - best choice for business owners[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_6\" type=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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=\"120\" transform_translate_y=\"20\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"120\" transform_translate_y_hover=\"20\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoic2NhbGUiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiMy41IiwibWF4X3NjYWxlIjoiMSIsIm1pbl9zY2FsZSI6IiIsImluaXRpYWxfcm90YXRlIjoiIiwiZW5kX3JvdGF0ZSI6IiIsImluaXRpYWxfYmx1ciI6IiIsImVuZF9ibHVyIjoiIiwic3RhcnRfZWxlbWVudCI6ImJvdHRvbSIsInN0YXJ0X3ZpZXdwb3J0IjoiIiwiZW5kX2VsZW1lbnQiOiJjZW50ZXIiLCJlbmRfdmlld3BvcnQiOiJjZW50ZXIiLCJtb3VzZV9lZmZlY3QiOiIiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoiIiwibW91c2VfZWZmZWN0X3NwZWVkIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uX3NwZWVkIjoiIn0seyJ0eXBlIjoic2Nyb2xsIiwic2Nyb2xsX3R5cGUiOiJ0cmFuc2l0aW9uIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImxlZnQiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMi4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIzLjUiLCJtYXhfc2NhbGUiOiIxLjAiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoiY2VudGVyIiwiZW5kX3ZpZXdwb3J0IjoiIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-server-solid\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"hsla(var(--awb-color2-h),var(--awb-color2-s),var(--awb-color2-l),calc(var(--awb-color2-a) - 30%))\" iconcolor_hover=\"hsla(var(--awb-color2-h),var(--awb-color2-s),var(--awb-color2-l),calc(var(--awb-color2-a) - 30%))\" size=\"140\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_tabs design=\"classic\" layout=\"horizontal\" justified=\"yes\" alignment=\"start\" sticky_tabs=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_tag=\"h4\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_font=\"var(--awb-typography2-font-family)\" title_font_size=\"var(--awb-typography2-font-size)\" title_line_height=\"var(--awb-typography2-line-height)\" title_letter_spacing=\"var(--awb-typography2-letter-spacing)\" title_text_transform=\"capitalize\" title_padding_top=\"15px\" title_padding_bottom=\"15px\" bordercolor=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" content_padding_right=\"40px\" content_padding_left=\"40px\" content_padding_bottom=\"30px\" margin_bottom=\"0px\"][fusion_tab title=\"global data centers\"]\r\n<p><img class=\"alignnone size-full wp-image-1249\" style=\"margin: 40px 0px 30px 0px;\" src=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/blog-image-7.jpg\" alt=\"\" width=\"1160\" height=\"700\"></p>\r\n<h4>Maximize your website\'s potential with avada hosting</h4>\r\n<p>Vestibulum leo eros condimen tum vitae ante molestie, comm eado feugiat sapien. Quisque consectetur nunc sit amet congue sodales. Phasellus interdum gravida tortor, vulputate luctus sapien iaculis eu. Nullam id justo enim. Phasellus dictum viverra interdum. Quisque eu tortor vel turpis scelerisque luctus. Vivamus lacinia, eros vitae tempor pellentesque, odio orci finibus lacus sempers.</p>\r\n[/fusion_tab][fusion_tab title=\"benefits of hosting\"]\r\n<p><img class=\"alignnone size-full wp-image-1254\" style=\"margin: 40px 0px 30px 0px;\" src=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/blog-image-10.jpg\" alt=\"\" width=\"1160\" height=\"700\"></p>\r\n<h4>Elevate your online presence with avada cloud hosting</h4>\r\n<p>Vestibulum leo eros condimen tum vitae ante molestie, comm eado feugiat sapien. Quisque consectetur nunc sit amet congue sodales. Phasellus interdum gravida tortor, vulputate luctus sapien iaculis eu. Nullam id justo enim. Phasellus dictum viverra interdum. Quisque eu tortor vel turpis scelerisque luctus. Vivamus lacinia, eros vitae tempor pellentesque, odio orci finibus lacus sempers.</p>\r\n[/fusion_tab][fusion_tab title=\"fully optimized servers\"]\r\n<p><img class=\"alignnone size-full wp-image-783\" style=\"margin: 40px 0px 30px 0px;\" src=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/blog-image-2.jpg\" alt=\"\" width=\"1160\" height=\"700\"></p>\r\n<h4>Future-proof your website with avada cloud hosting technology</h4>\r\n<p>Vestibulum leo eros condimen tum vitae ante molestie, comm eado feugiat sapien. Quisque consectetur nunc sit amet congue sodales. Phasellus interdum gravida tortor, vulputate luctus sapien iaculis eu. Nullam id justo enim. Phasellus dictum viverra interdum. Quisque eu tortor vel turpis scelerisque luctus. Vivamus lacinia, eros vitae tempor pellentesque, odio orci finibus lacus sempers.</p>\r\n[/fusion_tab][/fusion_tabs][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"988\"]','Managed Private Server','','inherit','closed','closed','','1472-revision-v1','','','2023-05-22 19:49:05','2023-05-22 19:49:05','',1472,'https://test-site.goodcausepartners.com/?p=1635',0,'revision','',0),(1638,1,'2023-08-21 20:06:25','2023-08-21 20:06:25','','gcmp-horiz-logo','','inherit','open','closed','','gcmp-horiz-logo','','','2023-08-21 20:06:25','2023-08-21 20:06:25','',0,'https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-horiz-logo.webp',0,'attachment','image/webp',0),(1873,1,'2023-08-23 06:26:57','2023-08-23 06:26:57','[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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Header Content\" flex_column_spacing=\"2%\" padding_right=\"5%\" padding_left=\"5%\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" z_index=\"9999\"][fusion_builder_row][fusion_builder_column type=\"25\" type=\"25\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"60.00\" type_small=\"1_2\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1638|fusion-600\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-horiz-logo-600x175.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"50\" type=\"50\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_menu menu=\"gcmp-main\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" transition_time=\"300\" align_items=\"stretch\" justify_content=\"center\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"left\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"medium\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" fusion_font_variant_typography=\"var(--awb-typography3)\" fusion_font_family_typography=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" gap=\"34px\" active_color=\"var(--awb-color4)\" active_border_color=\"var(--awb-color5)\" collapsed_nav_text=\"Menu\" mobile_trigger_background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 90%))\" trigger_padding_top=\"15px\" /][/fusion_builder_column][fusion_builder_column type=\"24.00\" type=\"24.00\" align_self=\"auto\" 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=\"large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-headphones\" spin=\"no\" linktarget=\"_self\" bg_size=\"56\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"24\" /][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color4)\" margin_bottom=\"0px\"]Need help? Call Us[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"22px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" margin_top=\"-5px\" line_height=\"0\"]\r\n<p><strong style=\"font-size: 19px;\" data-fusion-font=\"true\">(805) 870-5050</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"30.00\" padding_top_medium=\"5px\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color4)\" margin_bottom=\"0px\" content_alignment_medium=\"right\"]Need help? Call Us[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"22px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" margin_top=\"-5px\" line_height=\"0\" content_alignment_medium=\"right\"]\r\n<p><strong>(010) 456 7890</strong></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"10.00\" type_small=\"1_2\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-bars fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"58\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"28\" alignment_medium=\"right\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJvcGVuX29mZl9jYW52YXMiLCJvZmZfY2FudmFzX2lkIjoiMTA1MCJ9fQ==\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Header','','inherit','closed','closed','','12-revision-v1','','','2023-08-23 06:26:57','2023-08-23 06:26:57','',12,'https://test-site.goodcausepartners.com/?p=1873',0,'revision','',0),(1847,1,'2023-08-22 21:33:47','2023-08-22 21:33: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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Header Content\" flex_column_spacing=\"2%\" padding_right=\"5%\" padding_left=\"5%\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" z_index=\"9999\"][fusion_builder_row][fusion_builder_column type=\"25\" type=\"25\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"60.00\" type_small=\"1_2\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1638|fusion-600\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" max_width=\"500px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-horiz-logo-600x175.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"50\" type=\"50\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_menu menu=\"gcmp-main\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" transition_time=\"300\" align_items=\"stretch\" justify_content=\"center\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"left\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"medium\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" fusion_font_variant_typography=\"var(--awb-typography3)\" fusion_font_family_typography=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" gap=\"34px\" active_color=\"var(--awb-color4)\" active_border_color=\"var(--awb-color5)\" collapsed_nav_text=\"Menu\" mobile_trigger_background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 90%))\" trigger_padding_top=\"15px\" /][/fusion_builder_column][fusion_builder_column type=\"24.00\" type=\"24.00\" align_self=\"auto\" 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=\"large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-headphones\" spin=\"no\" linktarget=\"_self\" bg_size=\"56\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"24\" /][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color4)\" margin_bottom=\"0px\"]Need help? Call Us[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"22px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" margin_top=\"-5px\" line_height=\"0\"]<p><strong style=\"font-size: 19px;\" data-fusion-font=\"true\">(805) 870-5050</strong></p>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"30.00\" padding_top_medium=\"5px\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color4)\" margin_bottom=\"0px\" content_alignment_medium=\"right\"]Need help? Call Us[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"22px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" margin_top=\"-5px\" line_height=\"0\" content_alignment_medium=\"right\"]\r\n<p><strong>(010) 456 7890</strong></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"10.00\" type_small=\"1_2\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-group\" spin=\"no\" linktarget=\"_self\" bg_size=\"58\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"28\" alignment_medium=\"right\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJvcGVuX29mZl9jYW52YXMiLCJvZmZfY2FudmFzX2lkIjoiMTA1MCJ9fQ==\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Header','','inherit','closed','closed','','12-revision-v1','','','2023-08-22 21:33:47','2023-08-22 21:33:47','',12,'https://test-site.goodcausepartners.com/?p=1847',0,'revision','',0),(1643,1,'2023-08-21 20:11:42','2023-08-21 20:11: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=\"1.0\" animation_delay=\"0.5\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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=\"hsla(calc(var(--awb-color4-h) + 240),var(--awb-color4-s),calc(var(--awb-color4-l) + 5%),var(--awb-color4-a))\" link_color=\"var(--awb-color4)\" admin_label=\"Flash Deal \" animation_type=\"reveal\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_text animation_direction=\"left\" animation_color=\"var(--awb-color6)\" animation_speed=\"1.0\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"var(--awb-color3)\" content_alignment=\"center\"]Get 30% off on shared hosting plan with free domain. <a href=\"https://bit.ly/3pcsDfq\">Subscribe Today!</a>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Header Content\" margin_top=\"20px\" flex_column_spacing=\"2%\" padding_right=\"5%\" padding_left=\"5%\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" z_index=\"9999\"][fusion_builder_row][fusion_builder_column type=\"25\" type=\"25\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"60.00\" type_small=\"1_2\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1638|fusion-600\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" max_width=\"500px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-horiz-logo-600x175.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"50\" type=\"50\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_menu menu=\"hosting-main-menu\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" transition_time=\"300\" align_items=\"stretch\" justify_content=\"center\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"left\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"medium\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" fusion_font_variant_typography=\"var(--awb-typography3)\" fusion_font_family_typography=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" gap=\"34px\" active_color=\"var(--awb-color4)\" active_border_color=\"var(--awb-color5)\" collapsed_nav_text=\"Menu\" mobile_trigger_background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 90%))\" trigger_padding_top=\"15px\" /][/fusion_builder_column][fusion_builder_column type=\"24.00\" type=\"24.00\" align_self=\"auto\" 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=\"large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-headphones\" spin=\"no\" linktarget=\"_self\" bg_size=\"56\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"24\" /][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color4)\" margin_bottom=\"0px\"]Need help? Call Us[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"22px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" margin_top=\"-5px\" line_height=\"0\"]\r\n<p><strong>(010) 456 7890</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"30.00\" padding_top_medium=\"5px\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color4)\" margin_bottom=\"0px\" content_alignment_medium=\"right\"]Need help? Call Us[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"22px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" margin_top=\"-5px\" line_height=\"0\" content_alignment_medium=\"right\"]\r\n<p><strong>(010) 456 7890</strong></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"10.00\" type_small=\"1_2\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-group\" spin=\"no\" linktarget=\"_self\" bg_size=\"58\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"28\" alignment_medium=\"right\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJvcGVuX29mZl9jYW52YXMiLCJvZmZfY2FudmFzX2lkIjoiMTA1MCJ9fQ==\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Header','','inherit','closed','closed','','12-revision-v1','','','2023-08-21 20:11:42','2023-08-21 20:11:42','',12,'https://test-site.goodcausepartners.com/?p=1643',0,'revision','',0),(1723,1,'2023-08-22 00:20:33','2023-08-22 00:20: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\" 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\" margin_top=\"100px\" admin_label=\"Introduction\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" admin_toggled=\"yes\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]Our Services[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Tailored Solutions for a Digital World</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>In an ever-evolving digital age, effective marketing is both an art and a science. At Good Cause Marketing Partners, we merge creativity with data-driven strategies to bring you comprehensive services tailored for the unique contours of today\'s business and nonprofit landscapes. Whether you\'re looking to amplify your brand, connect with your audience, or catalyze social impact, our suite of services has been meticulously designed to guide you every step of the way. Dive in to discover how we can elevate your mission and transform your vision into tangible results.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1817|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/whatwedo-top.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_bottom=\"55\" admin_toggled=\"yes\" admin_label=\"Service List\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_content_boxes layout=\"icon-on-side\" columns=\"2\" heading_size=\"2\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_color=\"var(--awb-color6)\" iconcolor=\"var(--awb-color5)\" icon_circle=\"no\" icon_size=\"61\"][fusion_content_box title=\"Brand Positioning &amp; Development\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-heart far\"]\r\n<p>We focus on understanding and capturing the core essence of your organization. This process helps in building and positioning a brand that is both genuine and distinct in a highly competitive market.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Creative Design\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-paint-brush fas\"]\r\n<p>Our design team works to create visuals that genuinely represent an organization\'s message and brand essence.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Market Strategy\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullseye fas\"]\r\n<p>Our approach considers the nuances of market dynamics. By crafting strategies tailored to specific needs, we aim to help organizations navigate their sector and connect with their desired audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Visual Identity Systems\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-image far\"]\r\n<p>A consistent brand image is crucial. We work on developing visual identity systems that maintain brand recognition across various platforms and touchpoints.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Research\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-book-reader fas\"]\r\n<p>Through methodical research, we gather valuable insights about market trends, competitors, and potential audience behaviors. This information forms the foundation for our decision-making processes and strategic planning.</p>\r\n[/fusion_content_box][fusion_content_box animation_direction=\"left\" animation_speed=\"0.3\" title=\"Digital Marketing\" icon=\"fa-globe fas\"]In the evolving digital age, we customize strategies in areas like SEO and PPC to help organizations maintain a strong online presence and connect with their audience.[/fusion_content_box][fusion_content_box title=\"Communications\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullhorn fas\"]\r\n<p>We prioritize clear and consistent communication, ensuring that both internal and external messages align with the brand\'s voice and values.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Traditional Advertising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-newspaper fas\"]\r\n<p>Using classic advertising mediums, such as television, print, and radio, we develop campaigns that authentically communicate an organization\'s message to a broader audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Public Relations &amp; Crisis Management\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-first-aid fas\"]\r\n<p>Our team is equipped to manage public relations, emphasizing the positive aspects of a brand. Additionally, during challenging situations, we prioritize maintaining brand integrity and reputation.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Photo / Video Production\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-camera fas\"]\r\n<p>Visual storytelling is powerful. Our team focuses on producing photo and video content that genuinely encapsulates an organization\'s narrative, helping to foster deeper connections with its audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Fundraising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-hand-holding-usd fas\"]\r\n<p>Resource acquisition is crucial for any initiative. We utilize both traditional and innovative methods to gather support, ensuring that projects and campaigns are adequately funded.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Social &amp; Mobile Marketing\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-comment fas\"]\r\n<p>Our efforts in social and mobile marketing aim to ensure organizations are actively participating in relevant digital discussions, reaching their audience on platforms they frequently use.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Strategic Partnerships\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-handshake fas\"]We believe in the value of collaboration. By identifying and managing partnerships that align with a brand\'s ethos, we aim to enrich its presence and impact.[/fusion_content_box][fusion_content_box title=\"Collateral Production &amp; Development\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-map fas\"]We oversee the production and development of various collateral items, ensuring each piece aligns with the brand\'s image and communicates its message effectively.[/fusion_content_box][fusion_content_box title=\"Community Engagement\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-user-friends fas\"]\r\n<p>Engaging with the community is essential. We focus on building strategies that allow organizations to foster meaningful relationships within their community, ensuring active and beneficial participation.</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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"6\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Our Process\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"115%\" pattern_bg_color=\"var(--awb-color1)\" admin_toggled=\"yes\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Process[/fusion_title][fusion_text columns=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<b>Good Cause Marketing Partners</b> harmoniously blends the analytical rigor of the left brain with the creative intuition of the right. This symbiotic approach enables us to deliver a suite of high-impact, integrated services that not only resonate emotionally but are also grounded in data-driven insights. It\'s where imaginative storytelling meets strategic precision, ensuring that every campaign is both evocative and effective.</p>\r\n<p>Embarking on a marketing journey requires a clear roadmap and unwavering commitment. Our five-phase approach ensures that the journey is transparent, collaborative, and always tailored to your objectives. Every step is designed with teamwork and continuous learning at the heart, assuring that our strategies are closely aligned with your aspirations.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Our Collaborations\" padding_top=\"65\" padding_bottom=\"20\" admin_toggled=\"yes\"][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=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Our Collaborations: A Spectrum of Industries &amp; Experiences[/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\" margin_bottom=\"0\"]\r\n<p>At Good Cause Marketing Partners, we believe in the power of collaboration, recognizing that our most transformative work often emerges from synergistic relationships with our esteemed partners. Over the years, we\'ve had the privilege of joining forces with diverse industries and dynamic companies, each bringing unique challenges and opportunities. Join us in celebrating these alliances that have not only shaped our journey but have also paved the way for innovative breakthroughs in the world of integrated marketing.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1814|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/whatwedo-comp2.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"30\" margin_top=\"0\" flex_column_spacing=\"0\" padding_bottom=\"75\" admin_toggled=\"yes\" admin_label=\"Collaborations - Industries\"][fusion_builder_row][fusion_builder_column type=\"30\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Commercial Products</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Education &amp; Higher Education</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Financial Planning</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"30\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Nonprofits</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Real Estate</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Sports and Entertainment</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"30\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Television &amp; Radio</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Winery &amp; Hospitality</p>\r\n[/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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Services CTA\" padding_top=\"65\" padding_bottom=\"65\" admin_toggled=\"yes\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1815|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/whatwedo-comp3.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Grow Your Brand for Good[/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\" margin_bottom=\"25\"]\r\n<p>Discover the difference of a strategy that merges creativity with precision. Start your transformation journey with Good Cause Marketing Partners.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Let\'s Get Started[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','What We Do','','publish','closed','closed','','what-we-do','','','2023-08-23 08:49:41','2023-08-23 08:49:41','',0,'https://test-site.goodcausepartners.com/?page_id=1723',0,'page','',0),(1645,1,'2023-08-21 20:13:02','2023-08-21 20:13: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=\"1.0\" animation_delay=\"0.5\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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=\"hsla(calc(var(--awb-color4-h) + 240),var(--awb-color4-s),calc(var(--awb-color4-l) + 5%),var(--awb-color4-a))\" link_color=\"var(--awb-color4)\" admin_label=\"Flash Deal \" animation_type=\"reveal\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_text animation_direction=\"left\" animation_color=\"var(--awb-color6)\" animation_speed=\"1.0\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"var(--awb-color3)\" content_alignment=\"center\"]Get 30% off on shared hosting plan with free domain. <a href=\"https://bit.ly/3pcsDfq\">Subscribe Today!</a>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Header Content\" margin_top=\"20px\" flex_column_spacing=\"2%\" padding_right=\"5%\" padding_left=\"5%\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" z_index=\"9999\"][fusion_builder_row][fusion_builder_column type=\"25\" type=\"25\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"60.00\" type_small=\"1_2\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1638|fusion-600\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" max_width=\"500px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-horiz-logo-600x175.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"50\" type=\"50\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_menu menu=\"gcmp-main\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" transition_time=\"300\" align_items=\"stretch\" justify_content=\"center\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"left\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"medium\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" fusion_font_variant_typography=\"var(--awb-typography3)\" fusion_font_family_typography=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" gap=\"34px\" active_color=\"var(--awb-color4)\" active_border_color=\"var(--awb-color5)\" collapsed_nav_text=\"Menu\" mobile_trigger_background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 90%))\" trigger_padding_top=\"15px\" /][/fusion_builder_column][fusion_builder_column type=\"24.00\" type=\"24.00\" align_self=\"auto\" 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=\"large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-headphones\" spin=\"no\" linktarget=\"_self\" bg_size=\"56\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"24\" /][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color4)\" margin_bottom=\"0px\"]Need help? Call Us[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"22px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" margin_top=\"-5px\" line_height=\"0\"]\r\n<p><strong>(010) 456 7890</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"30.00\" padding_top_medium=\"5px\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color4)\" margin_bottom=\"0px\" content_alignment_medium=\"right\"]Need help? Call Us[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"22px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" margin_top=\"-5px\" line_height=\"0\" content_alignment_medium=\"right\"]\r\n<p><strong>(010) 456 7890</strong></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"10.00\" type_small=\"1_2\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-group\" spin=\"no\" linktarget=\"_self\" bg_size=\"58\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"28\" alignment_medium=\"right\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJvcGVuX29mZl9jYW52YXMiLCJvZmZfY2FudmFzX2lkIjoiMTA1MCJ9fQ==\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Header','','inherit','closed','closed','','12-revision-v1','','','2023-08-21 20:13:02','2023-08-21 20:13:02','',12,'https://test-site.goodcausepartners.com/?p=1645',0,'revision','',0),(1646,1,'2023-08-21 20:13:45','2023-08-21 20:13: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=\"1.0\" animation_delay=\"0.5\" filter_hue=\"0\" filter_saturation=\"100\" filter_brightness=\"100\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" 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=\"hsla(calc(var(--awb-color4-h) + 240),var(--awb-color4-s),calc(var(--awb-color4-l) + 5%),var(--awb-color4-a))\" link_color=\"var(--awb-color4)\" admin_label=\"Flash Deal \" animation_type=\"reveal\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_text animation_direction=\"left\" animation_color=\"var(--awb-color6)\" animation_speed=\"1.0\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"var(--awb-color3)\" content_alignment=\"center\"]Get 30% off on shared hosting plan with free domain. <a href=\"https://bit.ly/3pcsDfq\">Subscribe Today!</a>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Header Content\" margin_top=\"20px\" flex_column_spacing=\"2%\" padding_right=\"5%\" padding_left=\"5%\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" z_index=\"9999\"][fusion_builder_row][fusion_builder_column type=\"25\" type=\"25\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"60.00\" type_small=\"1_2\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1638|fusion-600\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" max_width=\"500px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-horiz-logo-600x175.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"50\" type=\"50\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_menu menu=\"gcmp-main\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" transition_time=\"300\" align_items=\"stretch\" justify_content=\"center\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"left\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"medium\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" fusion_font_variant_typography=\"var(--awb-typography3)\" fusion_font_family_typography=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" gap=\"34px\" active_color=\"var(--awb-color4)\" active_border_color=\"var(--awb-color5)\" collapsed_nav_text=\"Menu\" mobile_trigger_background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 90%))\" trigger_padding_top=\"15px\" /][/fusion_builder_column][fusion_builder_column type=\"24.00\" type=\"24.00\" align_self=\"auto\" 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=\"large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-headphones\" spin=\"no\" linktarget=\"_self\" bg_size=\"56\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"24\" /][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color4)\" margin_bottom=\"0px\"]Need help? Call Us[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"22px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" margin_top=\"-5px\" line_height=\"0\"]<p><strong>(805) 870-5050</strong></p>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"30.00\" padding_top_medium=\"5px\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color4)\" margin_bottom=\"0px\" content_alignment_medium=\"right\"]Need help? Call Us[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"22px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" margin_top=\"-5px\" line_height=\"0\" content_alignment_medium=\"right\"]\r\n<p><strong>(010) 456 7890</strong></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"10.00\" type_small=\"1_2\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-group\" spin=\"no\" linktarget=\"_self\" bg_size=\"58\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"28\" alignment_medium=\"right\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJvcGVuX29mZl9jYW52YXMiLCJvZmZfY2FudmFzX2lkIjoiMTA1MCJ9fQ==\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Header','','inherit','closed','closed','','12-revision-v1','','','2023-08-21 20:13:45','2023-08-21 20:13:45','',12,'https://test-site.goodcausepartners.com/?p=1646',0,'revision','',0),(1647,1,'2023-08-21 21:45:37','2023-08-21 21:45:37','[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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" id=\"2\" margin_top_small=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\" content_align_small=\"center\"]Inspire Thought.<br />Evoke Emotion.<br />Drive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" content_alignment_small=\"center\"]<p>Good Cause Marketing Partners is a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/who-we-are/\" alignment_small=\"center\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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=\"parent\" transform_scale_x=\"1.00\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"10px\" first=\"true\" id=\"1\" render_logics=\"W10=\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-400\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-400x399.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"25\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Cause Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1786|full\" max_width=\"500\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/brain.webp[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n<ul>\r\n<li>Branding</li>\r\n<li>Marketing &amp; Communications</li>\r\n<li>Digital &amp; Social</li>\r\n<li>Partnerships &amp; Community Engagement </li>\r\n</ul>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Discover What We Offer[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" orderby_term=\"name\" order=\"ASC\" upcoming_events_only=\"yes\" featured_events_only=\"no\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"80\" padding_bottom=\"80\" background_color=\"var(--awb-color2)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Elevate Your Marketing Game[/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>Subscribe to the Good Cause Marketing Partners newsletter and stay ahead with purpose-driven marketing insights tailored just for you.</p>\r\n[/fusion_text][fusion_form form_post_id=\"1695\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_right=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Good Cause Marketing Partners','','publish','closed','closed','','home','','','2023-08-23 16:18:52','2023-08-23 16:18:52','',0,'https://test-site.goodcausepartners.com/?page_id=1647',0,'page','',0),(1753,1,'2023-08-22 04:50:37','2023-08-22 04:50:37','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"45\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Case Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"true\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p><ul><li>Branding</li><li>Marketing &amp;&nbsp;Communications</li><li>Digital &amp; Social</li><li>Partnerships &amp; Community Engagement</li></ul><p>&nbsp;</p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" 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\"]Learn About Our Services[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"2\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" 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\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_right=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-22 04:50:37','2023-08-22 04:50:37','',1647,'https://test-site.goodcausepartners.com/?p=1753',0,'revision','',0),(1662,1,'2023-08-21 21:18:44','2023-08-21 21:18:44','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Button Text[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"45\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Case Marketing Partners[/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"true\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]<p>Our Capabilities &amp; Specializations</p>[/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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]<ul><li>Brand Positioning &amp; Development</li><li>Market Strategy</li><li>Research</li><li>Communications</li><li>Public Relations &amp; Crisis Management</li><li>Strategic Partnerships</li><li>Community Engagement</li><li>Fundraising</li></ul>[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]<ul><li style=\"text-align: left;\" data-fusion-font=\"true\">Creative Design</li><li style=\"text-align: left;\" data-fusion-font=\"true\">Visual Identity Systems</li><li style=\"text-align: left;\" data-fusion-font=\"true\">Collateral Production &amp; Development</li><li style=\"text-align: left;\" data-fusion-font=\"true\">Traditional Advertising</li><li style=\"text-align: left;\" data-fusion-font=\"true\">Digital Marketing</li><li style=\"text-align: left;\" data-fusion-font=\"true\">Social / Mobile Marketing</li><li style=\"text-align: left;\" data-fusion-font=\"true\">Photo / Video Production</li></ul>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" 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\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"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=\"\" 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=\"65\" padding_bottom=\"65\"][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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" acf_repeater_field=\"\" acf_relationship_field=\"\" post_type=\"post\" posts_by=\"all\" custom_field_name=\"\" custom_field_comparison=\"exists\" custom_field_value=\"\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"2\" orderby=\"date\" orderby_custom_field_name=\"\" orderby_custom_field_type=\"CHAR\" orderby_term=\"name\" order=\"DESC\" upcoming_events_only=\"yes\" featured_events_only=\"no\" scrolling=\"pagination\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"4\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" arrow_box=\"\" arrow_position=\"\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"200px\" admin_label=\"CTA\" link_color=\"var(--awb-color4)\" padding_bottom=\"60px\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" margin_top_small=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top_medium=\"40px\" padding_top_small=\"120px\" first=\"true\" min_height=\"\" link=\"\"][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\" content_alignment=\"center\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"22px\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\"]Fast, reliable, and secure hosting to fast track your business. <a href=\"https://test-site.goodcausepartners.com/contact/\"><b style=\"color: var(--awb-color5);\">Get In Touch With Us</b></a>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Hosting FAQ\'s\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6InRpbHQiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoib3Bwb3NpdGUiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiIiLCJpbmZpbml0ZV9hbmltYXRpb25fc3BlZWQiOiIifV0=\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\" max_width=\"1000px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.png[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1379\"][fusion_global id=\"996\"][fusion_global id=\"1097\"]','Welcome to Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-21 21:18:44','2023-08-21 21:18:44','',1647,'https://test-site.goodcausepartners.com/?p=1662',0,'revision','',0),(1661,1,'2023-08-21 21:00:20','2023-08-21 21:00:20','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Button Text[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"45\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Case Marketing Partners[/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people think, feel, and ultimately take action on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"true\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"205|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-graphic-5.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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]Binte cailuy aliquid enim tempore[/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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]lightning-fast hosting that keeps your website running[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>Maecenas arc placerat tempus mor venenatis. Aliquet orci faucibus est ut etsy sociis rutrum dis. Viverra quam lacus dui adipiscing quis justo nibh purus.</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"60px\" text_color=\"var(--awb-color4)\" margin_bottom=\"0\" margin_top=\"0\"]\r\n<p><strong>45%</strong></p>\r\n[/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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]\r\n<p>Growth from last year</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<p>Lorem ipsum tempor</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" type_small=\"1_2\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"60px\" text_color=\"var(--awb-color4)\" margin_bottom=\"0\" margin_top=\"0\"]<strong>50k+</strong>[/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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]\r\n<p>Websites hosted server</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<p>Lorem ipsum tempor</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"200px\" admin_label=\"CTA\" link_color=\"var(--awb-color4)\" padding_bottom=\"60px\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" margin_top_small=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top_medium=\"40px\" padding_top_small=\"120px\" first=\"true\" min_height=\"\" link=\"\"][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\" content_alignment=\"center\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"22px\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\"]Fast, reliable, and secure hosting to fast track your business. <a href=\"https://test-site.goodcausepartners.com/contact/\"><b style=\"color: var(--awb-color5);\">Get In Touch With Us</b></a>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Hosting FAQ\'s\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6InRpbHQiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoib3Bwb3NpdGUiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiIiLCJpbmZpbml0ZV9hbmltYXRpb25fc3BlZWQiOiIifV0=\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\" max_width=\"1000px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.png[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" min_height=\"\" link=\"\"][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"80px\" last=\"false\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]frequently asked questions[/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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\" content_alignment=\"center\" margin_bottom=\"60px\"]\r\n<p>Dignismos sinte iure taques dolore tempore unde magnis cuibus<br />\r\natque laborum sed knam galisum repudiane</p>\r\n[/fusion_text][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1379\"][fusion_global id=\"996\"][fusion_global id=\"1097\"]','Welcome to Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-21 21:00:20','2023-08-21 21:00:20','',1647,'https://test-site.goodcausepartners.com/?p=1661',0,'revision','',0),(1659,1,'2023-08-21 20:57:40','2023-08-21 20: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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people think, feel, and ultimately take action on behalf of your company.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Button Text[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"45\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Case Marketing Partners[/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people think, feel, and ultimately take action on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"true\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"205|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-graphic-5.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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]Binte cailuy aliquid enim tempore[/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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]lightning-fast hosting that keeps your website running[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>Maecenas arc placerat tempus mor venenatis. Aliquet orci faucibus est ut etsy sociis rutrum dis. Viverra quam lacus dui adipiscing quis justo nibh purus.</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"60px\" text_color=\"var(--awb-color4)\" margin_bottom=\"0\" margin_top=\"0\"]\r\n<p><strong>45%</strong></p>\r\n[/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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]\r\n<p>Growth from last year</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<p>Lorem ipsum tempor</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" type_small=\"1_2\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"60px\" text_color=\"var(--awb-color4)\" margin_bottom=\"0\" margin_top=\"0\"]<strong>50k+</strong>[/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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]\r\n<p>Websites hosted server</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<p>Lorem ipsum tempor</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"200px\" admin_label=\"CTA\" link_color=\"var(--awb-color4)\" padding_bottom=\"60px\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" margin_top_small=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top_medium=\"40px\" padding_top_small=\"120px\" first=\"true\" min_height=\"\" link=\"\"][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\" content_alignment=\"center\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"22px\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\"]Fast, reliable, and secure hosting to fast track your business. <a href=\"https://test-site.goodcausepartners.com/contact/\"><b style=\"color: var(--awb-color5);\">Get In Touch With Us</b></a>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Hosting FAQ\'s\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6InRpbHQiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoib3Bwb3NpdGUiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiIiLCJpbmZpbml0ZV9hbmltYXRpb25fc3BlZWQiOiIifV0=\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\" max_width=\"1000px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.png[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" min_height=\"\" link=\"\"][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"80px\" last=\"false\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]frequently asked questions[/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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\" content_alignment=\"center\" margin_bottom=\"60px\"]\r\n<p>Dignismos sinte iure taques dolore tempore unde magnis cuibus<br />\r\natque laborum sed knam galisum repudiane</p>\r\n[/fusion_text][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1379\"][fusion_global id=\"996\"][fusion_global id=\"1097\"]','Welcome to Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-21 20:57:40','2023-08-21 20:57:40','',1647,'https://test-site.goodcausepartners.com/?p=1659',0,'revision','',0),(1657,1,'2023-08-21 20:55:17','2023-08-21 20:55:17','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br>\r\nEvoke Emotion.<br>\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people think, feel, and ultimately take action on behalf of your company.</p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Button Text[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" 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\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"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=\"\" 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=\"65\" padding_bottom=\"65\"][fusion_builder_row][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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Case Marketing Partners[/fusion_title][/fusion_builder_column][fusion_builder_column 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\" type_medium=\"\" type_small=\"\" type=\"3_5\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people think, feel, and ultimately take action on behalf of your company.</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"true\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"205|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-graphic-5.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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]Binte cailuy aliquid enim tempore[/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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]lightning-fast hosting that keeps your website running[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>Maecenas arc placerat tempus mor venenatis. Aliquet orci faucibus est ut etsy sociis rutrum dis. Viverra quam lacus dui adipiscing quis justo nibh purus.</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"60px\" text_color=\"var(--awb-color4)\" margin_bottom=\"0\" margin_top=\"0\"]\r\n<p><strong>45%</strong></p>\r\n[/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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]\r\n<p>Growth from last year</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<p>Lorem ipsum tempor</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" type_small=\"1_2\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"60px\" text_color=\"var(--awb-color4)\" margin_bottom=\"0\" margin_top=\"0\"]<strong>50k+</strong>[/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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]\r\n<p>Websites hosted server</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<p>Lorem ipsum tempor</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"200px\" admin_label=\"CTA\" link_color=\"var(--awb-color4)\" padding_bottom=\"60px\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" margin_top_small=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top_medium=\"40px\" padding_top_small=\"120px\" first=\"true\" min_height=\"\" link=\"\"][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\" content_alignment=\"center\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"22px\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\"]Fast, reliable, and secure hosting to fast track your business. <a href=\"https://test-site.goodcausepartners.com/contact/\"><b style=\"color: var(--awb-color5);\">Get In Touch With Us</b></a>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Hosting FAQ\'s\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6InRpbHQiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoib3Bwb3NpdGUiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiIiLCJpbmZpbml0ZV9hbmltYXRpb25fc3BlZWQiOiIifV0=\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\" max_width=\"1000px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.png[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" min_height=\"\" link=\"\"][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"80px\" last=\"false\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]frequently asked questions[/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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\" content_alignment=\"center\" margin_bottom=\"60px\"]\r\n<p>Dignismos sinte iure taques dolore tempore unde magnis cuibus<br />\r\natque laborum sed knam galisum repudiane</p>\r\n[/fusion_text][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1379\"][fusion_global id=\"996\"][fusion_global id=\"1097\"]','Welcome to Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-21 20:55:17','2023-08-21 20:55:17','',1647,'https://test-site.goodcausepartners.com/?p=1657',0,'revision','',0),(1655,1,'2023-08-21 20:36:52','2023-08-21 20:36:52','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br>\nEvoke Emotion.<br>\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people think, feel, and ultimately take action on behalf of your company.</p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" 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\"]Button Text[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"true\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"205|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-graphic-5.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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]Binte cailuy aliquid enim tempore[/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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]lightning-fast hosting that keeps your website running[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>Maecenas arc placerat tempus mor venenatis. Aliquet orci faucibus est ut etsy sociis rutrum dis. Viverra quam lacus dui adipiscing quis justo nibh purus.</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"60px\" text_color=\"var(--awb-color4)\" margin_bottom=\"0\" margin_top=\"0\"]\r\n<p><strong>45%</strong></p>\r\n[/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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]\r\n<p>Growth from last year</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<p>Lorem ipsum tempor</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" type_small=\"1_2\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"60px\" text_color=\"var(--awb-color4)\" margin_bottom=\"0\" margin_top=\"0\"]<strong>50k+</strong>[/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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]\r\n<p>Websites hosted server</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<p>Lorem ipsum tempor</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Hosting Features\"][fusion_builder_row][fusion_builder_column type=\"1_6\" type=\"1_6\" layout=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" min_height=\"\" link=\"\"][/fusion_builder_column][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" margin_bottom=\"60px\" first=\"false\" min_height=\"\" link=\"\"][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\" content_alignment=\"center\" text_color=\"var(--awb-color5)\" margin_bottom=\"10px\"]\r\n<p>Binte cailuy tiure aliquid enim tempore</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=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]\r\n<p>your website deserves the best -<br />\r\nand that\'s what we deliver!</p>\r\n[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_6\" type=\"1_6\" layout=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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=\"120\" transform_translate_y=\"20\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"120\" transform_translate_y_hover=\"20\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoic2NhbGUiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiMy41IiwibWF4X3NjYWxlIjoiMSIsIm1pbl9zY2FsZSI6IiIsImluaXRpYWxfcm90YXRlIjoiIiwiZW5kX3JvdGF0ZSI6IiIsImluaXRpYWxfYmx1ciI6IiIsImVuZF9ibHVyIjoiIiwic3RhcnRfZWxlbWVudCI6ImJvdHRvbSIsInN0YXJ0X3ZpZXdwb3J0IjoiIiwiZW5kX2VsZW1lbnQiOiJjZW50ZXIiLCJlbmRfdmlld3BvcnQiOiJjZW50ZXIiLCJtb3VzZV9lZmZlY3QiOiIiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoiIiwibW91c2VfZWZmZWN0X3NwZWVkIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uX3NwZWVkIjoiIn0seyJ0eXBlIjoic2Nyb2xsIiwic2Nyb2xsX3R5cGUiOiJ0cmFuc2l0aW9uIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImxlZnQiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMi4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIzLjUiLCJtYXhfc2NhbGUiOiIxLjAiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoiY2VudGVyIiwiZW5kX3ZpZXdwb3J0IjoiIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-server-solid\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"hsla(var(--awb-color2-h),var(--awb-color2-s),var(--awb-color2-l),calc(var(--awb-color2-a) - 30%))\" iconcolor_hover=\"hsla(var(--awb-color2-h),var(--awb-color2-s),var(--awb-color2-l),calc(var(--awb-color2-a) - 30%))\" size=\"140\" /][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_top=\"70px\" padding_bottom=\"70px\" padding_right=\"45px\" padding_left=\"45px\" background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 95%))\" background_color_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 95%))\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" margin_bottom=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" type_medium=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color4)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" icon_hover_type=\"slide\" circlecolor_hover=\"var(--awb-color4)\" border_radius_top_right=\"5px\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>maximum performance</p>\r\n[/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\" margin_bottom=\"0\"]Dolore tempore magnid quibus  eignismos sint duire taque aute galisum repud ipsum[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_top=\"70px\" padding_bottom=\"70px\" padding_right=\"45px\" padding_left=\"45px\" background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 95%))\" background_color_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 95%))\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" margin_bottom=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" type_medium=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-web-protection\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color4)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]safe &amp; secured[/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\" margin_bottom=\"0\"]Dolore tempore magnid quibus  eignismos sint duire taque aute galisum repud ipsum[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_top=\"70px\" padding_bottom=\"70px\" padding_right=\"45px\" padding_left=\"45px\" background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 95%))\" background_color_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 95%))\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" margin_bottom=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" type_medium=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-personal-computer\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color4)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]99% server uptime[/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\" margin_bottom=\"0\"]Dolore tempore magnid quibus  eignismos sint duire taque aute galisum repud ipsum[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_top=\"70px\" padding_bottom=\"70px\" padding_right=\"45px\" padding_left=\"45px\" background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 95%))\" background_color_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 95%))\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom_small=\"40px\" type_medium=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-server\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color4)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>hassle-free setup</p>\r\n[/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\" margin_bottom=\"0\"]Dolore tempore magnid quibus  eignismos sint duire taque aute galisum repud ipsum[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_top=\"70px\" padding_bottom=\"70px\" padding_right=\"45px\" padding_left=\"45px\" background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 95%))\" background_color_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 95%))\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom_small=\"40px\" type_medium=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-setting\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color4)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]unmetered bandwidth[/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\" margin_bottom=\"0\"]Dolore tempore magnid quibus  eignismos sint duire taque aute galisum repud ipsum[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_top=\"70px\" padding_bottom=\"70px\" padding_right=\"45px\" padding_left=\"45px\" background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 95%))\" background_color_hover=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 95%))\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom_small=\"40px\" type_medium=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-smartphone\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color4)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>dedicated support</p>\r\n[/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\" margin_bottom=\"0\"]Dolore tempore magnid quibus  eignismos sint duire taque aute galisum repud ipsum[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1036\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"200px\" admin_label=\"CTA\" link_color=\"var(--awb-color4)\" padding_bottom=\"60px\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" margin_top_small=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top_medium=\"40px\" padding_top_small=\"120px\" first=\"true\" min_height=\"\" link=\"\"][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\" content_alignment=\"center\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"22px\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\"]Fast, reliable, and secure hosting to fast track your business. <a href=\"https://test-site.goodcausepartners.com/contact/\"><b style=\"color: var(--awb-color5);\">Get In Touch With Us</b></a>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Hosting FAQ\'s\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6InRpbHQiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoib3Bwb3NpdGUiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiIiLCJpbmZpbml0ZV9hbmltYXRpb25fc3BlZWQiOiIifV0=\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\" max_width=\"1000px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.png[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" min_height=\"\" link=\"\"][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"80px\" last=\"false\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]frequently asked questions[/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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\" content_alignment=\"center\" margin_bottom=\"60px\"]\r\n<p>Dignismos sinte iure taques dolore tempore unde magnis cuibus<br />\r\natque laborum sed knam galisum repudiane</p>\r\n[/fusion_text][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" min_height=\"\" link=\"\"][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" padding_top=\"60px\" padding_right=\"60px\" padding_bottom=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 95%))\" last=\"true\" border_position=\"all\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" first=\"true\" min_height=\"\" link=\"\"][fusion_accordion border_size=\"0\" title_tag=\"h4\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" boxed_mode=\"yes\" padding_top=\"10px\" padding_bottom=\"10px\" icon_size=\"18\" icon_box_color=\"var(--awb-color4)\" padding_right=\"10px\" padding_left=\"10px\" hover_color=\"var(--awb-color1)\" border_color=\"var(--awb-color1)\" icon_alignment=\"right\"][fusion_toggle title=\"How avada hosting help business succeed?\" open=\"no\"]\r\n<p>Ea tempore aliquam ut commodi possimus ut quasi asperiores. In porro praesentium cum consect edur doloribus accusan tium quos aut dignissimos aspernatur rem dicta nisi. Est neque laborum ad eius itaque ad quas blanditiis ut nemo omnis At dignissimos omnis et omnis earum aut placeat fugit. In libero quasi id quisquam aperiam auty.</p>\r\n[/fusion_toggle][fusion_toggle title=\"what are the hosting packages you offer?\" open=\"no\"]\r\n<p>Ea tempore aliquam ut commodi possimus ut quasi asperiores. In porro praesentium cum consect edur doloribus accusan tium quos aut dignissimos aspernatur rem dicta nisi. Est neque laborum ad eius itaque ad quas blanditiis ut nemo omnis At dignissimos omnis et omnis earum aut placeat fugit. In libero quasi id quisquam aperiam auty.</p>\r\n[/fusion_toggle][fusion_toggle title=\"How do I migrate over to your hosting service?\" open=\"no\"]\r\n<p>Ea tempore aliquam ut commodi possimus ut quasi asperiores. In porro praesentium cum consect edur doloribus accusan tium quos aut dignissimos aspernatur rem dicta nisi. Est neque laborum ad eius itaque ad quas blanditiis ut nemo omnis At dignissimos omnis et omnis earum aut placeat fugit. In libero quasi id quisquam aperiam auty.</p>\r\n[/fusion_toggle][fusion_toggle title=\"Why do I need a website?\" open=\"no\"]\r\n<p>Ea tempore aliquam ut commodi possimus ut quasi asperiores. In porro praesentium cum consect edur doloribus accusan tium quos aut dignissimos aspernatur rem dicta nisi. Est neque laborum ad eius itaque ad quas blanditiis ut nemo omnis At dignissimos omnis et omnis earum aut placeat fugit. In libero quasi id quisquam aperiam auty.</p>\r\n[/fusion_toggle][fusion_toggle title=\"Can I talk to support any time of the day?\" open=\"no\"]\r\n<p>Ea tempore aliquam ut commodi possimus ut quasi asperiores. In porro praesentium cum consect edur doloribus accusan tium quos aut dignissimos aspernatur rem dicta nisi. Est neque laborum ad eius itaque ad quas blanditiis ut nemo omnis At dignissimos omnis et omnis earum aut placeat fugit. In libero quasi id quisquam aperiam auty.</p>\r\n[/fusion_toggle][/fusion_accordion][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1379\"][fusion_global id=\"996\"][fusion_global id=\"1097\"]','Welcome to Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-21 20:36:52','2023-08-21 20:36:52','',1647,'https://test-site.goodcausepartners.com/?p=1655',0,'revision','',0),(1648,1,'2023-08-21 20:30:28','2023-08-21 20:30:28','','gcmp-promo-feature','','inherit','open','closed','','gcmp-promo-feature','','','2023-08-21 20:30:28','2023-08-21 20:30:28','',0,'https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp',0,'attachment','image/webp',0),(1649,1,'2023-08-21 20:33:41','2023-08-21 20:33:41','','gcmp-romo-feature2','','inherit','open','closed','','gcmp-romo-feature2','','','2023-08-21 20:33:41','2023-08-21 20:33:41','',0,'https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2.webp',0,'attachment','image/webp',0),(1670,1,'2023-08-21 21:45:37','2023-08-21 21:45:37','[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=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"60px\" admin_label=\"Contact - Mobile\" padding_bottom=\"40px\" border_sizes_top=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" ][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" type_medium=\"1_1\" margin_bottom_medium=\"40px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"30px\" margin_bottom=\"0\" margin_top=\"0\" text_transform=\"capitalize\" content_align_medium=\"center\"]<strong>need help? get in touch</strong>[/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\" margin_bottom=\"0\" content_alignment_medium=\"center\"]\r\n\r\nSint duire taque aute galisum repudas\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" type_small=\"1_1\" margin_bottom_small=\"20px\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" layout=\"1_4\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_5\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-email\" spin=\"no\" linktarget=\"_self\" bg_size=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"22\" circle=\"yes\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" layout=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left=\"5px\" padding_top=\"5px\" type_small=\"4_5\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color4)\"]Support Email[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"24px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\"]<strong><a href=\"#\">Send @ Email</a></strong>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" type_small=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" layout=\"1_4\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_5\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-chat\" spin=\"no\" linktarget=\"_self\" bg_size=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"26\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" layout=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left=\"5px\" padding_top=\"5px\" type_small=\"4_5\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color4)\"]talk to our agent[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"24px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\"]<strong><a href=\"#\">Live Chat Now</a></strong>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Footer CTA - Mobile','','inherit','closed','closed','','1097-revision-v1','','','2023-08-21 21:45:37','2023-08-21 21:45:37','',1097,'https://test-site.goodcausepartners.com/?p=1670',0,'revision','',0),(1650,1,'2023-08-21 20:36:52','2023-08-21 20:36:52','[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=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"60px\" admin_label=\"Contact - Mobile\" padding_bottom=\"40px\" border_sizes_top=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" ][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" type_medium=\"1_1\" margin_bottom_medium=\"40px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"30px\" margin_bottom=\"0\" margin_top=\"0\" text_transform=\"capitalize\" content_align_medium=\"center\"]<strong>need help? get in touch</strong>[/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\" margin_bottom=\"0\" content_alignment_medium=\"center\"]\r\n<p>Sint duire taque aute galisum repudas</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" type_small=\"1_1\" margin_bottom_small=\"20px\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" type=\"1_4\" layout=\"1_4\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_5\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-email\" spin=\"no\" linktarget=\"_self\" bg_size=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"22\" circle=\"yes\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_4\" layout=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left=\"5px\" padding_top=\"5px\" type_small=\"4_5\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color4)\"]Support Email[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"24px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\"]<strong><a href=\"#\">Send @ Email</a></strong>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" type_small=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" type=\"1_4\" layout=\"1_4\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_5\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-chat\" spin=\"no\" linktarget=\"_self\" bg_size=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"26\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_4\" layout=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left=\"5px\" padding_top=\"5px\" type_small=\"4_5\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color4)\"]talk to our agent[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"24px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\"]<strong><a href=\"#\">Live Chat Now</a></strong>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Footer CTA - Mobile','','inherit','closed','closed','','1097-revision-v1','','','2023-08-21 20:36:52','2023-08-21 20:36:52','',1097,'https://test-site.goodcausepartners.com/?p=1650',0,'revision','',0),(1671,1,'2023-08-21 21:45:37','2023-08-21 21:45:37','[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=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"60px\" admin_label=\"Contact - Desktop\" padding_bottom=\"40px\" border_sizes_top=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" ][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"30px\" margin_bottom=\"0\" margin_top=\"0\" text_transform=\"capitalize\"]<strong>need help? get in touch</strong>[/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\" margin_bottom=\"0\"]\r\n\r\nSint duire taque aute galisum repudas\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" layout=\"1_4\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-email\" spin=\"no\" linktarget=\"_self\" bg_size=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"22\" circle=\"yes\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" layout=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left=\"5px\" padding_top=\"5px\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color4)\"]Support Email[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"24px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\"]<strong><a href=\"#\">Send @ Email</a></strong>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" layout=\"1_4\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-chat\" spin=\"no\" linktarget=\"_self\" bg_size=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"26\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" layout=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left=\"5px\" padding_top=\"5px\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color4)\"]talk to our agent[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"24px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\"]<strong><a href=\"#\">Live Chat Now</a></strong>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Footer CTA - Desktop','','inherit','closed','closed','','996-revision-v1','','','2023-08-21 21:45:37','2023-08-21 21:45:37','',996,'https://test-site.goodcausepartners.com/?p=1671',0,'revision','',0),(1651,1,'2023-08-21 20:36:52','2023-08-21 20:36:52','[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=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"60px\" admin_label=\"Contact - Desktop\" padding_bottom=\"40px\" border_sizes_top=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" ][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"30px\" margin_bottom=\"0\" margin_top=\"0\" text_transform=\"capitalize\"]<strong>need help? get in touch</strong>[/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\" margin_bottom=\"0\"]\r\n<p>Sint duire taque aute galisum repudas</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" type=\"1_4\" layout=\"1_4\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-email\" spin=\"no\" linktarget=\"_self\" bg_size=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"22\" circle=\"yes\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_4\" layout=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left=\"5px\" padding_top=\"5px\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color4)\"]Support Email[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"24px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\"]<strong><a href=\"#\">Send @ Email</a></strong>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" type=\"1_4\" layout=\"1_4\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-chat\" spin=\"no\" linktarget=\"_self\" bg_size=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"26\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_4\" layout=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left=\"5px\" padding_top=\"5px\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color4)\"]talk to our agent[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"24px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\"]<strong><a href=\"#\">Live Chat Now</a></strong>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Footer CTA - Desktop','','inherit','closed','closed','','996-revision-v1','','','2023-08-21 20:36:52','2023-08-21 20:36:52','',996,'https://test-site.goodcausepartners.com/?p=1651',0,'revision','',0),(1727,1,'2023-08-22 01:18:10','2023-08-22 01:18: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\" 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\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" admin_label=\"Features Section\" padding_top=\"100px\"]\n\n\n[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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\" first=\"true\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-server\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color5)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color6)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\n\nhassle-free setup\n\n[/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\" margin_bottom=\"0\"]\n\nDolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.\n\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\" first=\"false\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color5)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color6)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\n\nmaximum performance\n\n[/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\" margin_bottom=\"0\"]\n\nDolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.\n\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\" first=\"false\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-personal-computer\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color5)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color6)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\n\n99% server uptime\n\n[/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\" margin_bottom=\"0\"]\n\nDolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.\n\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" admin_label=\"Features Section\" padding_top=\"100px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\" first=\"true\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-server\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color5)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color6)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\n\nhassle-free setup\n\n[/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\" margin_bottom=\"0\"]\n\nDolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.\n\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\" first=\"false\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color5)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color6)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\n\nmaximum performance\n\n[/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\" margin_bottom=\"0\"]\n\nDolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.\n\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\" first=\"false\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-personal-computer\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color5)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color6)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\n\n99% server uptime\n\n[/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\" margin_bottom=\"0\"]\n\nDolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.\n\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Features Section\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]WordPress experience : unleash the full potential[/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\" margin_bottom=\"0\"]Maecenas arcu placerat tempus venenatis. Orci aliquet faucibus estut etsy sociis rutrum dis. Viverra quam lacus duis.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-global-servers\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"60\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]\n\nfast global servers\n\n[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\"]\n\nLorem ipsum tempore\n\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-web-analytics\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"60\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]website analytics[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\"]\n\nLorem ipsum tempore\n\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\"]start free trial[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\" line_height=\"var(--awb-typography5-line-height)\" margin_top=\"10px\"]* No credit card required[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"triangle\" pattern_bg_style=\"default\" pattern_bg_opacity=\"50\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Pricing Plans\" padding_top=\"100px\" background_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) + 2%),var(--awb-color2-a))\" pattern_bg_size=\"50%\" pattern_bg_color=\"var(--awb-color1)\" padding_bottom=\"100px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" margin_bottom=\"80px\" margin_bottom_small=\"20px\" padding_right=\"10px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]\n\nchoose your WordPress\nhosting package\n\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" padding_left=\"40px\" last=\"true\" border_position=\"all\" padding_left_small=\"0\" padding_bottom_small=\"40px\" min_height=\"\" link=\"\" first=\"false\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\n\nDignismos sinte iure taque dolorem tempore magnis cuibusdam sed knam galisum repudiane\n\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"true\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" min_height=\"\" link=\"\" first=\"true\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color5)\" button_gradient_bottom_color_hover=\"var(--awb-color5)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 280),var(--awb-color5-s),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 280),var(--awb-color5-s),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\"]15% off[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]\n\nsingle hosting pack\n\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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$29 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\n\nHosting made simple – for beginners and experts alike.\n\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]1 Website[/fusion_li_item][fusion_li_item]\n\nFree SSL Certificate\n\n[/fusion_li_item][fusion_li_item]2 GB SSD Storage[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color4)\"]\n\ncPanel Included\n\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\n\nDaily Backup\n\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\n\nLifetime Support\n\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"true\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" min_height=\"\" link=\"\" first=\"true\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color4)\" button_gradient_bottom_color_hover=\"var(--awb-color4)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 135),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 135),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\"]most popular[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]gold hosting pack[/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$35 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\n\nHosting made simple – for beginners and experts alike.\n\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]5 Websites[/fusion_li_item][fusion_li_item]\n\nFree SSL Certificate\n\n[/fusion_li_item][fusion_li_item]15 GB SSD Storage[/fusion_li_item][fusion_li_item]\n\ncPanel Included\n\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color4)\"]\n\nDaily Backup\n\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\n\nLifetime Support\n\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"true\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" min_height=\"\" link=\"\" first=\"true\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color5)\" button_gradient_bottom_color_hover=\"var(--awb-color5)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 85),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 85),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\"]30% off[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]\n\nbusiness hosting pack\n\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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$49 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\n\nHosting made simple – for beginners and experts alike.\n\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]20 Websites[/fusion_li_item][fusion_li_item]\n\nFree SSL Certificate\n\n[/fusion_li_item][fusion_li_item]30 GB SSD Storage[/fusion_li_item][fusion_li_item]\n\ncPanel Included\n\n[/fusion_li_item][fusion_li_item]\n\nDaily Backup\n\n[/fusion_li_item][fusion_li_item]\n\nLifetime Support\n\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1379\"][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"60px\" admin_label=\"Hosting Features - TABS\" margin_bottom=\"80px\"][fusion_builder_row][fusion_builder_column type=\"1_6\" layout=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\" first=\"true\"][/fusion_builder_column][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" margin_bottom=\"60px\" padding_right=\"60px\" padding_left=\"60px\" min_height=\"\" link=\"\" first=\"false\"][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\" content_alignment=\"center\" text_color=\"var(--awb-color5)\" margin_bottom=\"10px\"]\n\nBinte cailuy tiure aliquid enim tempore\n\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=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]avada hosting service - best choice for business owners[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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=\"120\" transform_translate_y=\"20\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"120\" transform_translate_y_hover=\"20\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoic2NhbGUiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiMy41IiwibWF4X3NjYWxlIjoiMSIsIm1pbl9zY2FsZSI6IiIsImluaXRpYWxfcm90YXRlIjoiIiwiZW5kX3JvdGF0ZSI6IiIsImluaXRpYWxfYmx1ciI6IiIsImVuZF9ibHVyIjoiIiwic3RhcnRfZWxlbWVudCI6ImJvdHRvbSIsInN0YXJ0X3ZpZXdwb3J0IjoiIiwiZW5kX2VsZW1lbnQiOiJjZW50ZXIiLCJlbmRfdmlld3BvcnQiOiJjZW50ZXIiLCJtb3VzZV9lZmZlY3QiOiIiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoiIiwibW91c2VfZWZmZWN0X3NwZWVkIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uX3NwZWVkIjoiIn0seyJ0eXBlIjoic2Nyb2xsIiwic2Nyb2xsX3R5cGUiOiJ0cmFuc2l0aW9uIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImxlZnQiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMi4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIzLjUiLCJtYXhfc2NhbGUiOiIxLjAiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoiY2VudGVyIiwiZW5kX3ZpZXdwb3J0IjoiIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" min_height=\"\" link=\"\" first=\"false\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-server-solid\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"hsla(var(--awb-color2-h),var(--awb-color2-s),var(--awb-color2-l),calc(var(--awb-color2-a) - 30%))\" iconcolor_hover=\"hsla(var(--awb-color2-h),var(--awb-color2-s),var(--awb-color2-l),calc(var(--awb-color2-a) - 30%))\" size=\"140\" /][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" type_medium=\"1_1\" min_height=\"\" link=\"\" first=\"true\"][fusion_tabs design=\"classic\" layout=\"horizontal\" justified=\"yes\" alignment=\"start\" sticky_tabs=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_tag=\"h4\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_font=\"var(--awb-typography2-font-family)\" title_font_size=\"var(--awb-typography2-font-size)\" title_line_height=\"var(--awb-typography2-line-height)\" title_letter_spacing=\"var(--awb-typography2-letter-spacing)\" title_text_transform=\"capitalize\" title_padding_top=\"15px\" title_padding_bottom=\"15px\" bordercolor=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" content_padding_right=\"40px\" content_padding_left=\"40px\" content_padding_bottom=\"30px\" margin_bottom=\"0px\"][fusion_tab title=\"global data centers\"]\n\n<img class=\"alignnone size-full wp-image-1249\" style=\"margin: 40px 0px 30px 0px;\" src=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/blog-image-7.jpg\" alt=\"\" width=\"1160\" height=\"700\" />\n<h4>Maximize your website\'s potential with avada hosting</h4>\nVestibulum leo eros condimen tum vitae ante molestie, comm eado feugiat sapien. Quisque consectetur nunc sit amet congue sodales. Phasellus interdum gravida tortor, vulputate luctus sapien iaculis eu. Nullam id justo enim. Phasellus dictum viverra interdum. Quisque eu tortor vel turpis scelerisque luctus. Vivamus lacinia, eros vitae tempor pellentesque, odio orci finibus lacus sempers.\n\n[/fusion_tab][fusion_tab title=\"benefits of hosting\"]\n\n<img class=\"alignnone size-full wp-image-1254\" style=\"margin: 40px 0px 30px 0px;\" src=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/blog-image-10.jpg\" alt=\"\" width=\"1160\" height=\"700\" />\n<h4>Elevate your online presence with avada cloud hosting</h4>\nVestibulum leo eros condimen tum vitae ante molestie, comm eado feugiat sapien. Quisque consectetur nunc sit amet congue sodales. Phasellus interdum gravida tortor, vulputate luctus sapien iaculis eu. Nullam id justo enim. Phasellus dictum viverra interdum. Quisque eu tortor vel turpis scelerisque luctus. Vivamus lacinia, eros vitae tempor pellentesque, odio orci finibus lacus sempers.\n\n[/fusion_tab][fusion_tab title=\"fully optimized servers\"]\n\n<img class=\"alignnone size-full wp-image-783\" style=\"margin: 40px 0px 30px 0px;\" src=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/blog-image-2.jpg\" alt=\"\" width=\"1160\" height=\"700\" />\n<h4>Future-proof your website with avada cloud hosting technology</h4>\nVestibulum leo eros condimen tum vitae ante molestie, comm eado feugiat sapien. Quisque consectetur nunc sit amet congue sodales. Phasellus interdum gravida tortor, vulputate luctus sapien iaculis eu. Nullam id justo enim. Phasellus dictum viverra interdum. Quisque eu tortor vel turpis scelerisque luctus. Vivamus lacinia, eros vitae tempor pellentesque, odio orci finibus lacus sempers.\n\n[/fusion_tab][/fusion_tabs][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','WordPress Hosting','','inherit','closed','closed','','1431-autosave-v1','','','2023-08-22 01:18:10','2023-08-22 01:18:10','',1431,'https://test-site.goodcausepartners.com/?p=1727',0,'revision','',0);
INSERT INTO `wp_gc2023posts` VALUES (1652,1,'2023-08-21 20:36:52','2023-08-21 20:36:52','[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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Logos\" padding_bottom=\"100px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" padding_top=\"100px\" ][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" margin_bottom_small=\"40px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"90\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"60\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"110\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"306|full\" max_width=\"190px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/magento-logo-1.png[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" margin_bottom_small=\"40px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"90\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"60\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"110\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"307|full\" max_width=\"190px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/joomla-logo-1.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"1_6\" type=\"1_6\" layout=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" margin_bottom_small=\"40px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"90\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"60\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"110\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"305|full\" max_width=\"95px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/woo-logo-1.png[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" margin_bottom_small=\"40px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"90\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"60\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"110\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"304|full\" max_width=\"255px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/wordpress-logo-1.png[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"90\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"60\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"110\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"303|full\" max_width=\"160px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/drupal-logo-1.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Tech Logos','','inherit','closed','closed','','1379-revision-v1','','','2023-08-21 20:36:52','2023-08-21 20:36:52','',1379,'https://test-site.goodcausepartners.com/?p=1652',0,'revision','',0),(1653,1,'2023-08-21 20:36:52','2023-08-21 20:36: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=\"triangle\" pattern_bg_style=\"default\" pattern_bg_opacity=\"50\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Pricing Plans\" padding_top=\"100px\" background_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) + 2%),var(--awb-color2-a))\" pattern_bg_size=\"50%\" pattern_bg_color=\"var(--awb-color1)\" ][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" margin_bottom=\"80px\" margin_bottom_small=\"20px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]\r\n<p>your website deserves the<br />\r\nbest hosting &amp; pricing</p>\r\n[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" padding_left=\"40px\" last=\"true\" border_position=\"all\" padding_left_small=\"0\" padding_bottom_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>Dignismos sinte iure taque dolorem tempore magnis cuibusdam sed knam galisum repudiane</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/contact\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\" button_gradient_top_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" button_gradient_bottom_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" accent_color=\"var(--awb-color4)\" 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_gradient_bottom_color_hover=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 100%))\" accent_hover_color=\"var(--awb-color5)\" padding_left=\"0\" border_color=\"var(--awb-color4)\" border_hover_color=\"var(--awb-color5)\"]choose a package &amp; get started[/fusion_button][/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=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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=\"40\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"40\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" box_shadow_vertical=\"0\" 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) - 95%))\" border_color_hover=\"var(--awb-color5)\" border_color=\"var(--awb-color1)\" element_content=\"\" margin_bottom=\"-120px\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6IiIsInRyYW5zaXRpb25fc3BlZWQiOiIxLjAiLCJmYWRlX3R5cGUiOiIiLCJzY2FsZV90eXBlIjoiIiwiaW5pdGlhbF9zY2FsZSI6IiIsIm1heF9zY2FsZSI6IiIsIm1pbl9zY2FsZSI6IiIsImluaXRpYWxfcm90YXRlIjoiIiwiZW5kX3JvdGF0ZSI6IiIsImluaXRpYWxfYmx1ciI6IiIsImVuZF9ibHVyIjoiIiwic3RhcnRfZWxlbWVudCI6IiIsInN0YXJ0X3ZpZXdwb3J0IjoiIiwiZW5kX2VsZW1lbnQiOiIiLCJlbmRfdmlld3BvcnQiOiJjZW50ZXIiLCJtb3VzZV9lZmZlY3QiOiIiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoiIiwibW91c2VfZWZmZWN0X3NwZWVkIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uX3NwZWVkIjoiIn1d\" margin_bottom_small=\"60px\" type_medium=\"1_3\" first=\"true\" min_height=\"\" link=\"\"][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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"true\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color5)\" button_gradient_bottom_color_hover=\"var(--awb-color5)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 280),var(--awb-color5-s),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 280),var(--awb-color5-s),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\"]15% off[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]\r\n<p>Shared Hosting</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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$29 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\r\n<p>Hosting made simple – for beginners and experts alike.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]1 Website[/fusion_li_item][fusion_li_item]\r\n<p>Free SSL Certificate</p>\r\n[/fusion_li_item][fusion_li_item]2 GB SSD Storage[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color4)\"]\r\n<p>cPanel Included</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\r\n<p>Daily Backup</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\r\n<p>Lifetime Support</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/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=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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=\"40\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"40\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" box_shadow_vertical=\"0\" 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) - 95%))\" border_color_hover=\"var(--awb-color5)\" border_color=\"var(--awb-color1)\" element_content=\"\" margin_bottom=\"-120px\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6IiIsInRyYW5zaXRpb25fc3BlZWQiOiIxLjAiLCJmYWRlX3R5cGUiOiIiLCJzY2FsZV90eXBlIjoiIiwiaW5pdGlhbF9zY2FsZSI6IiIsIm1heF9zY2FsZSI6IiIsIm1pbl9zY2FsZSI6IiIsImluaXRpYWxfcm90YXRlIjoiIiwiZW5kX3JvdGF0ZSI6IiIsImluaXRpYWxfYmx1ciI6IiIsImVuZF9ibHVyIjoiIiwic3RhcnRfZWxlbWVudCI6IiIsInN0YXJ0X3ZpZXdwb3J0IjoiIiwiZW5kX2VsZW1lbnQiOiIiLCJlbmRfdmlld3BvcnQiOiJjZW50ZXIiLCJtb3VzZV9lZmZlY3QiOiIiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoiIiwibW91c2VfZWZmZWN0X3NwZWVkIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uX3NwZWVkIjoiIn1d\" margin_bottom_small=\"60px\" type_medium=\"1_3\" first=\"false\" min_height=\"\" link=\"\"][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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"true\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color4)\" button_gradient_bottom_color_hover=\"var(--awb-color4)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 135),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 135),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\"]most popular[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]VPS Hosting[/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$35 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\r\n<p>Hosting made simple – for beginners and experts alike.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]5 Websites[/fusion_li_item][fusion_li_item]\r\n<p>Free SSL Certificate</p>\r\n[/fusion_li_item][fusion_li_item]15 GB SSD Storage[/fusion_li_item][fusion_li_item]\r\n<p>cPanel Included</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color4)\"]\r\n<p>Daily Backup</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\r\n<p>Lifetime Support</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/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=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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=\"40\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"40\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" box_shadow_vertical=\"0\" 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) - 95%))\" border_color_hover=\"var(--awb-color5)\" border_color=\"var(--awb-color1)\" element_content=\"\" margin_bottom=\"-120px\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6IiIsInRyYW5zaXRpb25fc3BlZWQiOiIxLjAiLCJmYWRlX3R5cGUiOiIiLCJzY2FsZV90eXBlIjoiIiwiaW5pdGlhbF9zY2FsZSI6IiIsIm1heF9zY2FsZSI6IiIsIm1pbl9zY2FsZSI6IiIsImluaXRpYWxfcm90YXRlIjoiIiwiZW5kX3JvdGF0ZSI6IiIsImluaXRpYWxfYmx1ciI6IiIsImVuZF9ibHVyIjoiIiwic3RhcnRfZWxlbWVudCI6IiIsInN0YXJ0X3ZpZXdwb3J0IjoiIiwiZW5kX2VsZW1lbnQiOiIiLCJlbmRfdmlld3BvcnQiOiJjZW50ZXIiLCJtb3VzZV9lZmZlY3QiOiIiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoiIiwibW91c2VfZWZmZWN0X3NwZWVkIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uX3NwZWVkIjoiIn1d\" type_medium=\"1_3\" margin_bottom_small=\"60\" first=\"false\" min_height=\"\" link=\"\"][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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"true\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color5)\" button_gradient_bottom_color_hover=\"var(--awb-color5)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 85),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 85),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\"]30% off[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]Dedicated Server[/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$49 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\r\n<p>Hosting made simple – for beginners and experts alike.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]20 Websites[/fusion_li_item][fusion_li_item]\r\n<p>Free SSL Certificate</p>\r\n[/fusion_li_item][fusion_li_item]30 GB SSD Storage[/fusion_li_item][fusion_li_item]\r\n<p>cPanel Included</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Daily Backup</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Lifetime Support</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Pricing Table','','inherit','closed','closed','','1036-revision-v1','','','2023-08-21 20:36:52','2023-08-21 20:36:52','',1036,'https://test-site.goodcausepartners.com/?p=1653',0,'revision','',0),(1656,1,'2023-08-21 20:55:17','2023-08-21 20:55: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\" 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\" margin_top=\"60px\" admin_label=\"Hosting Plans\" margin_bottom=\"60px\" ][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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color_hover=\"var(--awb-color5)\" border_color=\"var(--awb-color1)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/hosting/shared-hosting/\" first=\"true\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"170|full\" max_width=\"125px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/shared-hosting.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]who we are[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/hosting/wordpress-hosting/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"168|full\" max_width=\"125px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/wordpress-hosting.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]what we do[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Hosting Plans - 2 Column','','inherit','closed','closed','','1017-revision-v1','','','2023-08-21 20:55:17','2023-08-21 20:55:17','',1017,'https://test-site.goodcausepartners.com/?p=1656',0,'revision','',0),(1654,1,'2023-08-21 20:36:52','2023-08-21 20:36: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\" 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\" margin_top=\"100px\" admin_label=\"Hosting Plans\" margin_bottom=\"60px\" ][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" margin_bottom=\"80px\" margin_bottom_small=\"20px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]\r\n<p>our hosting is designed to take your website to next level</p>\r\n[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" padding_left=\"40px\" last=\"true\" border_position=\"all\" padding_left_small=\"0\" padding_bottom_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>Dignismos sinte iure taque dolorem tempore magnis cuibusdam sed knam galisum repudiane</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/hosting/\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\" button_gradient_top_color=\"var(--awb-color1)\" button_gradient_bottom_color=\"var(--awb-color1)\" accent_color=\"var(--awb-color4)\" button_gradient_top_color_hover=\"var(--awb-color1)\" button_gradient_bottom_color_hover=\"var(--awb-color1)\" accent_hover_color=\"var(--awb-color5)\" padding_left=\"0\" border_color=\"var(--awb-color4)\" border_hover_color=\"var(--awb-color5)\"]view all hosting plans[/fusion_button][/fusion_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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color_hover=\"var(--awb-color5)\" border_color=\"var(--awb-color1)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/hosting/shared-hosting/\" first=\"true\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"170|full\" max_width=\"125px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/shared-hosting.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]\r\n<p>shared hosting</p>\r\n[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"var(--awb-color5)\"]Starts at $1.50 / Mo[/fusion_text][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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/hosting/wordpress-hosting/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"168|full\" max_width=\"125px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/wordpress-hosting.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]wordPress hosting[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"var(--awb-color5)\"]\r\n<p>Starts at $3.75 / Mo</p>\r\n[/fusion_text][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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/hosting/dedicated-server/\" first=\"true\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"169|full\" max_width=\"125px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/dedicated-server.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]dedicated server[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"var(--awb-color5)\"]\r\n<p>Starts at $6.90 / Mo</p>\r\n[/fusion_text][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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/hosting/vps-cloud-hosting/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"171|full\" max_width=\"125px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/vps-hosting.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]VPS / cloud hosting[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"var(--awb-color5)\"]Starts at $2.35 / Mo[/fusion_text][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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/hosting/website-builder/\" first=\"true\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"192|full\" max_width=\"125px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/website-builder.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]website builder[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"var(--awb-color5)\"]\r\n<p>Starts at $4.75 / Mo</p>\r\n[/fusion_text][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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/hosting/managed-private-server/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"193|full\" max_width=\"125px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/managed-servers.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]managed private server[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"var(--awb-color5)\"]Starts at $7.50 / Mo[/fusion_text][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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Hosting Plans - 2 Column','','inherit','closed','closed','','1017-revision-v1','','','2023-08-21 20:36:52','2023-08-21 20:36:52','',1017,'https://test-site.goodcausepartners.com/?p=1654',0,'revision','',0),(1658,1,'2023-08-21 20:57:40','2023-08-21 20: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\" 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\" margin_top=\"60px\" admin_label=\"Hosting Plans\" margin_bottom=\"60px\" ][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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color_hover=\"var(--awb-color5)\" border_color=\"var(--awb-color1)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/hosting/shared-hosting/\" first=\"true\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"170|full\" max_width=\"125px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/shared-hosting.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]who we are[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/hosting/wordpress-hosting/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"168|full\" max_width=\"125px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/wordpress-hosting.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]what we do[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/hosting/wordpress-hosting/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"168|full\" max_width=\"125px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/wordpress-hosting.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]what we do[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Hosting Plans - 2 Column','','inherit','closed','closed','','1017-revision-v1','','','2023-08-21 20:57:40','2023-08-21 20:57:40','',1017,'https://test-site.goodcausepartners.com/?p=1658',0,'revision','',0),(1672,1,'2023-08-21 21:45:37','2023-08-21 21:45: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\" 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\" margin_top=\"60px\" admin_label=\"Hosting Plans\" margin_bottom=\"60px\" ][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color_hover=\"var(--awb-color5)\" border_color=\"var(--awb-color1)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/hosting/shared-hosting/\" first=\"true\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"170|full\" max_width=\"125px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/shared-hosting.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]who we are[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/hosting/wordpress-hosting/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"168|full\" max_width=\"125px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/wordpress-hosting.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]what we do[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/hosting/wordpress-hosting/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"168|full\" max_width=\"125px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/wordpress-hosting.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]Want to Talk?[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Hosting Plans - 2 Column','','inherit','closed','closed','','1017-revision-v1','','','2023-08-21 21:45:37','2023-08-21 21:45:37','',1017,'https://test-site.goodcausepartners.com/?p=1672',0,'revision','',0),(1660,1,'2023-08-21 21:00:20','2023-08-21 21:00: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\" 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\" margin_top=\"60px\" admin_label=\"Hosting Plans\" margin_bottom=\"60px\" ][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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color_hover=\"var(--awb-color5)\" border_color=\"var(--awb-color1)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/hosting/shared-hosting/\" first=\"true\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"170|full\" max_width=\"125px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/shared-hosting.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]who we are[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/hosting/wordpress-hosting/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"168|full\" max_width=\"125px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/wordpress-hosting.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]what we do[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/hosting/wordpress-hosting/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"168|full\" max_width=\"125px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/wordpress-hosting.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]Want to Talk?[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Hosting Plans - 2 Column','','inherit','closed','closed','','1017-revision-v1','','','2023-08-21 21:00:20','2023-08-21 21:00:20','',1017,'https://test-site.goodcausepartners.com/?p=1660',0,'revision','',0),(1667,1,'2023-08-21 21:38:22','2023-08-21 21:38:22','[fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" background_blend_mode=\"overlay\" first=\"true\" last=\"true\" hover_type=\"none\" border_position=\"all\" element_content=\"\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" min_height=\"\" link=\"\"][fusion_post_card_image layout=\"static\" custom_aspect_ratio=\"100\" show_title=\"no\" show_cats=\"no\" show_price=\"no\" show_rating=\"no\" show_sale=\"no\" show_outofstock=\"no\" show_buttons=\"no\" image_link=\"no\" image_link_target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" /][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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"30px\" padding_right=\"40px\" padding_left=\"10px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\" margin_top=\"10px\" margin_bottom_small=\"20px\" margin_top_small=\"12px\"]Your Content Goes Here[/fusion_title][fusion_tb_meta meta=\"categories\" layout=\"floated\" read_time=\"200\" reading_time_decimal=\"yes\" alignment_medium=\"flex-start\" alignment_small=\"flex-start\" alignment=\"flex-start\" stacked_vertical_align=\"flex-start\" stacked_horizontal_align=\"flex-start\" height=\"36\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" font_size=\"15px\" border_top=\"0\" border_bottom=\"0\" link_color=\"var(--awb-color4)\" /][fusion_tb_meta meta=\"author,read_time,modified_date\" layout=\"floated\" separator=\"|\" read_time=\"200\" reading_time_decimal=\"yes\" alignment_medium=\"flex-start\" alignment_small=\"flex-start\" alignment=\"flex-start\" stacked_vertical_align=\"flex-start\" stacked_horizontal_align=\"flex-start\" height=\"50\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" border_top=\"0\" border_bottom=\"0\" item_padding_right=\"5px\" item_padding_left=\"5px\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]','News Style 1','','inherit','closed','closed','','763-revision-v1','','','2023-08-21 21:38:22','2023-08-21 21:38:22','',763,'https://test-site.goodcausepartners.com/?p=1667',0,'revision','',0),(1663,1,'2023-08-21 21:22:33','2023-08-21 21:22:33','[fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" background_blend_mode=\"overlay\" first=\"true\" last=\"true\" hover_type=\"none\" border_position=\"all\" element_content=\"\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" flex_grow=\"33%\" min_height=\"\" link=\"\"][fusion_post_card_image layout=\"static\" custom_aspect_ratio=\"100\" show_title=\"no\" show_cats=\"no\" show_price=\"no\" show_rating=\"no\" show_sale=\"no\" show_outofstock=\"no\" show_buttons=\"no\" image_link=\"no\" image_link_target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" /][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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"30px\" padding_right=\"40px\" padding_left=\"10px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\" margin_top=\"10px\" margin_bottom_small=\"20px\" margin_top_small=\"12px\"]Your Content Goes Here[/fusion_title][fusion_tb_meta meta=\"categories\" layout=\"floated\" read_time=\"200\" reading_time_decimal=\"yes\" alignment_medium=\"flex-start\" alignment_small=\"flex-start\" alignment=\"flex-start\" stacked_vertical_align=\"flex-start\" stacked_horizontal_align=\"flex-start\" height=\"36\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" font_size=\"15px\" border_top=\"0\" border_bottom=\"0\" link_color=\"var(--awb-color4)\" /][fusion_tb_meta meta=\"author,read_time,modified_date\" layout=\"floated\" separator=\"|\" read_time=\"200\" reading_time_decimal=\"yes\" alignment_medium=\"flex-start\" alignment_small=\"flex-start\" alignment=\"flex-start\" stacked_vertical_align=\"flex-start\" stacked_horizontal_align=\"flex-start\" height=\"50\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" border_top=\"0\" border_bottom=\"0\" item_padding_right=\"5px\" item_padding_left=\"5px\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]','News Style 1','','inherit','closed','closed','','763-revision-v1','','','2023-08-21 21:22:33','2023-08-21 21:22:33','',763,'https://test-site.goodcausepartners.com/?p=1663',0,'revision','',0),(1666,1,'2023-08-21 21:35:12','2023-08-21 21:35:12','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Button Text[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"45\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Case Marketing Partners[/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"true\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<ul>\r\n<li>Brand Positioning &amp; Development</li>\r\n<li>Market Strategy</li>\r\n<li>Research</li>\r\n<li>Communications</li>\r\n<li>Public Relations &amp; Crisis Management</li>\r\n<li>Strategic Partnerships</li>\r\n<li>Community Engagement</li>\r\n<li>Fundraising</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<ul>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Creative Design</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Visual Identity Systems</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Collateral Production &amp; Development</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Traditional Advertising</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Digital Marketing</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Social / Mobile Marketing</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Photo / Video Production</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" 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\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" 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_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Blog[/fusion_title][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"yes\" number_posts=\"3\" offset=\"2\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" orderby_term=\"name\" order=\"DESC\" upcoming_events_only=\"yes\" featured_events_only=\"no\" scrolling=\"pagination\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting FAQ\'s\" padding_top=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6InRpbHQiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoib3Bwb3NpdGUiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiIiLCJpbmZpbml0ZV9hbmltYXRpb25fc3BlZWQiOiIifV0=\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\" max_width=\"1000px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"996\"][fusion_global id=\"1097\"]','Welcome to Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-21 21:35:12','2023-08-21 21:35:12','',1647,'https://test-site.goodcausepartners.com/?p=1666',0,'revision','',0),(1665,1,'2023-08-21 21:34:41','2023-08-21 21:34:41','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Button Text[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"45\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Case Marketing Partners[/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"true\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<ul>\r\n<li>Brand Positioning &amp; Development</li>\r\n<li>Market Strategy</li>\r\n<li>Research</li>\r\n<li>Communications</li>\r\n<li>Public Relations &amp; Crisis Management</li>\r\n<li>Strategic Partnerships</li>\r\n<li>Community Engagement</li>\r\n<li>Fundraising</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<ul>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Creative Design</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Visual Identity Systems</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Collateral Production &amp; Development</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Traditional Advertising</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Digital Marketing</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Social / Mobile Marketing</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Photo / Video Production</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" 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\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" 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_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Blog[/fusion_title][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"yes\" number_posts=\"3\" offset=\"2\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" orderby_term=\"name\" order=\"DESC\" upcoming_events_only=\"yes\" featured_events_only=\"no\" scrolling=\"pagination\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"200px\" admin_label=\"CTA\" link_color=\"var(--awb-color4)\" padding_bottom=\"60px\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" margin_top_small=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top_medium=\"40px\" padding_top_small=\"120px\" first=\"true\" min_height=\"\" link=\"\"][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\" content_alignment=\"center\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"22px\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\"]Fast, reliable, and secure hosting to fast track your business. <a href=\"https://test-site.goodcausepartners.com/contact/\"><b style=\"color: var(--awb-color5);\">Get In Touch With Us</b></a>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Hosting FAQ\'s\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6InRpbHQiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoib3Bwb3NpdGUiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiIiLCJpbmZpbml0ZV9hbmltYXRpb25fc3BlZWQiOiIifV0=\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\" max_width=\"1000px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"996\"][fusion_global id=\"1097\"]','Welcome to Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-21 21:34:41','2023-08-21 21:34:41','',1647,'https://test-site.goodcausepartners.com/?p=1665',0,'revision','',0),(1664,1,'2023-08-21 21:23:48','2023-08-21 21:23:48','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Button Text[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"45\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Case Marketing Partners[/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"true\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<ul>\r\n<li>Brand Positioning &amp; Development</li>\r\n<li>Market Strategy</li>\r\n<li>Research</li>\r\n<li>Communications</li>\r\n<li>Public Relations &amp; Crisis Management</li>\r\n<li>Strategic Partnerships</li>\r\n<li>Community Engagement</li>\r\n<li>Fundraising</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<ul>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Creative Design</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Visual Identity Systems</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Collateral Production &amp; Development</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Traditional Advertising</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Digital Marketing</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Social / Mobile Marketing</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Photo / Video Production</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" 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\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" 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_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Your Content Goes Here[/fusion_title][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"yes\" number_posts=\"3\" offset=\"2\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" orderby_term=\"name\" order=\"DESC\" upcoming_events_only=\"yes\" featured_events_only=\"no\" scrolling=\"pagination\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"4\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"200px\" admin_label=\"CTA\" link_color=\"var(--awb-color4)\" padding_bottom=\"60px\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" margin_top_small=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top_medium=\"40px\" padding_top_small=\"120px\" first=\"true\" min_height=\"\" link=\"\"][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\" content_alignment=\"center\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"22px\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\"]Fast, reliable, and secure hosting to fast track your business. <a href=\"https://test-site.goodcausepartners.com/contact/\"><b style=\"color: var(--awb-color5);\">Get In Touch With Us</b></a>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Hosting FAQ\'s\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6InRpbHQiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoib3Bwb3NpdGUiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiIiLCJpbmZpbml0ZV9hbmltYXRpb25fc3BlZWQiOiIifV0=\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\" max_width=\"1000px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.png[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"996\"][fusion_global id=\"1097\"]','Welcome to Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-21 21:23:48','2023-08-21 21:23:48','',1647,'https://test-site.goodcausepartners.com/?p=1664',0,'revision','',0),(1677,1,'2023-08-21 21:51:33','2023-08-21 21:51: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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Button Text[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"45\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Case Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"true\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<ul>\r\n<li>Brand Positioning &amp; Development</li>\r\n<li>Market Strategy</li>\r\n<li>Research</li>\r\n<li>Communications</li>\r\n<li>Public Relations &amp; Crisis Management</li>\r\n<li>Strategic Partnerships</li>\r\n<li>Community Engagement</li>\r\n<li>Fundraising</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<ul>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Creative Design</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Visual Identity Systems</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Collateral Production &amp; Development</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Traditional Advertising</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Digital Marketing</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Social / Mobile Marketing</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Photo / Video Production</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"2\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" orderby_term=\"name\" order=\"DESC\" upcoming_events_only=\"yes\" featured_events_only=\"no\" scrolling=\"pagination\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting FAQ\'s\" padding_top=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6InRpbHQiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoib3Bwb3NpdGUiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiIiLCJpbmZpbml0ZV9hbmltYXRpb25fc3BlZWQiOiIifV0=\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\" max_width=\"1000px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"996\"][fusion_global id=\"1097\"]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-21 21:51:33','2023-08-21 21:51:33','',1647,'https://test-site.goodcausepartners.com/?p=1677',0,'revision','',0),(1669,1,'2023-08-21 21:41:52','2023-08-21 21:41:52','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Button Text[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"45\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Case Marketing Partners[/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"true\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<ul>\r\n<li>Brand Positioning &amp; Development</li>\r\n<li>Market Strategy</li>\r\n<li>Research</li>\r\n<li>Communications</li>\r\n<li>Public Relations &amp; Crisis Management</li>\r\n<li>Strategic Partnerships</li>\r\n<li>Community Engagement</li>\r\n<li>Fundraising</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<ul>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Creative Design</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Visual Identity Systems</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Collateral Production &amp; Development</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Traditional Advertising</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Digital Marketing</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Social / Mobile Marketing</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Photo / Video Production</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" 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\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" 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_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"2\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" orderby_term=\"name\" order=\"DESC\" upcoming_events_only=\"yes\" featured_events_only=\"no\" scrolling=\"pagination\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting FAQ\'s\" padding_top=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6InRpbHQiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoib3Bwb3NpdGUiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiIiLCJpbmZpbml0ZV9hbmltYXRpb25fc3BlZWQiOiIifV0=\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\" max_width=\"1000px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"996\"][fusion_global id=\"1097\"]','Welcome to Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-21 21:41:52','2023-08-21 21:41:52','',1647,'https://test-site.goodcausepartners.com/?p=1669',0,'revision','',0),(1673,1,'2023-08-21 21:45:37','2023-08-21 21:45:37','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.\r\nEvoke Emotion.\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n\r\nWelcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.\r\n\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Button Text[/fusion_button][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"45\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Case Marketing Partners[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"3_5\" layout=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n\r\nAt Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n\r\nAffordable hosting without compromising on quality – makes us apart from other hosting providers\r\n\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"true\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n\r\nstarting at $1.80 / mo*\r\n\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n\r\nOur Capabilities &amp; Specializations\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n\r\nAt the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:\r\n\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<ul>\r\n 	<li>Brand Positioning &amp; Development</li>\r\n 	<li>Market Strategy</li>\r\n 	<li>Research</li>\r\n 	<li>Communications</li>\r\n 	<li>Public Relations &amp; Crisis Management</li>\r\n 	<li>Strategic Partnerships</li>\r\n 	<li>Community Engagement</li>\r\n 	<li>Fundraising</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"45.00\" layout=\"45.00\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\" data-fusion-font=\"true\">Creative Design</li>\r\n 	<li style=\"text-align: left;\" data-fusion-font=\"true\">Visual Identity Systems</li>\r\n 	<li style=\"text-align: left;\" data-fusion-font=\"true\">Collateral Production &amp; Development</li>\r\n 	<li style=\"text-align: left;\" data-fusion-font=\"true\">Traditional Advertising</li>\r\n 	<li style=\"text-align: left;\" data-fusion-font=\"true\">Digital Marketing</li>\r\n 	<li style=\"text-align: left;\" data-fusion-font=\"true\">Social / Mobile Marketing</li>\r\n 	<li style=\"text-align: left;\" data-fusion-font=\"true\">Photo / Video Production</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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=\"\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" 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_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"2\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" orderby_term=\"name\" order=\"DESC\" upcoming_events_only=\"yes\" featured_events_only=\"no\" scrolling=\"pagination\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting FAQ\'s\" padding_top=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6InRpbHQiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoib3Bwb3NpdGUiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiIiLCJpbmZpbml0ZV9hbmltYXRpb25fc3BlZWQiOiIifV0=\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\" max_width=\"1000px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"996\"][fusion_global id=\"1097\"]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-21 21:45:37','2023-08-21 21:45:37','',1647,'https://test-site.goodcausepartners.com/?p=1673',0,'revision','',0),(1703,1,'2023-08-21 23:26:41','2023-08-21 23:26:41','[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=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"60px\" admin_label=\"Contact - Mobile\" padding_bottom=\"40px\" border_sizes_top=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" ][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" type_medium=\"1_1\" margin_bottom_medium=\"40px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"30px\" margin_bottom=\"0\" margin_top=\"0\" text_transform=\"capitalize\" content_align_medium=\"center\"]<strong>need help? get in touch</strong>[/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\" margin_bottom=\"0\" content_alignment_medium=\"center\"]\r\n\r\nSint duire taque aute galisum repudas\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" type_small=\"1_1\" margin_bottom_small=\"20px\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" layout=\"1_4\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_5\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-email\" spin=\"no\" linktarget=\"_self\" bg_size=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"22\" circle=\"yes\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" layout=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left=\"5px\" padding_top=\"5px\" type_small=\"4_5\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color4)\"]Support Email[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"24px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\"]<strong><a href=\"#\">Send @ Email</a></strong>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" type_small=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" layout=\"1_4\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_5\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-chat\" spin=\"no\" linktarget=\"_self\" bg_size=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"26\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" layout=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left=\"5px\" padding_top=\"5px\" type_small=\"4_5\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color4)\"]talk to our agent[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"24px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\"]<strong><a href=\"#\">Live Chat Now</a></strong>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Footer CTA - Mobile','','inherit','closed','closed','','1097-revision-v1','','','2023-08-21 23:26:41','2023-08-21 23:26:41','',1097,'https://test-site.goodcausepartners.com/?p=1703',0,'revision','',0),(1674,1,'2023-08-21 21:51:33','2023-08-21 21:51: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=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"60px\" admin_label=\"Contact - Mobile\" padding_bottom=\"40px\" border_sizes_top=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" ][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" type_medium=\"1_1\" margin_bottom_medium=\"40px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"30px\" margin_bottom=\"0\" margin_top=\"0\" text_transform=\"capitalize\" content_align_medium=\"center\"]<strong>need help? get in touch</strong>[/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\" margin_bottom=\"0\" content_alignment_medium=\"center\"]\r\n<p>Sint duire taque aute galisum repudas</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" type_small=\"1_1\" margin_bottom_small=\"20px\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" type=\"1_4\" layout=\"1_4\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_5\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-email\" spin=\"no\" linktarget=\"_self\" bg_size=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"22\" circle=\"yes\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_4\" layout=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left=\"5px\" padding_top=\"5px\" type_small=\"4_5\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color4)\"]Support Email[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"24px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\"]<strong><a href=\"#\">Send @ Email</a></strong>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" type_small=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" type=\"1_4\" layout=\"1_4\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_5\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-chat\" spin=\"no\" linktarget=\"_self\" bg_size=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"26\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_4\" layout=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left=\"5px\" padding_top=\"5px\" type_small=\"4_5\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color4)\"]talk to our agent[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"24px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\"]<strong><a href=\"#\">Live Chat Now</a></strong>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Footer CTA - Mobile','','inherit','closed','closed','','1097-revision-v1','','','2023-08-21 21:51:33','2023-08-21 21:51:33','',1097,'https://test-site.goodcausepartners.com/?p=1674',0,'revision','',0),(1704,1,'2023-08-21 23:26:41','2023-08-21 23:26:41','[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=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"60px\" admin_label=\"Contact - Desktop\" padding_bottom=\"40px\" border_sizes_top=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" ][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"30px\" margin_bottom=\"0\" margin_top=\"0\" text_transform=\"capitalize\"]<strong>need help? get in touch</strong>[/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\" margin_bottom=\"0\"]\r\n\r\nSint duire taque aute galisum repudas\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" layout=\"1_4\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-email\" spin=\"no\" linktarget=\"_self\" bg_size=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"22\" circle=\"yes\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" layout=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left=\"5px\" padding_top=\"5px\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color4)\"]Support Email[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"24px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\"]<strong><a href=\"#\">Send @ Email</a></strong>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" layout=\"1_4\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-newspaper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"26\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" layout=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left=\"5px\" padding_top=\"5px\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color4)\"]talk to our agent[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"24px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\"]\r\n\r\n<strong><a href=\"#\">M</a>ailing List</strong>\r\n\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Footer CTA - Desktop','','inherit','closed','closed','','996-revision-v1','','','2023-08-21 23:26:41','2023-08-21 23:26:41','',996,'https://test-site.goodcausepartners.com/?p=1704',0,'revision','',0),(1675,1,'2023-08-21 21:51:33','2023-08-21 21:51: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=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"60px\" admin_label=\"Contact - Desktop\" padding_bottom=\"40px\" border_sizes_top=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" ][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"30px\" margin_bottom=\"0\" margin_top=\"0\" text_transform=\"capitalize\"]<strong>need help? get in touch</strong>[/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\" margin_bottom=\"0\"]\r\n<p>Sint duire taque aute galisum repudas</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" type=\"1_4\" layout=\"1_4\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-email\" spin=\"no\" linktarget=\"_self\" bg_size=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"22\" circle=\"yes\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_4\" layout=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left=\"5px\" padding_top=\"5px\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color4)\"]Support Email[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"24px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\"]<strong><a href=\"#\">Send @ Email</a></strong>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" type=\"1_4\" layout=\"1_4\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-newspaper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"26\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_4\" layout=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left=\"5px\" padding_top=\"5px\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color4)\"]talk to our agent[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"24px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\"]<p><strong><a href=\"#\">M</a>ailing List</strong></p>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Footer CTA - Desktop','','inherit','closed','closed','','996-revision-v1','','','2023-08-21 21:51:33','2023-08-21 21:51:33','',996,'https://test-site.goodcausepartners.com/?p=1675',0,'revision','',0),(1889,1,'2023-08-23 07:05:43','2023-08-23 07:05: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\" 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\" margin_top=\"30px\" admin_label=\"Hosting Plans\" margin_bottom=\"60px\" ][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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color_hover=\"var(--awb-color5)\" border_color=\"var(--awb-color1)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/who-we-are/\" first=\"true\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1802|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/who-we-are.webp[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner type=\"2_3\" type=\"2_3\" layout=\"2_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]who we are[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/what-we-do/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1803|full\" max_width=\"150px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/what-we-do.webp[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]what we do[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/contact/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1805|full\" max_width=\"125px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/contact.webp[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]Want to Talk?[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Hosting Plans - 2 Column','','inherit','closed','closed','','1017-revision-v1','','','2023-08-23 07:05:43','2023-08-23 07:05:43','',1017,'https://test-site.goodcausepartners.com/?p=1889',0,'revision','',0),(1787,1,'2023-08-22 16:50:25','2023-08-22 16:50: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\" 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\" margin_top=\"60px\" admin_label=\"Hosting Plans\" margin_bottom=\"60px\" ][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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color_hover=\"var(--awb-color5)\" border_color=\"var(--awb-color1)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/who-we-are/\" first=\"true\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"170|full\" max_width=\"125px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/shared-hosting.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]who we are[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/what-we-do/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"168|full\" max_width=\"125px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/wordpress-hosting.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]what we do[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/contact/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"168|full\" max_width=\"125px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/wordpress-hosting.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]Want to Talk?[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Hosting Plans - 2 Column','','inherit','closed','closed','','1017-revision-v1','','','2023-08-22 16:50:25','2023-08-22 16:50:25','',1017,'https://test-site.goodcausepartners.com/?p=1787',0,'revision','',0),(1676,1,'2023-08-21 21:51:33','2023-08-21 21:51: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\" 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\" margin_top=\"60px\" admin_label=\"Hosting Plans\" margin_bottom=\"60px\" ][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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color_hover=\"var(--awb-color5)\" border_color=\"var(--awb-color1)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/hosting/shared-hosting/\" first=\"true\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"170|full\" max_width=\"125px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/shared-hosting.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]who we are[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/hosting/wordpress-hosting/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"168|full\" max_width=\"125px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/wordpress-hosting.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]what we do[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/hosting/wordpress-hosting/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"168|full\" max_width=\"125px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/wordpress-hosting.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]Want to Talk?[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Hosting Plans - 2 Column','','inherit','closed','closed','','1017-revision-v1','','','2023-08-21 21:51:33','2023-08-21 21:51:33','',1017,'https://test-site.goodcausepartners.com/?p=1676',0,'revision','',0),(1678,1,'2023-08-21 21:53:40','2023-08-21 21:53: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=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" background_color=\"var(--awb-color8)\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_sizes_top=\"5px\" border_sizes_right=\"5px\" border_sizes_bottom=\"5px\" border_sizes_left=\"5px\" border_color=\"var(--awb-color6)\" padding_top=\"20px\" padding_bottom=\"20px\" padding_right=\"60px\" padding_left=\"60px\" margin_bottom=\"80px\" border_color_hover=\"hsla(var(--awb-color6-h),var(--awb-color6-s),calc(var(--awb-color6-l) + 10%),var(--awb-color6-a))\" padding_top_medium=\"40px\" padding_bottom_medium=\"40px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"75.00\" type=\"75.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\" content_align_medium=\"center\" content_align_small=\"center\"]Empower your online presence with avada hosting[/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\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 20%))\" content_alignment_medium=\"center\" content_alignment_small=\"center\"]\r\n<p>Join our list of 10M customers &amp; get a ‘45-Days Money-Back Guarantee’</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25.00\" type=\"25.00\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\" alignment=\"right\" alignment_medium=\"center\" margin_top=\"20px\" margin_bottom=\"20px\" alignment_small=\"center\"]get started[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/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=\"large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_sizes_top=\"5px\" border_sizes_right=\"5px\" border_sizes_bottom=\"5px\" border_sizes_left=\"5px\" border_color=\"var(--awb-color6)\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"60px\" padding_left=\"60px\" margin_bottom=\"80px\" border_color_hover=\"var(--awb-color1)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"75.00\" type=\"75.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\" line_height=\"1\"]Empower your online presence with avada hosting[/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\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 20%))\" line_height=\"1\"]\r\n<p>Join our list of 10M customers &amp; get a ‘45-Days Money-Back Guarantee’</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25.00\" type=\"25.00\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/hosting/\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" alignment=\"right\" alignment_medium=\"left\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]get started[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"34.00\" type=\"34.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"370|full\" max_width=\"220px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" margin_bottom=\"20px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/avada-hosting-logo-footer.png[/fusion_imageframe][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 20%))\"]\r\n<p>reliable, efficient and secured<br />- tailored to your needs !</p>\r\n[/fusion_title][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"35px\" top_margin=\"20px\" width=\"300px\" /][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" margin_bottom=\"10px\"]\r\n<p>Get Free Support 24/7&nbsp;</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"26px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" margin_top=\"-5px\" line_height=\"0\" text_color=\"var(--awb-color1)\"]\r\n<p><strong>(010) 456 7890</strong></p>\r\n[/fusion_text][fusion_social_links facebook=\"#\" twitter=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 2%),var(--awb-color7-a))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\" youtube=\"#\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" /][/fusion_builder_column][fusion_builder_column type=\"22.00\" type=\"22.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<p>hosting services</p>\r\n[/fusion_title][fusion_menu menu=\"hosting-services\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"20px\" gap=\"17px\" color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" active_color=\"var(--awb-color1)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" items_padding_left=\"15px\" border_left=\"1px\" active_border_left=\"1px\" /][/fusion_builder_column][fusion_builder_column type=\"22.00\" type=\"22.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<p>about company</p>\r\n[/fusion_title][fusion_menu menu=\"hosting-about-company\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"20px\" gap=\"17px\" color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" active_color=\"var(--awb-color1)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" items_padding_left=\"15px\" border_left=\"1px\" active_border_left=\"1px\" /][/fusion_builder_column][fusion_builder_column type=\"22.00\" type=\"22.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]help &amp; support[/fusion_title][fusion_menu menu=\"hosting-help-support\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"20px\" gap=\"17px\" color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" active_color=\"var(--awb-color1)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" items_padding_left=\"15px\" border_left=\"1px\" active_border_left=\"1px\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAxMiAtICIsImFmdGVyIjoiIDxhIGhyZWY9XCJodHRwczovL2JpdC5seS8zcGNzRGZxXCI+QXZhZGEgV2Vic2l0ZSBCdWlsZGVyPC9hPiBieSA8YSBocmVmPVwiaHR0cDovL3RoZW1lLWZ1c2lvbi5jb21cIiB0YXJnZXQ9XCJfYmxhbmtcIj5UaGVtZUZ1c2lvbjwvYT4gICAgIOKAoiAgIEFsbCBSaWdodHMgUmVzZXJ2ZWQuIn19\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"424|full\" max_width=\"220px\" margin_top=\"20px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/cards-logos-1.png[/fusion_imageframe][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Original Footer.','','publish','closed','closed','','original-footer','','','2023-08-21 21:53:40','2023-08-21 21:53:40','',0,'https://test-site.goodcausepartners.com/fusion_element/original-footer/',0,'fusion_element','',0),(1681,1,'2023-08-21 22:11:11','2023-08-21 22: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=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" background_color=\"var(--awb-color8)\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_sizes_top=\"5px\" border_sizes_right=\"5px\" border_sizes_bottom=\"5px\" border_sizes_left=\"5px\" border_color=\"var(--awb-color6)\" padding_top=\"20px\" padding_bottom=\"20px\" padding_right=\"60px\" padding_left=\"60px\" margin_bottom=\"80px\" border_color_hover=\"hsla(var(--awb-color6-h),var(--awb-color6-s),calc(var(--awb-color6-l) + 10%),var(--awb-color6-a))\" padding_top_medium=\"40px\" padding_bottom_medium=\"40px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"75.00\" type=\"75.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\" content_align_medium=\"center\" content_align_small=\"center\"]Empower your online presence with avada hosting[/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\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 20%))\" content_alignment_medium=\"center\" content_alignment_small=\"center\"]\r\n<p>Join our list of 10M customers &amp; get a ‘45-Days Money-Back Guarantee’</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25.00\" type=\"25.00\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\" alignment=\"right\" alignment_medium=\"center\" margin_top=\"20px\" margin_bottom=\"20px\" alignment_small=\"center\"]get started[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"33\" type=\"33\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 2%),var(--awb-color7-a))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" /][/fusion_builder_column][fusion_builder_column type=\"33\" type=\"33\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_sizes_right=\"2\" border_color=\"var(--awb-color3)\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<p>Main Menu</p>[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"20px\" gap=\"17px\" color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" active_color=\"var(--awb-color1)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" items_padding_left=\"15px\" border_left=\"1px\" active_border_left=\"1px\" /][/fusion_builder_column][fusion_builder_column type=\"33\" type=\"33\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Connect[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" logics=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p style=\"color: #ffffff;\">By Phone:</p>[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"26px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\" text_color=\"var(--awb-color1)\"]<p><b>(805) 870-5050</b></p>[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"26px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\" text_color=\"var(--awb-color1)\"]<p><b>Info@goodcausepartners.com</b></p>[/fusion_text][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 style=\"color: #ffffff;\">By Phone:</p>[/fusion_text][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 2%),var(--awb-color7-a))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAxMiAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-21 22:11:11','2023-08-21 22:11:11','',351,'https://test-site.goodcausepartners.com/?p=1681',0,'revision','',0),(1683,1,'2023-08-21 22:13:56','2023-08-21 22:13: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=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" background_color=\"var(--awb-color8)\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_sizes_top=\"5px\" border_sizes_right=\"5px\" border_sizes_bottom=\"5px\" border_sizes_left=\"5px\" border_color=\"var(--awb-color6)\" padding_top=\"20px\" padding_bottom=\"20px\" padding_right=\"60px\" padding_left=\"60px\" margin_bottom=\"80px\" border_color_hover=\"hsla(var(--awb-color6-h),var(--awb-color6-s),calc(var(--awb-color6-l) + 10%),var(--awb-color6-a))\" padding_top_medium=\"40px\" padding_bottom_medium=\"40px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"75.00\" type=\"75.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\" content_align_medium=\"center\" content_align_small=\"center\"]Empower your online presence with avada hosting[/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\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 20%))\" content_alignment_medium=\"center\" content_alignment_small=\"center\"]\r\n<p>Join our list of 10M customers &amp; get a ‘45-Days Money-Back Guarantee’</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25.00\" type=\"25.00\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\" alignment=\"right\" alignment_medium=\"center\" margin_top=\"20px\" margin_bottom=\"20px\" alignment_small=\"center\"]get started[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"33\" type=\"33\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"33\" type=\"33\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"var(--awb-color3)\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"30\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<p>Main Menu</p>[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"20px\" gap=\"17px\" color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" active_color=\"var(--awb-color1)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" items_padding_left=\"15px\" border_left=\"1px\" active_border_left=\"1px\" /][/fusion_builder_column][fusion_builder_column type=\"33\" type=\"33\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"20\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Connect[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" logics=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p style=\"color: #ffffff;\">By Phone:</p>[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"26px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\" text_color=\"var(--awb-color1)\"]<p><b>(805) 870-5050</b></p>[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"26px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\" text_color=\"var(--awb-color1)\"]<p><b>Info@goodcausepartners.com</b></p>[/fusion_text][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 style=\"color: #ffffff;\">By Phone:</p>[/fusion_text][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 2%),var(--awb-color7-a))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAxMiAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-21 22:13:56','2023-08-21 22:13:56','',351,'https://test-site.goodcausepartners.com/?p=1683',0,'revision','',0),(1682,1,'2023-08-21 22:11:51','2023-08-21 22:11: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=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" background_color=\"var(--awb-color8)\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_sizes_top=\"5px\" border_sizes_right=\"5px\" border_sizes_bottom=\"5px\" border_sizes_left=\"5px\" border_color=\"var(--awb-color6)\" padding_top=\"20px\" padding_bottom=\"20px\" padding_right=\"60px\" padding_left=\"60px\" margin_bottom=\"80px\" border_color_hover=\"hsla(var(--awb-color6-h),var(--awb-color6-s),calc(var(--awb-color6-l) + 10%),var(--awb-color6-a))\" padding_top_medium=\"40px\" padding_bottom_medium=\"40px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"75.00\" type=\"75.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\" content_align_medium=\"center\" content_align_small=\"center\"]Empower your online presence with avada hosting[/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\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 20%))\" content_alignment_medium=\"center\" content_alignment_small=\"center\"]\r\n<p>Join our list of 10M customers &amp; get a ‘45-Days Money-Back Guarantee’</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25.00\" type=\"25.00\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\" alignment=\"right\" alignment_medium=\"center\" margin_top=\"20px\" margin_bottom=\"20px\" alignment_small=\"center\"]get started[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"33\" type=\"33\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 2%),var(--awb-color7-a))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" /][/fusion_builder_column][fusion_builder_column type=\"33\" type=\"33\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_sizes_right=\"1\" border_color=\"var(--awb-color3)\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<p>Main Menu</p>[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"20px\" gap=\"17px\" color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" active_color=\"var(--awb-color1)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" items_padding_left=\"15px\" border_left=\"1px\" active_border_left=\"1px\" /][/fusion_builder_column][fusion_builder_column type=\"33\" type=\"33\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Connect[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" logics=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p style=\"color: #ffffff;\">By Phone:</p>[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"26px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\" text_color=\"var(--awb-color1)\"]<p><b>(805) 870-5050</b></p>[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"26px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\" text_color=\"var(--awb-color1)\"]<p><b>Info@goodcausepartners.com</b></p>[/fusion_text][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 style=\"color: #ffffff;\">By Phone:</p>[/fusion_text][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 2%),var(--awb-color7-a))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAxMiAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-21 22:11:51','2023-08-21 22:11:51','',351,'https://test-site.goodcausepartners.com/?p=1682',0,'revision','',0),(1685,1,'2023-08-21 22:17:19','2023-08-21 22:17: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=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" background_color=\"var(--awb-color8)\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_sizes_top=\"5px\" border_sizes_right=\"5px\" border_sizes_bottom=\"5px\" border_sizes_left=\"5px\" border_color=\"var(--awb-color6)\" padding_top=\"20px\" padding_bottom=\"20px\" padding_right=\"60px\" padding_left=\"60px\" margin_bottom=\"80px\" border_color_hover=\"hsla(var(--awb-color6-h),var(--awb-color6-s),calc(var(--awb-color6-l) + 10%),var(--awb-color6-a))\" padding_top_medium=\"40px\" padding_bottom_medium=\"40px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"75.00\" type=\"75.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\" content_align_medium=\"center\" content_align_small=\"center\"]Empower your online presence with avada hosting[/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\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 20%))\" content_alignment_medium=\"center\" content_alignment_small=\"center\"]\r\n<p>Join our list of 10M customers &amp; get a ‘45-Days Money-Back Guarantee’</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25.00\" type=\"25.00\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\" alignment=\"right\" alignment_medium=\"center\" margin_top=\"20px\" margin_bottom=\"20px\" alignment_small=\"center\"]get started[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"33\" type=\"33\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"33\" type=\"33\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"var(--awb-color3)\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"35\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<p>Main Menu</p>[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" active_color=\"var(--awb-color1)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" border_left=\"1px\" active_border_left=\"1px\" /][/fusion_builder_column][fusion_builder_column type=\"33\" type=\"33\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"35\" border_sizes_left=\"1\" border_color=\"var(--awb-color2)\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Connect[/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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"26px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\" text_color=\"var(--awb-color1)\"]<p><b>(805) 870-5050</b></p>[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"26px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\" text_color=\"var(--awb-color1)\"]<p><b>Info@goodcausepartners.com</b></p>[/fusion_text][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 style=\"color: #ffffff;\">By Phone:</p>[/fusion_text][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 2%),var(--awb-color7-a))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAxMiAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-21 22:17:19','2023-08-21 22:17:19','',351,'https://test-site.goodcausepartners.com/?p=1685',0,'revision','',0),(1686,1,'2023-08-21 22:19:10','2023-08-21 22:19: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=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" background_color=\"var(--awb-color8)\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_sizes_top=\"5px\" border_sizes_right=\"5px\" border_sizes_bottom=\"5px\" border_sizes_left=\"5px\" border_color=\"var(--awb-color6)\" padding_top=\"20px\" padding_bottom=\"20px\" padding_right=\"60px\" padding_left=\"60px\" margin_bottom=\"80px\" border_color_hover=\"hsla(var(--awb-color6-h),var(--awb-color6-s),calc(var(--awb-color6-l) + 10%),var(--awb-color6-a))\" padding_top_medium=\"40px\" padding_bottom_medium=\"40px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"75.00\" type=\"75.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\" content_align_medium=\"center\" content_align_small=\"center\"]Empower your online presence with avada hosting[/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\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 20%))\" content_alignment_medium=\"center\" content_alignment_small=\"center\"]\r\n<p>Join our list of 10M customers &amp; get a ‘45-Days Money-Back Guarantee’</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25.00\" type=\"25.00\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\" alignment=\"right\" alignment_medium=\"center\" margin_top=\"20px\" margin_bottom=\"20px\" alignment_small=\"center\"]get started[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"33\" type=\"33\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"33\" type=\"33\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"var(--awb-color3)\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"35\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<p>Main Menu</p>[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" active_color=\"var(--awb-color1)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" border_left=\"1px\" active_border_left=\"1px\" /][/fusion_builder_column][fusion_builder_column type=\"33\" type=\"33\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"35\" border_sizes_left=\"1\" border_color=\"var(--awb-color2)\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Connect[/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\" fusion_font_variant_text_font=\"400\" font_size=\"18px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\" text_color=\"var(--awb-color1)\"](805) 870-5050[/fusion_text][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\" fusion_font_variant_text_font=\"400\" font_size=\"18px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\" text_color=\"var(--awb-color1)\"]<p>info@goodcausepartners.com</p>[/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Follow Us[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 2%),var(--awb-color7-a))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAxMiAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-21 22:19:10','2023-08-21 22:19:10','',351,'https://test-site.goodcausepartners.com/?p=1686',0,'revision','',0);
INSERT INTO `wp_gc2023posts` VALUES (1687,1,'2023-08-21 22:20:11','2023-08-21 22:20: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=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" background_color=\"var(--awb-color8)\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_sizes_top=\"5px\" border_sizes_right=\"5px\" border_sizes_bottom=\"5px\" border_sizes_left=\"5px\" border_color=\"var(--awb-color6)\" padding_top=\"20px\" padding_bottom=\"20px\" padding_right=\"60px\" padding_left=\"60px\" margin_bottom=\"80px\" border_color_hover=\"hsla(var(--awb-color6-h),var(--awb-color6-s),calc(var(--awb-color6-l) + 10%),var(--awb-color6-a))\" padding_top_medium=\"40px\" padding_bottom_medium=\"40px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"75.00\" type=\"75.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\" content_align_medium=\"center\" content_align_small=\"center\"]Empower your online presence with avada hosting[/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\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 20%))\" content_alignment_medium=\"center\" content_alignment_small=\"center\"]\r\n<p>Join our list of 10M customers &amp; get a ‘45-Days Money-Back Guarantee’</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25.00\" type=\"25.00\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\" alignment=\"right\" alignment_medium=\"center\" margin_top=\"20px\" margin_bottom=\"20px\" alignment_small=\"center\"]get started[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"40\" type=\"40\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"var(--awb-color3)\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"35\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<p>Main Menu</p>[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" active_color=\"var(--awb-color1)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" border_left=\"1px\" active_border_left=\"1px\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"35\" border_sizes_left=\"1\" border_color=\"var(--awb-color2)\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Connect[/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\" fusion_font_variant_text_font=\"400\" font_size=\"18px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\" text_color=\"var(--awb-color1)\"](805) 870-5050[/fusion_text][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\" fusion_font_variant_text_font=\"400\" font_size=\"18px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\" text_color=\"var(--awb-color1)\"]<p>info@goodcausepartners.com</p>[/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Follow Us[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 2%),var(--awb-color7-a))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAxMiAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-21 22:20:11','2023-08-21 22:20:11','',351,'https://test-site.goodcausepartners.com/?p=1687',0,'revision','',0),(1688,1,'2023-08-21 22:20:33','2023-08-21 22:20: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=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" background_color=\"var(--awb-color8)\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\" margin_bottom=\"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\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_sizes_top=\"5px\" border_sizes_right=\"5px\" border_sizes_bottom=\"5px\" border_sizes_left=\"5px\" border_color=\"var(--awb-color6)\" padding_top=\"20px\" padding_bottom=\"20px\" padding_right=\"60px\" padding_left=\"60px\" margin_bottom=\"80px\" border_color_hover=\"hsla(var(--awb-color6-h),var(--awb-color6-s),calc(var(--awb-color6-l) + 10%),var(--awb-color6-a))\" padding_top_medium=\"40px\" padding_bottom_medium=\"40px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"75.00\" type=\"75.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\" content_align_medium=\"center\" content_align_small=\"center\"]Empower your online presence with avada hosting[/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\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 20%))\" content_alignment_medium=\"center\" content_alignment_small=\"center\"]\r\n<p>Join our list of 10M customers &amp; get a ‘45-Days Money-Back Guarantee’</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25.00\" type=\"25.00\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\" alignment=\"right\" alignment_medium=\"center\" margin_top=\"20px\" margin_bottom=\"20px\" alignment_small=\"center\"]get started[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"40\" type=\"40\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"var(--awb-color3)\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"35\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<p>Main Menu</p>[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" active_color=\"var(--awb-color1)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" border_left=\"1px\" active_border_left=\"1px\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"35\" border_sizes_left=\"1\" border_color=\"var(--awb-color2)\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Connect[/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\" fusion_font_variant_text_font=\"400\" font_size=\"18px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\" text_color=\"var(--awb-color1)\"](805) 870-5050[/fusion_text][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\" fusion_font_variant_text_font=\"400\" font_size=\"18px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\" text_color=\"var(--awb-color1)\"]<p>info@goodcausepartners.com</p>[/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Follow Us[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 2%),var(--awb-color7-a))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAxMiAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-21 22:20:33','2023-08-21 22:20:33','',351,'https://test-site.goodcausepartners.com/?p=1688',0,'revision','',0),(1689,1,'2023-08-21 22:23:07','2023-08-21 22:23: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=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" background_color=\"var(--awb-color8)\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\" margin_bottom=\"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\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_sizes_top=\"5px\" border_sizes_right=\"5px\" border_sizes_bottom=\"5px\" border_sizes_left=\"5px\" border_color=\"var(--awb-color6)\" padding_top=\"20px\" padding_bottom=\"20px\" padding_right=\"60px\" padding_left=\"60px\" margin_bottom=\"80px\" border_color_hover=\"hsla(var(--awb-color6-h),var(--awb-color6-s),calc(var(--awb-color6-l) + 10%),var(--awb-color6-a))\" padding_top_medium=\"40px\" padding_bottom_medium=\"40px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"75.00\" type=\"75.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\" content_align_medium=\"center\" content_align_small=\"center\"]Empower your online presence with avada hosting[/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\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 20%))\" content_alignment_medium=\"center\" content_alignment_small=\"center\"]\r\n<p>Join our list of 10M customers &amp; get a ‘45-Days Money-Back Guarantee’</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25.00\" type=\"25.00\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\" alignment=\"right\" alignment_medium=\"center\" margin_top=\"20px\" margin_bottom=\"20px\" alignment_small=\"center\"]get started[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"40\" type=\"40\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"var(--awb-color3)\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"35\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<p>Main Menu</p>[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" active_color=\"var(--awb-color1)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" border_left=\"1px\" active_border_left=\"1px\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"35\" border_sizes_left=\"1\" border_color=\"var(--awb-color2)\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Connect[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner 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\" type=\"1_4\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_fontawesome icon=\"fa-headset fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"21\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_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\" type=\"3_4\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" logics=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p style=\"color: #ffffff;\">(805) 870 - 5050</p>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][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\" fusion_font_variant_text_font=\"400\" font_size=\"18px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\" text_color=\"var(--awb-color1)\"](805) 870-5050[/fusion_text][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\" fusion_font_variant_text_font=\"400\" font_size=\"18px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\" text_color=\"var(--awb-color1)\"]<p>info@goodcausepartners.com</p>[/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Follow Us[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 2%),var(--awb-color7-a))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAxMiAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-21 22:23:07','2023-08-21 22:23:07','',351,'https://test-site.goodcausepartners.com/?p=1689',0,'revision','',0),(1690,1,'2023-08-21 22:26:55','2023-08-21 22: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=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" background_color=\"var(--awb-color8)\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\" margin_bottom=\"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\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_sizes_top=\"5px\" border_sizes_right=\"5px\" border_sizes_bottom=\"5px\" border_sizes_left=\"5px\" border_color=\"var(--awb-color6)\" padding_top=\"20px\" padding_bottom=\"20px\" padding_right=\"60px\" padding_left=\"60px\" margin_bottom=\"80px\" border_color_hover=\"hsla(var(--awb-color6-h),var(--awb-color6-s),calc(var(--awb-color6-l) + 10%),var(--awb-color6-a))\" padding_top_medium=\"40px\" padding_bottom_medium=\"40px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"75.00\" type=\"75.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\" content_align_medium=\"center\" content_align_small=\"center\"]Empower your online presence with avada hosting[/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\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 20%))\" content_alignment_medium=\"center\" content_alignment_small=\"center\"]\r\n<p>Join our list of 10M customers &amp; get a ‘45-Days Money-Back Guarantee’</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25.00\" type=\"25.00\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\" alignment=\"right\" alignment_medium=\"center\" margin_top=\"20px\" margin_bottom=\"20px\" alignment_small=\"center\"]get started[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"40\" type=\"40\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"var(--awb-color3)\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"35\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<p>Main Menu</p>[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" active_color=\"var(--awb-color1)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" border_left=\"1px\" active_border_left=\"1px\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"35\" border_sizes_left=\"1\" border_color=\"var(--awb-color2)\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Connect[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-headset fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"48\" iconcolor=\"var(--awb-color2)\" iconcolor_hover=\"var(--awb-color2)\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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 style=\"color: #ffffff;\">(805) 870 - 5050</p>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"48\" iconcolor=\"var(--awb-color2)\" iconcolor_hover=\"var(--awb-color2)\" icon=\"fa-envelope far\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color3)\"]<p style=\"color: var(--awb-color3);\">info@goodcausepartners.com</p>[/fusion_text][/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_top=\"20\"]Follow Us[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 2%),var(--awb-color7-a))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAxMiAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-21 22:26:55','2023-08-21 22:26:55','',351,'https://test-site.goodcausepartners.com/?p=1690',0,'revision','',0),(1691,1,'2023-08-21 22:27:52','2023-08-21 22:27: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=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" background_color=\"var(--awb-color8)\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\" margin_bottom=\"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\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_sizes_top=\"5px\" border_sizes_right=\"5px\" border_sizes_bottom=\"5px\" border_sizes_left=\"5px\" border_color=\"var(--awb-color6)\" padding_top=\"20px\" padding_bottom=\"20px\" padding_right=\"60px\" padding_left=\"60px\" margin_bottom=\"80px\" border_color_hover=\"hsla(var(--awb-color6-h),var(--awb-color6-s),calc(var(--awb-color6-l) + 10%),var(--awb-color6-a))\" padding_top_medium=\"40px\" padding_bottom_medium=\"40px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"75.00\" type=\"75.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\" content_align_medium=\"center\" content_align_small=\"center\"]Empower your online presence with avada hosting[/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\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 20%))\" content_alignment_medium=\"center\" content_alignment_small=\"center\"]\r\n<p>Join our list of 10M customers &amp; get a ‘45-Days Money-Back Guarantee’</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25.00\" type=\"25.00\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\" alignment=\"right\" alignment_medium=\"center\" margin_top=\"20px\" margin_bottom=\"20px\" alignment_small=\"center\"]get started[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"35\" type=\"35\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"var(--awb-color3)\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"45\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<p>Main Menu</p>[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" active_color=\"var(--awb-color1)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" border_left=\"1px\" active_border_left=\"1px\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"45\" border_sizes_left=\"1\" border_color=\"var(--awb-color2)\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Connect[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-headset fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"48\" iconcolor=\"var(--awb-color2)\" iconcolor_hover=\"var(--awb-color2)\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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 style=\"color: #ffffff;\">(805) 870 - 5050</p>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"48\" iconcolor=\"var(--awb-color2)\" iconcolor_hover=\"var(--awb-color2)\" icon=\"fa-envelope far\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color3)\"]<p style=\"color: var(--awb-color3);\">info@goodcausepartners.com</p>[/fusion_text][/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_top=\"20\"]Follow Us[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 2%),var(--awb-color7-a))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAxMiAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-21 22:27:52','2023-08-21 22:27:52','',351,'https://test-site.goodcausepartners.com/?p=1691',0,'revision','',0),(1692,1,'2023-08-21 22:28:35','2023-08-21 22:28:35','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" background_color=\"var(--awb-color8)\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\" margin_bottom=\"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\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_sizes_top=\"5px\" border_sizes_right=\"5px\" border_sizes_bottom=\"5px\" border_sizes_left=\"5px\" border_color=\"var(--awb-color6)\" padding_top=\"20px\" padding_bottom=\"20px\" padding_right=\"60px\" padding_left=\"60px\" margin_bottom=\"80px\" border_color_hover=\"hsla(var(--awb-color6-h),var(--awb-color6-s),calc(var(--awb-color6-l) + 10%),var(--awb-color6-a))\" padding_top_medium=\"40px\" padding_bottom_medium=\"40px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"75.00\" type=\"75.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\" content_align_medium=\"center\" content_align_small=\"center\"]Empower your online presence with avada hosting[/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\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 20%))\" content_alignment_medium=\"center\" content_alignment_small=\"center\"]\r\n<p>Join our list of 10M customers &amp; get a ‘45-Days Money-Back Guarantee’</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25.00\" type=\"25.00\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\" alignment=\"right\" alignment_medium=\"center\" margin_top=\"20px\" margin_bottom=\"20px\" alignment_small=\"center\"]get started[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"35\" type=\"35\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"var(--awb-color3)\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"45\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<p>Main Menu</p>[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" active_color=\"var(--awb-color1)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" border_left=\"1px\" active_border_left=\"1px\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"45\" border_sizes_left=\"1\" border_color=\"var(--awb-color2)\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Connect[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-headset fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"48\" iconcolor=\"var(--awb-color2)\" iconcolor_hover=\"var(--awb-color2)\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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 style=\"color: #ffffff;\">(805) 870 - 5050</p>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"48\" iconcolor=\"var(--awb-color2)\" iconcolor_hover=\"var(--awb-color2)\" icon=\"fa-envelope far\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color3)\"]<p style=\"color: var(--awb-color3);\">info@goodcausepartners.com</p>[/fusion_text][/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_top=\"20\"]Follow Us[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 2%),var(--awb-color7-a))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAyMCAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-21 22:28:35','2023-08-21 22:28:35','',351,'https://test-site.goodcausepartners.com/?p=1692',0,'revision','',0),(1694,1,'2023-08-21 22:41:59','2023-08-21 22:41:59','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Button Text[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"45\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Case Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"true\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<ul>\r\n<li>Brand Positioning &amp; Development</li>\r\n<li>Market Strategy</li>\r\n<li>Research</li>\r\n<li>Communications</li>\r\n<li>Public Relations &amp; Crisis Management</li>\r\n<li>Strategic Partnerships</li>\r\n<li>Community Engagement</li>\r\n<li>Fundraising</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<ul>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Creative Design</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Visual Identity Systems</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Collateral Production &amp; Development</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Traditional Advertising</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Digital Marketing</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Social / Mobile Marketing</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Photo / Video Production</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"2\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" orderby_term=\"name\" order=\"DESC\" upcoming_events_only=\"yes\" featured_events_only=\"no\" scrolling=\"pagination\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"75\" padding_bottom=\"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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"30px\" margin_bottom=\"0\" margin_top=\"0\" text_transform=\"capitalize\"]<p>Elevate Your Marketing Game!</p>[/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\" margin_bottom=\"0\"]<p>Subscribe to the Good Cause Marketing Partners Newsletter today and receive the monthly news, information, and tips to strengthen your marketing and outreach campaigns </p>[/fusion_text][fusion_form form_post_id=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\" max_width=\"1000px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-21 22:41:59','2023-08-21 22:41:59','',1647,'https://test-site.goodcausepartners.com/?p=1694',0,'revision','',0),(1693,1,'2023-08-21 22:41:34','2023-08-21 22:41: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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Button Text[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"45\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Case Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"true\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<ul>\r\n<li>Brand Positioning &amp; Development</li>\r\n<li>Market Strategy</li>\r\n<li>Research</li>\r\n<li>Communications</li>\r\n<li>Public Relations &amp; Crisis Management</li>\r\n<li>Strategic Partnerships</li>\r\n<li>Community Engagement</li>\r\n<li>Fundraising</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<ul>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Creative Design</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Visual Identity Systems</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Collateral Production &amp; Development</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Traditional Advertising</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Digital Marketing</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Social / Mobile Marketing</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Photo / Video Production</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"2\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" orderby_term=\"name\" order=\"DESC\" upcoming_events_only=\"yes\" featured_events_only=\"no\" scrolling=\"pagination\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting FAQ\'s\" padding_top=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6InRpbHQiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoib3Bwb3NpdGUiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiIiLCJpbmZpbml0ZV9hbmltYXRpb25fc3BlZWQiOiIifV0=\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" 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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"30px\" margin_bottom=\"0\" margin_top=\"0\" text_transform=\"capitalize\"]<p>Elevate Your Marketing Game!</p>[/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\" margin_bottom=\"0\"]<p>Subscribe to the Good Cause Marketing Partners Newsletter today and receive the monthly news, information, and tips to strengthen your marketing and outreach campaigns </p>[/fusion_text][fusion_form form_post_id=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\" max_width=\"1000px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-21 22:41:34','2023-08-21 22:41:34','',1647,'https://test-site.goodcausepartners.com/?p=1693',0,'revision','',0),(1695,1,'2023-08-21 22:43:25','2023-08-21 22:43: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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_left=\"0\"][fusion_builder_row][fusion_builder_column type=\"4_5\" type=\"4_5\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form_email required=\"no\" /][/fusion_builder_column][fusion_builder_column type=\"1_5\" type=\"1_5\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_form_submit color=\"default\" gradient_end_position=\"100\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\"]Join[/fusion_form_submit][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','newsletter','','publish','closed','closed','','newsletter','','','2023-08-21 22:48:28','2023-08-21 22:48:28','',0,'https://test-site.goodcausepartners.com/fusion_form/newsletter/',0,'fusion_form','',0),(1696,1,'2023-08-21 22:48:50','2023-08-21 22:48:50','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Button Text[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"45\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Case Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"true\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<ul>\r\n<li>Brand Positioning &amp; Development</li>\r\n<li>Market Strategy</li>\r\n<li>Research</li>\r\n<li>Communications</li>\r\n<li>Public Relations &amp; Crisis Management</li>\r\n<li>Strategic Partnerships</li>\r\n<li>Community Engagement</li>\r\n<li>Fundraising</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<ul>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Creative Design</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Visual Identity Systems</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Collateral Production &amp; Development</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Traditional Advertising</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Digital Marketing</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Social / Mobile Marketing</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Photo / Video Production</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"2\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" 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\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"75\" padding_bottom=\"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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" margin_top=\"0\" text_transform=\"capitalize\"]\r\n<p>Elevate Your Marketing Game!</p>\r\n[/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\" margin_bottom=\"0\"]\r\n<p>Subscribe to the Good Cause Marketing Partners Newsletter today and receive the monthly news, information, and tips to strengthen your marketing and outreach campaigns </p>\r\n[/fusion_text][fusion_form form_post_id=\"1695\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" margin_left=\"0px\" /][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\" max_width=\"1000px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-21 22:48:50','2023-08-21 22:48:50','',1647,'https://test-site.goodcausepartners.com/?p=1696',0,'revision','',0),(1697,1,'2023-08-21 22:52:11','2023-08-21 22: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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Button Text[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"45\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Case Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"true\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<ul>\r\n<li>Brand Positioning &amp; Development</li>\r\n<li>Market Strategy</li>\r\n<li>Research</li>\r\n<li>Communications</li>\r\n<li>Public Relations &amp; Crisis Management</li>\r\n<li>Strategic Partnerships</li>\r\n<li>Community Engagement</li>\r\n<li>Fundraising</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<ul>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Creative Design</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Visual Identity Systems</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Collateral Production &amp; Development</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Traditional Advertising</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Digital Marketing</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Social / Mobile Marketing</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Photo / Video Production</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"2\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" 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\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"75\" padding_bottom=\"75\" flex_column_spacing=\"40px\"][fusion_builder_row][fusion_builder_column type=\"45\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type=\"45\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" margin_top=\"0\" text_transform=\"capitalize\"]Elevate Your Marketing Game with the Good Cause Marketing Partners Newsletter![/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\" margin_bottom=\"0\"]<p>Subscribe to our newsletter today and receive the monthly news, information, and tips to strengthen your marketing and outreach campaigns </p>[/fusion_text][fusion_form form_post_id=\"1695\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" margin_left=\"0px\" /][/fusion_builder_column][fusion_builder_column type=\"55\" type=\"55\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" padding_right=\"0\" spacing_right=\"0\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\" max_width=\"1000px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-21 22:52:11','2023-08-21 22:52:11','',1647,'https://test-site.goodcausepartners.com/?p=1697',0,'revision','',0),(1698,1,'2023-08-21 22:53:37','2023-08-21 22:53:37','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Button Text[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"45\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Case Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"true\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<ul>\r\n<li>Brand Positioning &amp; Development</li>\r\n<li>Market Strategy</li>\r\n<li>Research</li>\r\n<li>Communications</li>\r\n<li>Public Relations &amp; Crisis Management</li>\r\n<li>Strategic Partnerships</li>\r\n<li>Community Engagement</li>\r\n<li>Fundraising</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<ul>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Creative Design</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Visual Identity Systems</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Collateral Production &amp; Development</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Traditional Advertising</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Digital Marketing</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Social / Mobile Marketing</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Photo / Video Production</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"2\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" 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\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"75\" padding_bottom=\"75\" flex_column_spacing=\"40px\" background_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"45\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type=\"45\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" margin_top=\"0\" text_transform=\"capitalize\" font_size=\"32\"]Elevate Your Marketing Game with the Good Cause Marketing Partners Newsletter![/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\" margin_bottom=\"0\"]<p>Subscribe to our newsletter today and receive the monthly news, information, and tips to strengthen your marketing and outreach campaigns </p>[/fusion_text][fusion_form form_post_id=\"1695\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" margin_left=\"0px\" /][/fusion_builder_column][fusion_builder_column type=\"55\" type=\"55\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" padding_right=\"0\" spacing_right=\"0\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\" max_width=\"1000px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-21 22:53:37','2023-08-21 22:53:37','',1647,'https://test-site.goodcausepartners.com/?p=1698',0,'revision','',0),(1752,1,'2023-08-22 04:47:00','2023-08-22 04:47:00','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"45\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Case Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"true\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<ul>\r\n<li>Brand Positioning &amp; Development</li>\r\n<li>Market Strategy</li>\r\n<li>Research</li>\r\n<li>Communications</li>\r\n<li>Public Relations &amp; Crisis Management</li>\r\n<li>Strategic Partnerships</li>\r\n<li>Community Engagement</li>\r\n<li>Fundraising</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<ul>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Creative Design</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Visual Identity Systems</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Collateral Production &amp; Development</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Traditional Advertising</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Digital Marketing</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Social / Mobile Marketing</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Photo / Video Production</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"2\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" 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\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_right=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-22 04:47:00','2023-08-22 04:47:00','',1647,'https://test-site.goodcausepartners.com/?p=1752',0,'revision','',0),(1701,1,'2023-08-21 23:21:46','2023-08-21 23:21:46','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Button Text[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"45\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Case Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"true\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<ul>\r\n<li>Brand Positioning &amp; Development</li>\r\n<li>Market Strategy</li>\r\n<li>Research</li>\r\n<li>Communications</li>\r\n<li>Public Relations &amp; Crisis Management</li>\r\n<li>Strategic Partnerships</li>\r\n<li>Community Engagement</li>\r\n<li>Fundraising</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<ul>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Creative Design</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Visual Identity Systems</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Collateral Production &amp; Development</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Traditional Advertising</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Digital Marketing</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Social / Mobile Marketing</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Photo / Video Production</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"2\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" 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\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"75\" padding_bottom=\"75\" flex_column_spacing=\"40px\" background_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"45\" type=\"45\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" margin_top=\"0\" text_transform=\"capitalize\" font_size=\"32\"]Elevate Your Marketing Game with the Good Cause Marketing Partners Newsletter![/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\" margin_bottom=\"0\"]\r\n<p>Subscribe to our newsletter today and receive the monthly news, information, and tips to strengthen your marketing and outreach campaigns </p>\r\n[/fusion_text][fusion_form form_post_id=\"1695\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" margin_left=\"0px\" /][/fusion_builder_column][fusion_builder_column type=\"55\" type=\"55\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" padding_right=\"0\" spacing_right=\"0\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\" max_width=\"1000px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.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\" flex_wrap=\"wrap\" 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\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"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=\"\" 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_right=\"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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-21 23:21:46','2023-08-21 23:21:46','',1647,'https://test-site.goodcausepartners.com/?p=1701',0,'revision','',0),(1699,1,'2023-08-21 23:03:47','2023-08-21 23:03: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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Button Text[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"45\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Case Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"true\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<ul>\r\n<li>Brand Positioning &amp; Development</li>\r\n<li>Market Strategy</li>\r\n<li>Research</li>\r\n<li>Communications</li>\r\n<li>Public Relations &amp; Crisis Management</li>\r\n<li>Strategic Partnerships</li>\r\n<li>Community Engagement</li>\r\n<li>Fundraising</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<ul>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Creative Design</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Visual Identity Systems</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Collateral Production &amp; Development</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Traditional Advertising</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Digital Marketing</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Social / Mobile Marketing</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Photo / Video Production</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"2\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" 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\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\"][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=\"1_1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_section_separator divider_type=\"waves_brush\" divider_repeat_medium=\"1\" divider_repeat_small=\"1\" divider_repeat=\"1\" divider_position=\"right\" divider_candy=\"top\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" backgroundcolor=\"var(--awb-color2)\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"75\" padding_bottom=\"75\" flex_column_spacing=\"40px\" background_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"45\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type=\"45\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" margin_top=\"0\" text_transform=\"capitalize\" font_size=\"32\"]Elevate Your Marketing Game with the Good Cause Marketing Partners Newsletter![/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\" margin_bottom=\"0\"]<p>Subscribe to our newsletter today and receive the monthly news, information, and tips to strengthen your marketing and outreach campaigns </p>[/fusion_text][fusion_form form_post_id=\"1695\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" margin_left=\"0px\" /][/fusion_builder_column][fusion_builder_column type=\"55\" type=\"55\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" padding_right=\"0\" spacing_right=\"0\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\" max_width=\"1000px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.png[/fusion_imageframe][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" 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\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"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=\"\" 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_bottom=\"75\"][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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_section_separator divider_type=\"waves_brush\" divider_repeat_medium=\"1\" divider_repeat_small=\"1\" divider_repeat=\"1\" divider_position=\"right\" divider_candy=\"bottom\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" backgroundcolor=\"var(--awb-color2)\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-21 23:03:47','2023-08-21 23:03:47','',1647,'https://test-site.goodcausepartners.com/?p=1699',0,'revision','',0),(1700,1,'2023-08-21 23:17:44','2023-08-21 23:17: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=\"74\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"0\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" background_color=\"var(--awb-color8)\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\" margin_bottom=\"0\" gradient_start_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 14%),var(--awb-color5-a))\" gradient_end_color=\"var(--awb-color8)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_sizes_top=\"5px\" border_sizes_right=\"5px\" border_sizes_bottom=\"5px\" border_sizes_left=\"5px\" border_color=\"var(--awb-color6)\" padding_top=\"20px\" padding_bottom=\"20px\" padding_right=\"60px\" padding_left=\"60px\" margin_bottom=\"80px\" border_color_hover=\"hsla(var(--awb-color6-h),var(--awb-color6-s),calc(var(--awb-color6-l) + 10%),var(--awb-color6-a))\" padding_top_medium=\"40px\" padding_bottom_medium=\"40px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"75.00\" type=\"75.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\" content_align_medium=\"center\" content_align_small=\"center\"]Empower your online presence with avada hosting[/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\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 20%))\" content_alignment_medium=\"center\" content_alignment_small=\"center\"]\r\n<p>Join our list of 10M customers &amp; get a ‘45-Days Money-Back Guarantee’</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25.00\" type=\"25.00\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\" alignment=\"right\" alignment_medium=\"center\" margin_top=\"20px\" margin_bottom=\"20px\" alignment_small=\"center\"]get started[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"35\" type=\"35\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"var(--awb-color3)\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"45\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<p>Main Menu</p>\r\n[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" active_color=\"var(--awb-color1)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" border_left=\"1px\" active_border_left=\"1px\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"45\" border_sizes_left=\"1\" border_color=\"var(--awb-color2)\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Connect[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-headset fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"48\" iconcolor=\"var(--awb-color2)\" iconcolor_hover=\"var(--awb-color2)\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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 style=\"color: #ffffff;\">(805) 870 - 5050</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"48\" iconcolor=\"var(--awb-color2)\" iconcolor_hover=\"var(--awb-color2)\" icon=\"fa-envelope far\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color3)\"]\r\n<p style=\"color: var(--awb-color3);\">info@goodcausepartners.com</p>\r\n[/fusion_text][/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_top=\"20\"]Follow Us[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 2%),var(--awb-color7-a))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAyMCAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-21 23:17:44','2023-08-21 23:17:44','',351,'https://test-site.goodcausepartners.com/?p=1700',0,'revision','',0),(1702,1,'2023-08-21 23:23:27','2023-08-21 23:23:27','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"45\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Case Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"true\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<ul>\r\n<li>Brand Positioning &amp; Development</li>\r\n<li>Market Strategy</li>\r\n<li>Research</li>\r\n<li>Communications</li>\r\n<li>Public Relations &amp; Crisis Management</li>\r\n<li>Strategic Partnerships</li>\r\n<li>Community Engagement</li>\r\n<li>Fundraising</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<ul>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Creative Design</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Visual Identity Systems</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Collateral Production &amp; Development</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Traditional Advertising</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Digital Marketing</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Social / Mobile Marketing</li>\r\n<li style=\"text-align: left;\" data-fusion-font=\"true\">Photo / Video Production</li>\r\n</ul>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"2\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" 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\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"75\" padding_bottom=\"75\" flex_column_spacing=\"40px\" background_color=\"var(--awb-color2)\"][fusion_builder_row][fusion_builder_column type=\"45\" type=\"45\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"0\" margin_top=\"0\" text_transform=\"capitalize\" font_size=\"32\"]Elevate Your Marketing Game with the Good Cause Marketing Partners Newsletter![/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\" margin_bottom=\"0\"]\r\n<p>Subscribe to our newsletter today and receive the monthly news, information, and tips to strengthen your marketing and outreach campaigns </p>\r\n[/fusion_text][fusion_form form_post_id=\"1695\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" margin_left=\"0px\" /][/fusion_builder_column][fusion_builder_column type=\"55\" type=\"55\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" padding_right=\"0\" spacing_right=\"0\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"center\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\" max_width=\"1000px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.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\" flex_wrap=\"wrap\" 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\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"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=\"\" 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_right=\"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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-21 23:23:27','2023-08-21 23:23:27','',1647,'https://test-site.goodcausepartners.com/?p=1702',0,'revision','',0),(1705,1,'2023-08-21 23:26:41','2023-08-21 23:26: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\" 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\" admin_label=\"Server Locations\" padding_top=\"100px\" background_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 95%))\" padding_bottom=\"100px\" ][fusion_builder_row][fusion_builder_column type=\"1_6\" layout=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\" first=\"true\"][/fusion_builder_column][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" margin_bottom=\"40px\" min_height=\"\" link=\"\" first=\"false\"][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\" content_alignment=\"center\" text_color=\"var(--awb-color5)\" margin_bottom=\"10px\"]\r\n\r\nBinte cailuy tiure aliquid enim tempore\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\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]\r\n\r\ntop-notch &amp; fastest data servers\r\n\r\n[/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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\" content_alignment=\"center\"]\r\n\r\nDignismos sinte iure taques dolore tempore unde magnis cuibus\r\natque laborum sed knam galisum repudiane\r\n\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" layout=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\" first=\"false\"][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6InRpbHQiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoic2FtZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"60px\" min_height=\"\" link=\"\" first=\"true\"][fusion_image_hotspots popover_trigger=\"hover\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" items_animation=\"pulsating\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" image=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/world-map.png\" image_id=\"750|full\" alignment=\"center\" image_max_width=\"1050px\"][fusion_image_hotspot_point pos_x=\"16.0\" icon=\"fusion-prefix-hosting-template-server-solid\" long_title=\"San Francisco\" long_text=\"RG9uJ3QgbGV0IHNsb3cgaG9zdGluZyBkcmFnIHlvdSBkb3duLiBTd2l0Y2ggdG8gb3VyIGhpZ2gtc3BlZWQgc2VydmVycyB0b2RheS4=\" pos_y=\"37.0\" hotspot_text_color=\"var(--awb-color4)\" border_radius_top_left=\"50px\" border_radius_top_right=\"50px\" border_radius_bottom_right=\"50px\" border_radius_bottom_left=\"50px\" padding_top=\"14px\" padding_right=\"14px\" padding_bottom=\"14px\" padding_left=\"14px\" hotspot_hover_background_color=\"var(--awb-color4)\" hotspot_hover_text_color=\"var(--awb-color1)\" font_size=\"16px\" /][fusion_image_hotspot_point pos_x=\"26.0\" icon=\"fusion-prefix-hosting-template-server-solid\" long_title=\"Miami\" long_text=\"RG9uJ3QgbGV0IHNsb3cgaG9zdGluZyBkcmFnIHlvdSBkb3duLiBTd2l0Y2ggdG8gb3VyIGhpZ2gtc3BlZWQgc2VydmVycyB0b2RheS4=\" pos_y=\"53.0\" hotspot_text_color=\"var(--awb-color4)\" border_radius_top_left=\"50px\" border_radius_top_right=\"50px\" border_radius_bottom_right=\"50px\" border_radius_bottom_left=\"50px\" padding_top=\"14px\" padding_right=\"14px\" padding_bottom=\"14px\" padding_left=\"14px\" hotspot_hover_background_color=\"var(--awb-color4)\" hotspot_hover_text_color=\"var(--awb-color1)\" font_size=\"16px\" /][fusion_image_hotspot_point pos_x=\"30.0\" icon=\"fusion-prefix-hosting-template-server-solid\" long_title=\"New York\" long_text=\"RG9uJ3QgbGV0IHNsb3cgaG9zdGluZyBkcmFnIHlvdSBkb3duLiBTd2l0Y2ggdG8gb3VyIGhpZ2gtc3BlZWQgc2VydmVycyB0b2RheS4=\" pos_y=\"42.0\" hotspot_text_color=\"var(--awb-color4)\" border_radius_top_left=\"50px\" border_radius_top_right=\"50px\" border_radius_bottom_right=\"50px\" border_radius_bottom_left=\"50px\" padding_top=\"14px\" padding_right=\"14px\" padding_bottom=\"14px\" padding_left=\"14px\" hotspot_hover_background_color=\"var(--awb-color4)\" hotspot_hover_text_color=\"var(--awb-color1)\" font_size=\"16px\" /][fusion_image_hotspot_point pos_x=\"46.0\" icon=\"fusion-prefix-hosting-template-server-solid\" long_title=\"London\" long_text=\"RG9uJ3QgbGV0IHNsb3cgaG9zdGluZyBkcmFnIHlvdSBkb3duLiBTd2l0Y2ggdG8gb3VyIGhpZ2gtc3BlZWQgc2VydmVycyB0b2RheS4=\" pos_y=\"38.0\" hotspot_text_color=\"var(--awb-color4)\" border_radius_top_left=\"50px\" border_radius_top_right=\"50px\" border_radius_bottom_right=\"50px\" border_radius_bottom_left=\"50px\" padding_top=\"14px\" padding_right=\"14px\" padding_bottom=\"14px\" padding_left=\"14px\" hotspot_hover_background_color=\"var(--awb-color4)\" hotspot_hover_text_color=\"var(--awb-color1)\" font_size=\"16px\" /][fusion_image_hotspot_point pos_x=\"60.0\" icon=\"fusion-prefix-hosting-template-server-solid\" long_title=\"Moscow\" long_text=\"RG9uJ3QgbGV0IHNsb3cgaG9zdGluZyBkcmFnIHlvdSBkb3duLiBTd2l0Y2ggdG8gb3VyIGhpZ2gtc3BlZWQgc2VydmVycyB0b2RheS4=\" pos_y=\"33.0\" hotspot_text_color=\"var(--awb-color4)\" border_radius_top_left=\"50px\" border_radius_top_right=\"50px\" border_radius_bottom_right=\"50px\" border_radius_bottom_left=\"50px\" padding_top=\"14px\" padding_right=\"14px\" padding_bottom=\"14px\" padding_left=\"14px\" hotspot_hover_background_color=\"var(--awb-color4)\" hotspot_hover_text_color=\"var(--awb-color1)\" font_size=\"16px\" /][fusion_image_hotspot_point pos_x=\"52.0\" icon=\"fusion-prefix-hosting-template-server-solid\" long_title=\"Cape Town\" long_text=\"RG9uJ3QgbGV0IHNsb3cgaG9zdGluZyBkcmFnIHlvdSBkb3duLiBTd2l0Y2ggdG8gb3VyIGhpZ2gtc3BlZWQgc2VydmVycyB0b2RheS4=\" pos_y=\"76.0\" hotspot_text_color=\"var(--awb-color4)\" border_radius_top_left=\"50px\" border_radius_top_right=\"50px\" border_radius_bottom_right=\"50px\" border_radius_bottom_left=\"50px\" padding_top=\"14px\" padding_right=\"14px\" padding_bottom=\"14px\" padding_left=\"14px\" hotspot_hover_background_color=\"var(--awb-color4)\" hotspot_hover_text_color=\"var(--awb-color1)\" font_size=\"16px\" /][fusion_image_hotspot_point pos_x=\"86.0\" icon=\"fusion-prefix-hosting-template-server-solid\" long_title=\"Sydney\" long_text=\"RG9uJ3QgbGV0IHNsb3cgaG9zdGluZyBkcmFnIHlvdSBkb3duLiBTd2l0Y2ggdG8gb3VyIGhpZ2gtc3BlZWQgc2VydmVycyB0b2RheS4=\" pos_y=\"82.0\" hotspot_text_color=\"var(--awb-color4)\" border_radius_top_left=\"50px\" border_radius_top_right=\"50px\" border_radius_bottom_right=\"50px\" border_radius_bottom_left=\"50px\" padding_top=\"14px\" padding_right=\"14px\" padding_bottom=\"14px\" padding_left=\"14px\" hotspot_hover_background_color=\"var(--awb-color4)\" hotspot_hover_text_color=\"var(--awb-color1)\" font_size=\"16px\" /][fusion_image_hotspot_point pos_x=\"75.0\" icon=\"fusion-prefix-hosting-template-server-solid\" long_title=\"Singapore\" long_text=\"RG9uJ3QgbGV0IHNsb3cgaG9zdGluZyBkcmFnIHlvdSBkb3duLiBTd2l0Y2ggdG8gb3VyIGhpZ2gtc3BlZWQgc2VydmVycyB0b2RheS4=\" pos_y=\"63.0\" hotspot_text_color=\"var(--awb-color4)\" border_radius_top_left=\"50px\" border_radius_top_right=\"50px\" border_radius_bottom_right=\"50px\" border_radius_bottom_left=\"50px\" padding_top=\"14px\" padding_right=\"14px\" padding_bottom=\"14px\" padding_left=\"14px\" hotspot_hover_background_color=\"var(--awb-color4)\" hotspot_hover_text_color=\"var(--awb-color1)\" font_size=\"16px\" /][fusion_image_hotspot_point pos_x=\"86.0\" icon=\"fusion-prefix-hosting-template-server-solid\" long_title=\"Tokyo\" long_text=\"RG9uJ3QgbGV0IHNsb3cgaG9zdGluZyBkcmFnIHlvdSBkb3duLiBTd2l0Y2ggdG8gb3VyIGhpZ2gtc3BlZWQgc2VydmVycyB0b2RheS4=\" pos_y=\"38.0\" hotspot_text_color=\"var(--awb-color4)\" border_radius_top_left=\"50px\" border_radius_top_right=\"50px\" border_radius_bottom_right=\"50px\" border_radius_bottom_left=\"50px\" padding_top=\"14px\" padding_right=\"14px\" padding_bottom=\"14px\" padding_left=\"14px\" hotspot_hover_background_color=\"var(--awb-color4)\" hotspot_hover_text_color=\"var(--awb-color1)\" font_size=\"16px\" /][/fusion_image_hotspots][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"18px\"][fusion_li_item]<strong>Empowering your website</strong>[/fusion_li_item][fusion_li_item]<strong>Offering 24/7 live expert support</strong>[/fusion_li_item][/fusion_checklist][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"18px\"][fusion_li_item]<strong>Flexible hosting options &amp; plans</strong>[/fusion_li_item][fusion_li_item]\r\n\r\n<strong>Performance without compromise</strong>\r\n\r\n[/fusion_li_item][/fusion_checklist][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"18px\"][fusion_li_item]<strong>Get fastest cloud hosting</strong>[/fusion_li_item][fusion_li_item]<strong>Migrate from previous host easily</strong>[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Data Servers','','inherit','closed','closed','','1083-revision-v1','','','2023-08-21 23:26:41','2023-08-21 23:26:41','',1083,'https://test-site.goodcausepartners.com/?p=1705',0,'revision','',0),(1706,1,'2023-08-21 23:26:41','2023-08-21 23:26: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\" 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\" margin_top=\"100px\" admin_label=\"Features\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" min_height=\"\" link=\"\" first=\"true\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-smartphone\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]\r\n\r\nmaximum\r\nperformance\r\n\r\n[/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\"]Dignismos sint duire atcque\r\ndolore tempor sedip magnis\r\ngalisum repud ipsum.[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" min_height=\"\" link=\"\" first=\"false\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-cloud-hosting\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]\r\n\r\nfully secure\r\ndata centers\r\n\r\n[/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\"]Dignismos sint duire atcque\r\ndolore tempor sedip magnis\r\ngalisum repud ipsum.[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" min_height=\"\" link=\"\" first=\"false\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]\r\n\r\nDDos attack\r\nprevention\r\n\r\n[/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\"]Dignismos sint duire atcque\r\ndolore tempor sedip magnis\r\ngalisum repud ipsum.[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" min_height=\"\" link=\"\" first=\"false\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-web-protection\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]\r\n\r\nget unmetered\r\nbandwidth\r\n\r\n[/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\"]Dignismos sint duire atcque\r\ndolore tempor sedip magnis\r\ngalisum repud ipsum.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 2\" padding_bottom=\"80px\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]\r\n\r\nefficient and reliable cloud hosting for your website\r\n\r\n[/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\" margin_bottom=\"0\"]\r\n\r\nMaecenas arcu placerat tempus venenatis. Orci aliquet faucibus estut etsy sociis rutrum dis. Viverra quam lacus dui adipiscing quis justo sed ipsum lorem nibh purus.\r\n\r\n[/fusion_text][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color5)\" item_padding_bottom=\"12px\" margin_top=\"30px\"][fusion_li_item]\r\n\r\n<strong>Maximize your website\'s potential</strong>\r\n\r\n[/fusion_li_item][fusion_li_item]\r\n\r\n<strong>Get the speed and performance you need</strong>\r\n\r\n[/fusion_li_item][fusion_li_item]\r\n\r\n<strong>Future-proof your website with hosting technology</strong>\r\n\r\n[/fusion_li_item][/fusion_checklist][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]get started today[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\" line_height=\"var(--awb-typography5-line-height)\" margin_top=\"10px\"]* No credit card required[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"205|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-graphic-5.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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" min_height=\"\" link=\"\" first=\"false\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]Binte cailuy aliquid enim tempore[/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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]lightning-fast hosting that keeps your website running[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n\r\nMaecenas arc placerat tempus mor venenatis. Aliquet orci faucibus est ut etsy sociis rutrum dis. Viverra quam lacus dui adipiscing quis justo nibh purus.\r\n\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_2\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"60px\" text_color=\"var(--awb-color4)\" margin_bottom=\"0\" margin_top=\"0\"]\r\n\r\n<strong>45%</strong>\r\n\r\n[/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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]\r\n\r\nGrowth from last year\r\n\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n\r\nLorem ipsum tempor\r\n\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" type_small=\"1_2\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"60px\" text_color=\"var(--awb-color4)\" margin_bottom=\"0\" margin_top=\"0\"]<strong>50k+</strong>[/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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]\r\n\r\nWebsites hosted server\r\n\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n\r\nLorem ipsum tempor\r\n\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]\r\n\r\nimportance of backup and recovery in web hosting\r\n\r\n[/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\" margin_bottom=\"0\"]Maecenas arcu placerat tempus venenatis. Orci aliquet faucibus estut etsy sociis rutrum dis. Viverra quam lacus duis.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-global-servers\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"60\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]\r\n\r\nfast global servers\r\n\r\n[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\"]\r\n\r\nLorem ipsum tempore\r\n\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-web-analytics\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"60\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]website analytics[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\"]\r\n\r\nLorem ipsum tempore\r\n\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]start free trial[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\" line_height=\"var(--awb-typography5-line-height)\" margin_top=\"10px\"]* No credit card required[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1083\"][fusion_global id=\"996\"][fusion_global id=\"1097\"]','Who We Are','','inherit','closed','closed','','1068-revision-v1','','','2023-08-21 23:26:41','2023-08-21 23:26:41','',1068,'https://test-site.goodcausepartners.com/?p=1706',0,'revision','',0),(1724,1,'2023-08-22 00:20:33','2023-08-22 00:20: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=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"60px\" admin_label=\"Contact - Mobile\" padding_bottom=\"40px\" border_sizes_top=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" ][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" type_medium=\"1_1\" margin_bottom_medium=\"40px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"30px\" margin_bottom=\"0\" margin_top=\"0\" text_transform=\"capitalize\" content_align_medium=\"center\"]<strong>need help? get in touch</strong>[/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\" margin_bottom=\"0\" content_alignment_medium=\"center\"]\r\n\r\nSint duire taque aute galisum repudas\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" type_small=\"1_1\" margin_bottom_small=\"20px\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" layout=\"1_4\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_5\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-email\" spin=\"no\" linktarget=\"_self\" bg_size=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"22\" circle=\"yes\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" layout=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left=\"5px\" padding_top=\"5px\" type_small=\"4_5\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color4)\"]Support Email[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"24px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\"]<strong><a href=\"#\">Send @ Email</a></strong>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" type_small=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" layout=\"1_4\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_5\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-chat\" spin=\"no\" linktarget=\"_self\" bg_size=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"26\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" layout=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left=\"5px\" padding_top=\"5px\" type_small=\"4_5\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color4)\"]talk to our agent[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"24px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\"]<strong><a href=\"#\">Live Chat Now</a></strong>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Footer CTA - Mobile','','inherit','closed','closed','','1097-revision-v1','','','2023-08-22 00:20:33','2023-08-22 00:20:33','',1097,'https://test-site.goodcausepartners.com/?p=1724',0,'revision','',0),(1708,1,'2023-08-21 23:58:00','2023-08-21 23:58:00','[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=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"60px\" admin_label=\"Contact - Mobile\" padding_bottom=\"40px\" border_sizes_top=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" ][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" type_medium=\"1_1\" margin_bottom_medium=\"40px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"30px\" margin_bottom=\"0\" margin_top=\"0\" text_transform=\"capitalize\" content_align_medium=\"center\"]<strong>need help? get in touch</strong>[/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\" margin_bottom=\"0\" content_alignment_medium=\"center\"]\r\n<p>Sint duire taque aute galisum repudas</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" type_small=\"1_1\" margin_bottom_small=\"20px\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" type=\"1_4\" layout=\"1_4\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_5\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-email\" spin=\"no\" linktarget=\"_self\" bg_size=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"22\" circle=\"yes\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_4\" layout=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left=\"5px\" padding_top=\"5px\" type_small=\"4_5\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color4)\"]Support Email[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"24px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\"]<strong><a href=\"#\">Send @ Email</a></strong>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" type_small=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" type=\"1_4\" layout=\"1_4\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_5\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-chat\" spin=\"no\" linktarget=\"_self\" bg_size=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"26\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_4\" layout=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left=\"5px\" padding_top=\"5px\" type_small=\"4_5\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color4)\"]talk to our agent[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"24px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\"]<strong><a href=\"#\">Live Chat Now</a></strong>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Footer CTA - Mobile','','inherit','closed','closed','','1097-revision-v1','','','2023-08-21 23:58:00','2023-08-21 23:58:00','',1097,'https://test-site.goodcausepartners.com/?p=1708',0,'revision','',0),(1709,1,'2023-08-21 23:58:00','2023-08-21 23:58:00','[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=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"60px\" admin_label=\"Contact - Desktop\" padding_bottom=\"40px\" border_sizes_top=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" ][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"30px\" margin_bottom=\"0\" margin_top=\"0\" text_transform=\"capitalize\"]<strong>need help? get in touch</strong>[/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\" margin_bottom=\"0\"]\r\n<p>Sint duire taque aute galisum repudas</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" type=\"1_4\" layout=\"1_4\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-email\" spin=\"no\" linktarget=\"_self\" bg_size=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"22\" circle=\"yes\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_4\" layout=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left=\"5px\" padding_top=\"5px\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color4)\"]Support Email[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"24px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\"]<strong><a href=\"#\">Send @ Email</a></strong>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" type=\"1_4\" layout=\"1_4\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-newspaper far\" spin=\"no\" linktarget=\"_self\" bg_size=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"26\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_4\" layout=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left=\"5px\" padding_top=\"5px\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color4)\"]talk to our agent[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"24px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\"]\r\n<p><strong><a href=\"#\">M</a>ailing List</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Footer CTA - Desktop','','inherit','closed','closed','','996-revision-v1','','','2023-08-21 23:58:00','2023-08-21 23:58:00','',996,'https://test-site.goodcausepartners.com/?p=1709',0,'revision','',0),(1710,1,'2023-08-21 23:58:00','2023-08-21 23:58: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\" 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\" admin_label=\"Server Locations\" padding_top=\"100px\" background_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 95%))\" padding_bottom=\"100px\" ][fusion_builder_row][fusion_builder_column type=\"1_6\" type=\"1_6\" layout=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" first=\"true\" min_height=\"\" link=\"\"][/fusion_builder_column][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" margin_bottom=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" content_alignment=\"center\" text_color=\"var(--awb-color5)\" margin_bottom=\"10px\"]\r\n<p>Binte cailuy tiure aliquid enim tempore</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=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]\r\n<p>top-notch &amp; fastest data servers</p>\r\n[/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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\" content_alignment=\"center\"]\r\n<p>Dignismos sinte iure taques dolore tempore unde magnis cuibus<br />\r\natque laborum sed knam galisum repudiane</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_6\" type=\"1_6\" layout=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" first=\"false\" min_height=\"\" link=\"\"][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6InRpbHQiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoic2FtZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_image_hotspots popover_trigger=\"hover\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" items_animation=\"pulsating\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" image=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/world-map.png\" image_id=\"750|full\" alignment=\"center\" image_max_width=\"1050px\"][fusion_image_hotspot_point pos_x=\"16.0\" icon=\"fusion-prefix-hosting-template-server-solid\" long_title=\"San Francisco\" long_text=\"RG9uJ3QgbGV0IHNsb3cgaG9zdGluZyBkcmFnIHlvdSBkb3duLiBTd2l0Y2ggdG8gb3VyIGhpZ2gtc3BlZWQgc2VydmVycyB0b2RheS4=\" pos_y=\"37.0\" hotspot_text_color=\"var(--awb-color4)\" border_radius_top_left=\"50px\" border_radius_top_right=\"50px\" border_radius_bottom_right=\"50px\" border_radius_bottom_left=\"50px\" padding_top=\"14px\" padding_right=\"14px\" padding_bottom=\"14px\" padding_left=\"14px\" hotspot_hover_background_color=\"var(--awb-color4)\" hotspot_hover_text_color=\"var(--awb-color1)\" font_size=\"16px\" /][fusion_image_hotspot_point pos_x=\"26.0\" icon=\"fusion-prefix-hosting-template-server-solid\" long_title=\"Miami\" long_text=\"RG9uJ3QgbGV0IHNsb3cgaG9zdGluZyBkcmFnIHlvdSBkb3duLiBTd2l0Y2ggdG8gb3VyIGhpZ2gtc3BlZWQgc2VydmVycyB0b2RheS4=\" pos_y=\"53.0\" hotspot_text_color=\"var(--awb-color4)\" border_radius_top_left=\"50px\" border_radius_top_right=\"50px\" border_radius_bottom_right=\"50px\" border_radius_bottom_left=\"50px\" padding_top=\"14px\" padding_right=\"14px\" padding_bottom=\"14px\" padding_left=\"14px\" hotspot_hover_background_color=\"var(--awb-color4)\" hotspot_hover_text_color=\"var(--awb-color1)\" font_size=\"16px\" /][fusion_image_hotspot_point pos_x=\"30.0\" icon=\"fusion-prefix-hosting-template-server-solid\" long_title=\"New York\" long_text=\"RG9uJ3QgbGV0IHNsb3cgaG9zdGluZyBkcmFnIHlvdSBkb3duLiBTd2l0Y2ggdG8gb3VyIGhpZ2gtc3BlZWQgc2VydmVycyB0b2RheS4=\" pos_y=\"42.0\" hotspot_text_color=\"var(--awb-color4)\" border_radius_top_left=\"50px\" border_radius_top_right=\"50px\" border_radius_bottom_right=\"50px\" border_radius_bottom_left=\"50px\" padding_top=\"14px\" padding_right=\"14px\" padding_bottom=\"14px\" padding_left=\"14px\" hotspot_hover_background_color=\"var(--awb-color4)\" hotspot_hover_text_color=\"var(--awb-color1)\" font_size=\"16px\" /][fusion_image_hotspot_point pos_x=\"46.0\" icon=\"fusion-prefix-hosting-template-server-solid\" long_title=\"London\" long_text=\"RG9uJ3QgbGV0IHNsb3cgaG9zdGluZyBkcmFnIHlvdSBkb3duLiBTd2l0Y2ggdG8gb3VyIGhpZ2gtc3BlZWQgc2VydmVycyB0b2RheS4=\" pos_y=\"38.0\" hotspot_text_color=\"var(--awb-color4)\" border_radius_top_left=\"50px\" border_radius_top_right=\"50px\" border_radius_bottom_right=\"50px\" border_radius_bottom_left=\"50px\" padding_top=\"14px\" padding_right=\"14px\" padding_bottom=\"14px\" padding_left=\"14px\" hotspot_hover_background_color=\"var(--awb-color4)\" hotspot_hover_text_color=\"var(--awb-color1)\" font_size=\"16px\" /][fusion_image_hotspot_point pos_x=\"60.0\" icon=\"fusion-prefix-hosting-template-server-solid\" long_title=\"Moscow\" long_text=\"RG9uJ3QgbGV0IHNsb3cgaG9zdGluZyBkcmFnIHlvdSBkb3duLiBTd2l0Y2ggdG8gb3VyIGhpZ2gtc3BlZWQgc2VydmVycyB0b2RheS4=\" pos_y=\"33.0\" hotspot_text_color=\"var(--awb-color4)\" border_radius_top_left=\"50px\" border_radius_top_right=\"50px\" border_radius_bottom_right=\"50px\" border_radius_bottom_left=\"50px\" padding_top=\"14px\" padding_right=\"14px\" padding_bottom=\"14px\" padding_left=\"14px\" hotspot_hover_background_color=\"var(--awb-color4)\" hotspot_hover_text_color=\"var(--awb-color1)\" font_size=\"16px\" /][fusion_image_hotspot_point pos_x=\"52.0\" icon=\"fusion-prefix-hosting-template-server-solid\" long_title=\"Cape Town\" long_text=\"RG9uJ3QgbGV0IHNsb3cgaG9zdGluZyBkcmFnIHlvdSBkb3duLiBTd2l0Y2ggdG8gb3VyIGhpZ2gtc3BlZWQgc2VydmVycyB0b2RheS4=\" pos_y=\"76.0\" hotspot_text_color=\"var(--awb-color4)\" border_radius_top_left=\"50px\" border_radius_top_right=\"50px\" border_radius_bottom_right=\"50px\" border_radius_bottom_left=\"50px\" padding_top=\"14px\" padding_right=\"14px\" padding_bottom=\"14px\" padding_left=\"14px\" hotspot_hover_background_color=\"var(--awb-color4)\" hotspot_hover_text_color=\"var(--awb-color1)\" font_size=\"16px\" /][fusion_image_hotspot_point pos_x=\"86.0\" icon=\"fusion-prefix-hosting-template-server-solid\" long_title=\"Sydney\" long_text=\"RG9uJ3QgbGV0IHNsb3cgaG9zdGluZyBkcmFnIHlvdSBkb3duLiBTd2l0Y2ggdG8gb3VyIGhpZ2gtc3BlZWQgc2VydmVycyB0b2RheS4=\" pos_y=\"82.0\" hotspot_text_color=\"var(--awb-color4)\" border_radius_top_left=\"50px\" border_radius_top_right=\"50px\" border_radius_bottom_right=\"50px\" border_radius_bottom_left=\"50px\" padding_top=\"14px\" padding_right=\"14px\" padding_bottom=\"14px\" padding_left=\"14px\" hotspot_hover_background_color=\"var(--awb-color4)\" hotspot_hover_text_color=\"var(--awb-color1)\" font_size=\"16px\" /][fusion_image_hotspot_point pos_x=\"75.0\" icon=\"fusion-prefix-hosting-template-server-solid\" long_title=\"Singapore\" long_text=\"RG9uJ3QgbGV0IHNsb3cgaG9zdGluZyBkcmFnIHlvdSBkb3duLiBTd2l0Y2ggdG8gb3VyIGhpZ2gtc3BlZWQgc2VydmVycyB0b2RheS4=\" pos_y=\"63.0\" hotspot_text_color=\"var(--awb-color4)\" border_radius_top_left=\"50px\" border_radius_top_right=\"50px\" border_radius_bottom_right=\"50px\" border_radius_bottom_left=\"50px\" padding_top=\"14px\" padding_right=\"14px\" padding_bottom=\"14px\" padding_left=\"14px\" hotspot_hover_background_color=\"var(--awb-color4)\" hotspot_hover_text_color=\"var(--awb-color1)\" font_size=\"16px\" /][fusion_image_hotspot_point pos_x=\"86.0\" icon=\"fusion-prefix-hosting-template-server-solid\" long_title=\"Tokyo\" long_text=\"RG9uJ3QgbGV0IHNsb3cgaG9zdGluZyBkcmFnIHlvdSBkb3duLiBTd2l0Y2ggdG8gb3VyIGhpZ2gtc3BlZWQgc2VydmVycyB0b2RheS4=\" pos_y=\"38.0\" hotspot_text_color=\"var(--awb-color4)\" border_radius_top_left=\"50px\" border_radius_top_right=\"50px\" border_radius_bottom_right=\"50px\" border_radius_bottom_left=\"50px\" padding_top=\"14px\" padding_right=\"14px\" padding_bottom=\"14px\" padding_left=\"14px\" hotspot_hover_background_color=\"var(--awb-color4)\" hotspot_hover_text_color=\"var(--awb-color1)\" font_size=\"16px\" /][/fusion_image_hotspots][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"18px\"][fusion_li_item]<strong>Empowering your website</strong>[/fusion_li_item][fusion_li_item]<strong>Offering 24/7 live expert support</strong>[/fusion_li_item][/fusion_checklist][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"18px\"][fusion_li_item]<strong>Flexible hosting options &amp; plans</strong>[/fusion_li_item][fusion_li_item]\r\n<p><strong>Performance without compromise</strong></p>\r\n[/fusion_li_item][/fusion_checklist][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"18px\"][fusion_li_item]<strong>Get fastest cloud hosting</strong>[/fusion_li_item][fusion_li_item]<strong>Migrate from previous host easily</strong>[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Data Servers','','inherit','closed','closed','','1083-revision-v1','','','2023-08-21 23:58:00','2023-08-21 23:58:00','',1083,'https://test-site.goodcausepartners.com/?p=1710',0,'revision','',0);
INSERT INTO `wp_gc2023posts` VALUES (1717,1,'2023-08-22 00:05:40','2023-08-22 00:05: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]About Good Cause Marketing Partners[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Where Passion for Effective Marketing Meets Dedication to Societal Impact</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>At Good Cause Marketing Partners, we stand proud as a leading boutique integrated marketing communications agency, tailor-made for the unique demands of both businesses and nonprofits. Our vision is crystallized in our relentless pursuit to weave compelling narratives that enhance visibility and foster growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore Our Services[/fusion_button][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"40\"]Our Expertise Spans a Range of Specialized Areas[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-smartphone\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Strategy[/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\" content_alignment=\"center\"]\r\n<p>Crafting bespoke blueprints and roadmaps for success.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-cloud-hosting\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Branding[/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\" content_alignment=\"center\"]\r\n<p>Shaping identities that capture attention, resonate, and linger.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Marketing[/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\" content_alignment=\"center\"]Creating campaigns that target and persuade audiences.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-smartphone\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Communications[/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\" content_alignment=\"center\"]\r\n<p>Refining and sharing stories that matter to your audience.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-cloud-hosting\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Digital[/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\" content_alignment=\"center\"]\r\n<p> Harnessing the virtual sphere for tangible results.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Parnerships &amp; Community[/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\" content_alignment=\"center\"]\r\n<p>Connecting and collaborating for amplified impact.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"205|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-graphic-5.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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]Binte cailuy aliquid enim tempore[/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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]lightning-fast hosting that keeps your website running[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>Maecenas arc placerat tempus mor venenatis. Aliquet orci faucibus est ut etsy sociis rutrum dis. Viverra quam lacus dui adipiscing quis justo nibh purus.</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"60px\" text_color=\"var(--awb-color4)\" margin_bottom=\"0\" margin_top=\"0\"]\r\n<p><strong>45%</strong></p>\r\n[/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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]\r\n<p>Growth from last year</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<p>Lorem ipsum tempor</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" type_small=\"1_2\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"60px\" text_color=\"var(--awb-color4)\" margin_bottom=\"0\" margin_top=\"0\"]<strong>50k+</strong>[/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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]\r\n<p>Websites hosted server</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<p>Lorem ipsum tempor</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]\r\n<p>importance of backup and recovery in web hosting</p>\r\n[/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\" margin_bottom=\"0\"]Maecenas arcu placerat tempus venenatis. Orci aliquet faucibus estut etsy sociis rutrum dis. Viverra quam lacus duis.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-global-servers\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"60\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]\r\n<p>fast global servers</p>\r\n[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\"]\r\n<p>Lorem ipsum tempore</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-web-analytics\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"60\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]website analytics[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\"]\r\n<p>Lorem ipsum tempore</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]start free trial[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\" line_height=\"var(--awb-typography5-line-height)\" margin_top=\"10px\"]* No credit card required[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1083\"][fusion_global id=\"996\"][fusion_global id=\"1097\"]','Who We Are','','inherit','closed','closed','','1068-revision-v1','','','2023-08-22 00:05:40','2023-08-22 00:05:40','',1068,'https://test-site.goodcausepartners.com/?p=1717',0,'revision','',0),(1711,1,'2023-08-21 23:58:00','2023-08-21 23:58: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]About Good Cause Marketing Partners[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Where Passion for Effective Marketing Meets Dedication to Societal Impact</span></p>[/fusion_text][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\" margin_bottom=\"0\" margin_top=\"22\"]<p>At Good Cause Marketing Partners, we stand proud as a leading boutique integrated marketing communications agency, tailor-made for the unique demands of both businesses and nonprofits. Our vision is crystallized in our relentless pursuit to weave compelling narratives that enhance visibility and foster growth.</p>[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\"][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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" 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=\"center\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"40\"]Our Expertise Spans a Range of Specialized Areas[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-smartphone\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Strategy[/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\" content_alignment=\"center\"]<p>Crafting bespoke blueprints and roadmaps for success.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-cloud-hosting\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Branding[/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\" content_alignment=\"center\"]<p>Shaping identities that capture attention, resonate, and linger.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Marketing[/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\" content_alignment=\"center\"]Creating campaigns that target and persuade audiences.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-smartphone\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Communications[/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\" content_alignment=\"center\"]<p>Refining and sharing stories that matter to your audience.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-cloud-hosting\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Branding[/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\" content_alignment=\"center\"]<p> Harnessing the virtual sphere for tangible results.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Marketing[/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\" content_alignment=\"center\"]<p>Connecting and collaborating for amplified impact.</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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"205|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-graphic-5.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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]Binte cailuy aliquid enim tempore[/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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]lightning-fast hosting that keeps your website running[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>Maecenas arc placerat tempus mor venenatis. Aliquet orci faucibus est ut etsy sociis rutrum dis. Viverra quam lacus dui adipiscing quis justo nibh purus.</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"60px\" text_color=\"var(--awb-color4)\" margin_bottom=\"0\" margin_top=\"0\"]\r\n<p><strong>45%</strong></p>\r\n[/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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]\r\n<p>Growth from last year</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<p>Lorem ipsum tempor</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" type_small=\"1_2\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"60px\" text_color=\"var(--awb-color4)\" margin_bottom=\"0\" margin_top=\"0\"]<strong>50k+</strong>[/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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]\r\n<p>Websites hosted server</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<p>Lorem ipsum tempor</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]\r\n<p>importance of backup and recovery in web hosting</p>\r\n[/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\" margin_bottom=\"0\"]Maecenas arcu placerat tempus venenatis. Orci aliquet faucibus estut etsy sociis rutrum dis. Viverra quam lacus duis.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-global-servers\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"60\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]\r\n<p>fast global servers</p>\r\n[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\"]\r\n<p>Lorem ipsum tempore</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-web-analytics\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"60\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]website analytics[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\"]\r\n<p>Lorem ipsum tempore</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]start free trial[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\" line_height=\"var(--awb-typography5-line-height)\" margin_top=\"10px\"]* No credit card required[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1083\"][fusion_global id=\"996\"][fusion_global id=\"1097\"]','Who We Are','','inherit','closed','closed','','1068-revision-v1','','','2023-08-21 23:58:00','2023-08-21 23:58:00','',1068,'https://test-site.goodcausepartners.com/?p=1711',0,'revision','',0),(1716,1,'2023-08-22 00:05:01','2023-08-22 00: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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]About Good Cause Marketing Partners[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Where Passion for Effective Marketing Meets Dedication to Societal Impact</span></p>\r\n[/fusion_text][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\" margin_bottom=\"0\" margin_top=\"22\"]<p>At Good Cause Marketing Partners, we stand proud as a leading boutique integrated marketing communications agency, tailor-made for the unique demands of both businesses and nonprofits. Our vision is crystallized in our relentless pursuit to weave compelling narratives that enhance visibility and foster growth.</p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" padding_top=\"20\" padding_bottom=\"20\"]Explore Our Services[/fusion_button][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"40\"]Our Expertise Spans a Range of Specialized Areas[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-smartphone\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Strategy[/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\" content_alignment=\"center\"]\r\n<p>Crafting bespoke blueprints and roadmaps for success.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-cloud-hosting\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Branding[/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\" content_alignment=\"center\"]\r\n<p>Shaping identities that capture attention, resonate, and linger.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Marketing[/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\" content_alignment=\"center\"]Creating campaigns that target and persuade audiences.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-smartphone\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Communications[/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\" content_alignment=\"center\"]\r\n<p>Refining and sharing stories that matter to your audience.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-cloud-hosting\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Digital[/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\" content_alignment=\"center\"]\r\n<p> Harnessing the virtual sphere for tangible results.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Parnerships &amp; Community[/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\" content_alignment=\"center\"]\r\n<p>Connecting and collaborating for amplified impact.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"205|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-graphic-5.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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]Binte cailuy aliquid enim tempore[/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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]lightning-fast hosting that keeps your website running[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>Maecenas arc placerat tempus mor venenatis. Aliquet orci faucibus est ut etsy sociis rutrum dis. Viverra quam lacus dui adipiscing quis justo nibh purus.</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"60px\" text_color=\"var(--awb-color4)\" margin_bottom=\"0\" margin_top=\"0\"]\r\n<p><strong>45%</strong></p>\r\n[/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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]\r\n<p>Growth from last year</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<p>Lorem ipsum tempor</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" type_small=\"1_2\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"60px\" text_color=\"var(--awb-color4)\" margin_bottom=\"0\" margin_top=\"0\"]<strong>50k+</strong>[/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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]\r\n<p>Websites hosted server</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<p>Lorem ipsum tempor</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]\r\n<p>importance of backup and recovery in web hosting</p>\r\n[/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\" margin_bottom=\"0\"]Maecenas arcu placerat tempus venenatis. Orci aliquet faucibus estut etsy sociis rutrum dis. Viverra quam lacus duis.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-global-servers\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"60\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]\r\n<p>fast global servers</p>\r\n[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\"]\r\n<p>Lorem ipsum tempore</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-web-analytics\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"60\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]website analytics[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\"]\r\n<p>Lorem ipsum tempore</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]start free trial[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\" line_height=\"var(--awb-typography5-line-height)\" margin_top=\"10px\"]* No credit card required[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1083\"][fusion_global id=\"996\"][fusion_global id=\"1097\"]','Who We Are','','inherit','closed','closed','','1068-revision-v1','','','2023-08-22 00:05:01','2023-08-22 00:05:01','',1068,'https://test-site.goodcausepartners.com/?p=1716',0,'revision','',0),(1715,1,'2023-08-22 00:04:49','2023-08-22 00:04: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]About Good Cause Marketing Partners[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Where Passion for Effective Marketing Meets Dedication to Societal Impact</span></p>\r\n[/fusion_text][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\" margin_bottom=\"0\" margin_top=\"22\"]<p>At Good Cause Marketing Partners, we stand proud as a leading boutique integrated marketing communications agency, tailor-made for the unique demands of both businesses and nonprofits. Our vision is crystallized in our relentless pursuit to weave compelling narratives that enhance visibility and foster growth.</p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" padding_top=\"20\" padding_bottom=\"20\"]Explore Our Services[/fusion_button][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"40\"]Our Expertise Spans a Range of Specialized Areas[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-smartphone\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Strategy[/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\" content_alignment=\"center\"]\r\n<p>Crafting bespoke blueprints and roadmaps for success.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-cloud-hosting\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Branding[/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\" content_alignment=\"center\"]\r\n<p>Shaping identities that capture attention, resonate, and linger.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Marketing[/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\" content_alignment=\"center\"]Creating campaigns that target and persuade audiences.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-smartphone\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Communications[/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\" content_alignment=\"center\"]\r\n<p>Refining and sharing stories that matter to your audience.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-cloud-hosting\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Digital[/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\" content_alignment=\"center\"]\r\n<p> Harnessing the virtual sphere for tangible results.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Parnerships &amp; Community[/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\" content_alignment=\"center\"]\r\n<p>Connecting and collaborating for amplified impact.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_bottom=\"75\" padding_top=\"20\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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 style=\"text-align: center;\">Learn More About Our Services</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"205|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-graphic-5.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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]Binte cailuy aliquid enim tempore[/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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]lightning-fast hosting that keeps your website running[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>Maecenas arc placerat tempus mor venenatis. Aliquet orci faucibus est ut etsy sociis rutrum dis. Viverra quam lacus dui adipiscing quis justo nibh purus.</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"60px\" text_color=\"var(--awb-color4)\" margin_bottom=\"0\" margin_top=\"0\"]\r\n<p><strong>45%</strong></p>\r\n[/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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]\r\n<p>Growth from last year</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<p>Lorem ipsum tempor</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" type_small=\"1_2\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"60px\" text_color=\"var(--awb-color4)\" margin_bottom=\"0\" margin_top=\"0\"]<strong>50k+</strong>[/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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]\r\n<p>Websites hosted server</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<p>Lorem ipsum tempor</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]\r\n<p>importance of backup and recovery in web hosting</p>\r\n[/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\" margin_bottom=\"0\"]Maecenas arcu placerat tempus venenatis. Orci aliquet faucibus estut etsy sociis rutrum dis. Viverra quam lacus duis.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-global-servers\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"60\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]\r\n<p>fast global servers</p>\r\n[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\"]\r\n<p>Lorem ipsum tempore</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-web-analytics\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"60\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]website analytics[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\"]\r\n<p>Lorem ipsum tempore</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]start free trial[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\" line_height=\"var(--awb-typography5-line-height)\" margin_top=\"10px\"]* No credit card required[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1083\"][fusion_global id=\"996\"][fusion_global id=\"1097\"]','Who We Are','','inherit','closed','closed','','1068-revision-v1','','','2023-08-22 00:04:49','2023-08-22 00:04:49','',1068,'https://test-site.goodcausepartners.com/?p=1715',0,'revision','',0),(1712,1,'2023-08-22 00:00:42','2023-08-22 00:00: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]About Good Cause Marketing Partners[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Where Passion for Effective Marketing Meets Dedication to Societal Impact</span></p>[/fusion_text][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\" margin_bottom=\"0\" margin_top=\"22\"]<p>At Good Cause Marketing Partners, we stand proud as a leading boutique integrated marketing communications agency, tailor-made for the unique demands of both businesses and nonprofits. Our vision is crystallized in our relentless pursuit to weave compelling narratives that enhance visibility and foster growth.</p>[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\"][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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" 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=\"center\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"40\"]Our Expertise Spans a Range of Specialized Areas[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-smartphone\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Strategy[/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\" content_alignment=\"center\"]<p>Crafting bespoke blueprints and roadmaps for success.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-cloud-hosting\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Branding[/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\" content_alignment=\"center\"]<p>Shaping identities that capture attention, resonate, and linger.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Marketing[/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\" content_alignment=\"center\"]Creating campaigns that target and persuade audiences.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-smartphone\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Communications[/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\" content_alignment=\"center\"]<p>Refining and sharing stories that matter to your audience.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-cloud-hosting\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Branding[/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\" content_alignment=\"center\"]<p> Harnessing the virtual sphere for tangible results.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Marketing[/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\" content_alignment=\"center\"]<p>Connecting and collaborating for amplified impact.</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\" flex_wrap=\"wrap\" 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\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"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=\"\" 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_bottom=\"75\"][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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" 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\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" 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_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More about What We Do[/fusion_title][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" 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\" alignment=\"center\"]Explore Our Services[/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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"205|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-graphic-5.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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]Binte cailuy aliquid enim tempore[/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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]lightning-fast hosting that keeps your website running[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>Maecenas arc placerat tempus mor venenatis. Aliquet orci faucibus est ut etsy sociis rutrum dis. Viverra quam lacus dui adipiscing quis justo nibh purus.</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"60px\" text_color=\"var(--awb-color4)\" margin_bottom=\"0\" margin_top=\"0\"]\r\n<p><strong>45%</strong></p>\r\n[/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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]\r\n<p>Growth from last year</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<p>Lorem ipsum tempor</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" type_small=\"1_2\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"60px\" text_color=\"var(--awb-color4)\" margin_bottom=\"0\" margin_top=\"0\"]<strong>50k+</strong>[/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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]\r\n<p>Websites hosted server</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<p>Lorem ipsum tempor</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]\r\n<p>importance of backup and recovery in web hosting</p>\r\n[/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\" margin_bottom=\"0\"]Maecenas arcu placerat tempus venenatis. Orci aliquet faucibus estut etsy sociis rutrum dis. Viverra quam lacus duis.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-global-servers\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"60\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]\r\n<p>fast global servers</p>\r\n[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\"]\r\n<p>Lorem ipsum tempore</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-web-analytics\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"60\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]website analytics[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\"]\r\n<p>Lorem ipsum tempore</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]start free trial[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\" line_height=\"var(--awb-typography5-line-height)\" margin_top=\"10px\"]* No credit card required[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1083\"][fusion_global id=\"996\"][fusion_global id=\"1097\"]','Who We Are','','inherit','closed','closed','','1068-revision-v1','','','2023-08-22 00:00:42','2023-08-22 00:00:42','',1068,'https://test-site.goodcausepartners.com/?p=1712',0,'revision','',0),(1714,1,'2023-08-22 00:03:13','2023-08-22 00:03: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]About Good Cause Marketing Partners[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Where Passion for Effective Marketing Meets Dedication to Societal Impact</span></p>\r\n[/fusion_text][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\" margin_bottom=\"0\" margin_top=\"22\"]\r\n<p>At Good Cause Marketing Partners, we stand proud as a leading boutique integrated marketing communications agency, tailor-made for the unique demands of both businesses and nonprofits. Our vision is crystallized in our relentless pursuit to weave compelling narratives that enhance visibility and foster growth.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"40\"]Our Expertise Spans a Range of Specialized Areas[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-smartphone\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Strategy[/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\" content_alignment=\"center\"]\r\n<p>Crafting bespoke blueprints and roadmaps for success.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-cloud-hosting\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Branding[/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\" content_alignment=\"center\"]\r\n<p>Shaping identities that capture attention, resonate, and linger.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Marketing[/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\" content_alignment=\"center\"]Creating campaigns that target and persuade audiences.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-smartphone\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Communications[/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\" content_alignment=\"center\"]\r\n<p>Refining and sharing stories that matter to your audience.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-cloud-hosting\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Digital[/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\" content_alignment=\"center\"]\r\n<p> Harnessing the virtual sphere for tangible results.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Parnerships &amp; Community[/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\" content_alignment=\"center\"]\r\n<p>Connecting and collaborating for amplified impact.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_bottom=\"75\" padding_top=\"20\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" logics=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p style=\"text-align: center;\">Learn More About Our Services</p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" alignment=\"center\"]Explore Our Services[/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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"205|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-graphic-5.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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]Binte cailuy aliquid enim tempore[/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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]lightning-fast hosting that keeps your website running[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>Maecenas arc placerat tempus mor venenatis. Aliquet orci faucibus est ut etsy sociis rutrum dis. Viverra quam lacus dui adipiscing quis justo nibh purus.</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"60px\" text_color=\"var(--awb-color4)\" margin_bottom=\"0\" margin_top=\"0\"]\r\n<p><strong>45%</strong></p>\r\n[/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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]\r\n<p>Growth from last year</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<p>Lorem ipsum tempor</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" type_small=\"1_2\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"60px\" text_color=\"var(--awb-color4)\" margin_bottom=\"0\" margin_top=\"0\"]<strong>50k+</strong>[/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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]\r\n<p>Websites hosted server</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<p>Lorem ipsum tempor</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]\r\n<p>importance of backup and recovery in web hosting</p>\r\n[/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\" margin_bottom=\"0\"]Maecenas arcu placerat tempus venenatis. Orci aliquet faucibus estut etsy sociis rutrum dis. Viverra quam lacus duis.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-global-servers\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"60\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]\r\n<p>fast global servers</p>\r\n[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\"]\r\n<p>Lorem ipsum tempore</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-web-analytics\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"60\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]website analytics[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\"]\r\n<p>Lorem ipsum tempore</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]start free trial[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\" line_height=\"var(--awb-typography5-line-height)\" margin_top=\"10px\"]* No credit card required[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1083\"][fusion_global id=\"996\"][fusion_global id=\"1097\"]','Who We Are','','inherit','closed','closed','','1068-revision-v1','','','2023-08-22 00:03:13','2023-08-22 00:03:13','',1068,'https://test-site.goodcausepartners.com/?p=1714',0,'revision','',0),(1713,1,'2023-08-22 00:01:51','2023-08-22 00:01: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]About Good Cause Marketing Partners[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Where Passion for Effective Marketing Meets Dedication to Societal Impact</span></p>[/fusion_text][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\" margin_bottom=\"0\" margin_top=\"22\"]<p>At Good Cause Marketing Partners, we stand proud as a leading boutique integrated marketing communications agency, tailor-made for the unique demands of both businesses and nonprofits. Our vision is crystallized in our relentless pursuit to weave compelling narratives that enhance visibility and foster growth.</p>[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\"][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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" 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=\"center\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"40\"]Our Expertise Spans a Range of Specialized Areas[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-smartphone\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Strategy[/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\" content_alignment=\"center\"]<p>Crafting bespoke blueprints and roadmaps for success.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-cloud-hosting\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Branding[/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\" content_alignment=\"center\"]<p>Shaping identities that capture attention, resonate, and linger.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Marketing[/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\" content_alignment=\"center\"]Creating campaigns that target and persuade audiences.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-smartphone\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Communications[/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\" content_alignment=\"center\"]<p>Refining and sharing stories that matter to your audience.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-cloud-hosting\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Digital[/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\" content_alignment=\"center\"]<p> Harnessing the virtual sphere for tangible results.</p>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Parnerships &amp; Community[/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\" content_alignment=\"center\"]<p>Connecting and collaborating for amplified impact.</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\" flex_wrap=\"wrap\" 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\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"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=\"\" 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_bottom=\"75\"][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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" 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\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"4\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" 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_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More about What We Do[/fusion_title][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" 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\" alignment=\"center\"]Explore Our Services[/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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"205|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-graphic-5.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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]Binte cailuy aliquid enim tempore[/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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]lightning-fast hosting that keeps your website running[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>Maecenas arc placerat tempus mor venenatis. Aliquet orci faucibus est ut etsy sociis rutrum dis. Viverra quam lacus dui adipiscing quis justo nibh purus.</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"60px\" text_color=\"var(--awb-color4)\" margin_bottom=\"0\" margin_top=\"0\"]\r\n<p><strong>45%</strong></p>\r\n[/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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]\r\n<p>Growth from last year</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<p>Lorem ipsum tempor</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" type_small=\"1_2\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"60px\" text_color=\"var(--awb-color4)\" margin_bottom=\"0\" margin_top=\"0\"]<strong>50k+</strong>[/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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]\r\n<p>Websites hosted server</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<p>Lorem ipsum tempor</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]\r\n<p>importance of backup and recovery in web hosting</p>\r\n[/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\" margin_bottom=\"0\"]Maecenas arcu placerat tempus venenatis. Orci aliquet faucibus estut etsy sociis rutrum dis. Viverra quam lacus duis.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-global-servers\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"60\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]\r\n<p>fast global servers</p>\r\n[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\"]\r\n<p>Lorem ipsum tempore</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-web-analytics\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"60\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]website analytics[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\"]\r\n<p>Lorem ipsum tempore</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]start free trial[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\" line_height=\"var(--awb-typography5-line-height)\" margin_top=\"10px\"]* No credit card required[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1083\"][fusion_global id=\"996\"][fusion_global id=\"1097\"]','Who We Are','','inherit','closed','closed','','1068-revision-v1','','','2023-08-22 00:01:51','2023-08-22 00:01:51','',1068,'https://test-site.goodcausepartners.com/?p=1713',0,'revision','',0),(1719,1,'2023-08-22 00:15:31','2023-08-22 00:15: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]About Good Cause Marketing Partners[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Where Passion for Effective Marketing Meets Dedication to Societal Impact</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>At Good Cause Marketing Partners, we stand proud as a leading boutique integrated marketing communications agency, tailor-made for the unique demands of both businesses and nonprofits. Our vision is crystallized in our relentless pursuit to weave compelling narratives that enhance visibility and foster growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore Our Services[/fusion_button][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"40\"]Our Expertise Spans a Range of Specialized Areas[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-smartphone\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Strategy[/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\" content_alignment=\"center\"]\r\n<p>Crafting bespoke blueprints and roadmaps for success.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-cloud-hosting\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Branding[/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\" content_alignment=\"center\"]\r\n<p>Shaping identities that capture attention, resonate, and linger.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Marketing[/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\" content_alignment=\"center\"]Creating campaigns that target and persuade audiences.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\" padding_bottom=\"65\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-smartphone\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Communications[/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\" content_alignment=\"center\"]\r\n<p>Refining and sharing stories that matter to your audience.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-cloud-hosting\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Digital[/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\" content_alignment=\"center\"]\r\n<p> Harnessing the virtual sphere for tangible results.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Parnerships &amp; Community[/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\" content_alignment=\"center\"]\r\n<p>Connecting and collaborating for amplified impact.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Approach at Good Cause Marketing Partners[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]<p>Every collaboration with <b>Good Cause Marketing Partners</b> promises a holistic approach. We are not just about marketing; we are about creating a ripple effect. Through meticulous positioning and strategy, we endeavor to shape public perceptions, stir emotions, and encourage actions that resonate with your brand values.</p>\n<p>Our philosophy for every project is underpinned by three cardinal principles:</p>\n<ol>\n<li><b>Unified Brand Experience</b>: Enabling brands to be consistent, recognizable, and memorable.</li>\n<li><b>Vision-Driven Community Building</b>: Constructing a brand community that rallies around a shared vision.</li>\n<li><b>Strategic Enterprise Framework</b>: Architecting a consolidated marketing framework that aligns seamlessly with a company’s ethos.</li>\n</ol>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]<p>The heart of any organization lies in its mission and vision. Recognizing this, we ensure all branding, marketing, and communication endeavors are tuned to echo these sentiments. As guardians of your brand, we understand the nuances of modern consumers, who are as invested in a company\'s ethos as they are in its offerings. This understanding drives us to craft each communication piece as an ambassador of your brand\'s core messages.</p><p>In an era dominated by information overload, we champion the art of timely and relevant messaging, reaching out to audiences precisely when and where they should be reached. Transparency, continuous learning, and unwavering accountability guide our every move, ensuring our strategies are not just efficient but progressively innovative.</p><ol>\n</ol>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.png[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Let\'s Craft Your Story Together[/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\" margin_bottom=\"0\"]<p>Every brand has a unique narrative, and every cause has the power to impact. With Good Cause Marketing Partners and the expertise of seasoned professionals like Matt Midura, you’re not just getting a marketing campaign; you’re gaining a dedicated partner in sharing your story with the world. Dive into a partnership where passion, expertise, and genuine commitment come together to create waves of change.</p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]Connect with Us Today[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','Who We Are','','inherit','closed','closed','','1068-revision-v1','','','2023-08-22 00:15:31','2023-08-22 00:15:31','',1068,'https://test-site.goodcausepartners.com/?p=1719',0,'revision','',0),(1718,1,'2023-08-22 00:06:40','2023-08-22 00:06: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]About Good Cause Marketing Partners[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Where Passion for Effective Marketing Meets Dedication to Societal Impact</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>At Good Cause Marketing Partners, we stand proud as a leading boutique integrated marketing communications agency, tailor-made for the unique demands of both businesses and nonprofits. Our vision is crystallized in our relentless pursuit to weave compelling narratives that enhance visibility and foster growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore Our Services[/fusion_button][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"40\"]Our Expertise Spans a Range of Specialized Areas[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-smartphone\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Strategy[/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\" content_alignment=\"center\"]\r\n<p>Crafting bespoke blueprints and roadmaps for success.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-cloud-hosting\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Branding[/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\" content_alignment=\"center\"]\r\n<p>Shaping identities that capture attention, resonate, and linger.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Marketing[/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\" content_alignment=\"center\"]Creating campaigns that target and persuade audiences.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\" padding_bottom=\"65\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-smartphone\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Communications[/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\" content_alignment=\"center\"]\r\n<p>Refining and sharing stories that matter to your audience.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-cloud-hosting\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Digital[/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\" content_alignment=\"center\"]\r\n<p> Harnessing the virtual sphere for tangible results.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Parnerships &amp; Community[/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\" content_alignment=\"center\"]\r\n<p>Connecting and collaborating for amplified impact.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"205|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-graphic-5.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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]Binte cailuy aliquid enim tempore[/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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]lightning-fast hosting that keeps your website running[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>Maecenas arc placerat tempus mor venenatis. Aliquet orci faucibus est ut etsy sociis rutrum dis. Viverra quam lacus dui adipiscing quis justo nibh purus.</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"60px\" text_color=\"var(--awb-color4)\" margin_bottom=\"0\" margin_top=\"0\"]\r\n<p><strong>45%</strong></p>\r\n[/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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]\r\n<p>Growth from last year</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<p>Lorem ipsum tempor</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" type_small=\"1_2\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"60px\" text_color=\"var(--awb-color4)\" margin_bottom=\"0\" margin_top=\"0\"]<strong>50k+</strong>[/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\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\"]\r\n<p>Websites hosted server</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 50%))\" margin_bottom=\"0\"]\r\n<p>Lorem ipsum tempor</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]\r\n<p>importance of backup and recovery in web hosting</p>\r\n[/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\" margin_bottom=\"0\"]Maecenas arcu placerat tempus venenatis. Orci aliquet faucibus estut etsy sociis rutrum dis. Viverra quam lacus duis.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-global-servers\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"60\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]\r\n<p>fast global servers</p>\r\n[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\"]\r\n<p>Lorem ipsum tempore</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-web-analytics\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"60\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]website analytics[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\"]\r\n<p>Lorem ipsum tempore</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]start free trial[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\" line_height=\"var(--awb-typography5-line-height)\" margin_top=\"10px\"]* No credit card required[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1083\"][fusion_global id=\"996\"][fusion_global id=\"1097\"]','Who We Are','','inherit','closed','closed','','1068-revision-v1','','','2023-08-22 00:06:40','2023-08-22 00:06:40','',1068,'https://test-site.goodcausepartners.com/?p=1718',0,'revision','',0),(1720,1,'2023-08-22 00:16:39','2023-08-22 00:16: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]About Good Cause Marketing Partners[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Where Passion for Effective Marketing Meets Dedication to Societal Impact</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>At Good Cause Marketing Partners, we stand proud as a leading boutique integrated marketing communications agency, tailor-made for the unique demands of both businesses and nonprofits. Our vision is crystallized in our relentless pursuit to weave compelling narratives that enhance visibility and foster growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore Our Services[/fusion_button][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"40\"]Our Expertise Spans a Range of Specialized Areas[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-smartphone\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Strategy[/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\" content_alignment=\"center\"]\r\n<p>Crafting bespoke blueprints and roadmaps for success.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-cloud-hosting\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Branding[/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\" content_alignment=\"center\"]\r\n<p>Shaping identities that capture attention, resonate, and linger.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Marketing[/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\" content_alignment=\"center\"]Creating campaigns that target and persuade audiences.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\" padding_bottom=\"65\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-smartphone\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Communications[/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\" content_alignment=\"center\"]\r\n<p>Refining and sharing stories that matter to your audience.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-cloud-hosting\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Digital[/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\" content_alignment=\"center\"]\r\n<p> Harnessing the virtual sphere for tangible results.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Parnerships &amp; Community[/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\" content_alignment=\"center\"]\r\n<p>Connecting and collaborating for amplified impact.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Approach at Good Cause Marketing Partners[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]<p>Every collaboration with <b>Good Cause Marketing Partners</b> promises a holistic approach. We are not just about marketing; we are about creating a ripple effect. Through meticulous positioning and strategy, we endeavor to shape public perceptions, stir emotions, and encourage actions that resonate with your brand values.</p>\n<p>Our philosophy for every project is underpinned by three cardinal principles:</p>\n<ol>\n<li><b>Unified Brand Experience</b>: Enable brands to be consistent, recognizable, and memorable.</li>\n<li><b>Vision-Driven Community Building</b>: Construct a brand community that rallies around a shared vision.</li>\n<li><b>Strategic Enterprise Framework</b>: Architect a consolidated marketing framework that aligns seamlessly with a company’s ethos.</li>\n</ol>[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]<p>The heart of any organization lies in its mission and vision. Recognizing this, we ensure all branding, marketing, and communication endeavors are tuned to echo these sentiments. As guardians of your brand, we understand the nuances of modern consumers, who are as invested in a company\'s ethos as they are in its offerings. This understanding drives us to craft each communication piece as an ambassador of your brand\'s core messages.</p><p>In an era dominated by information overload, we champion the art of timely and relevant messaging, reaching out to audiences precisely when and where they should be reached. Transparency, continuous learning, and unwavering accountability guide our every move, ensuring our strategies are not just efficient but progressively innovative.</p><ol>\n</ol>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.png[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Let\'s Craft Your Story Together[/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\" margin_bottom=\"0\"]<p>Every brand has a unique narrative, and every cause has the power to impact. With Good Cause Marketing Partners and the expertise of seasoned professionals like Matt Midura, you’re not just getting a marketing campaign; you’re gaining a dedicated partner in sharing your story with the world. Dive into a partnership where passion, expertise, and genuine commitment come together to create waves of change.</p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]Connect with Us Today[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','Who We Are','','inherit','closed','closed','','1068-revision-v1','','','2023-08-22 00:16:39','2023-08-22 00:16:39','',1068,'https://test-site.goodcausepartners.com/?p=1720',0,'revision','',0),(1721,1,'2023-08-23 07:14:32','2023-08-22 00:17:47',' ','','','publish','closed','closed','','1721','','','2023-08-23 07:14:32','2023-08-23 07:14:32','',0,'https://test-site.goodcausepartners.com/?p=1721',1,'nav_menu_item','',0),(1730,1,'2023-08-22 01:34:46','2023-08-22 01:34: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]Our Services[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Bridging Creativity and Strategy: Tailored Solutions for a Digital Era</span></p>[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]<p>In an ever-evolving digital age, effective marketing is both an art and a science. At Good Cause Marketing Partners, we merge creativity with data-driven strategies to bring you comprehensive services tailored for the unique contours of today\'s business and nonprofit landscapes. Whether you\'re looking to amplify your brand, connect with your audience, or catalyze social impact, our suite of services has been meticulously designed to guide you every step of the way. Dive in to discover how we can elevate your mission and transform your vision into tangible results.</p>[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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\" flex_wrap=\"wrap\" 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\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"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=\"\" 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\"][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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_content_boxes parent_dynamic_content=\"\" layout=\"icon-on-side\" columns=\"2\" heading_size=\"2\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" iconspin=\"no\" image_max_width=\"\" icon_align=\"left\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_content_box title=\"Brand Positioning &amp; Development\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\"]<p>At Good Cause Marketing Partners, we focus on understanding and capturing the core essence of your organization. This process helps in building and positioning a brand that is both genuine and distinct in a highly competitive market.</p>[/fusion_content_box][fusion_content_box title=\"Creative Design\" animation_direction=\"left\" animation_speed=\"0.3\"]<p>Our design team works to create visuals that genuinely represent an organization\'s message and brand essence.</p>[/fusion_content_box][fusion_content_box title=\"Market Strategy\" animation_direction=\"left\" animation_speed=\"0.3\"]<p>Our approach considers the nuances of market dynamics. By crafting strategies tailored to specific needs, we aim to help organizations navigate their sector and connect with their desired audience.</p>[/fusion_content_box][fusion_content_box title=\"Visual Identity Systems\" animation_direction=\"left\" animation_speed=\"0.3\"]<p>A consistent brand image is crucial. We work on developing visual identity systems that maintain brand recognition across various platforms and touchpoints.</p>[/fusion_content_box][fusion_content_box title=\"Research\" animation_direction=\"left\" animation_speed=\"0.3\"]<p>Through methodical research, we gather valuable insights about market trends, competitors, and potential audience behaviors. This information forms the foundation for our decision-making processes and strategic planning.</p>[/fusion_content_box][fusion_content_box animation_direction=\"left\" animation_speed=\"0.3\" title=\"Digital Marketing\"]In the evolving digital age, we customize strategies in areas like SEO and PPC to help organizations maintain a strong online presence and connect with their audience.[/fusion_content_box][fusion_content_box title=\"Communications\" animation_direction=\"left\" animation_speed=\"0.3\"]<p>We prioritize clear and consistent communication, ensuring that both internal and external messages align with the brand\'s voice and values.</p>[/fusion_content_box][fusion_content_box title=\"Traditional Advertising\" animation_direction=\"left\" animation_speed=\"0.3\"]<p>Using classic advertising mediums, such as television, print, and radio, we develop campaigns that authentically communicate an organization\'s message to a broader audience.</p>[/fusion_content_box][fusion_content_box title=\"Public Relations &amp; Crisis Management\" animation_direction=\"left\" animation_speed=\"0.3\"]<p>Our team is equipped to manage public relations, emphasizing the positive aspects of a brand. Additionally, during challenging situations, we prioritize maintaining brand integrity and reputation.</p>[/fusion_content_box][fusion_content_box title=\"Photo / Video Production\" animation_direction=\"left\" animation_speed=\"0.3\"]<p>Visual storytelling is powerful. Our team focuses on producing photo and video content that genuinely encapsulates an organization\'s narrative, helping to foster deeper connections with its audience.</p>[/fusion_content_box][fusion_content_box title=\"Fundraising\" animation_direction=\"left\" animation_speed=\"0.3\"]<p>Resource acquisition is crucial for any initiative. We utilize both traditional and innovative methods to gather support, ensuring that projects and campaigns are adequately funded.</p>[/fusion_content_box][fusion_content_box title=\"Social &amp; Mobile Marketing\" animation_direction=\"left\" animation_speed=\"0.3\"]<p>Our efforts in social and mobile marketing aim to ensure organizations are actively participating in relevant digital discussions, reaching their audience on platforms they frequently use.</p>[/fusion_content_box][fusion_content_box title=\"Strategic Partnerships\" animation_direction=\"left\" animation_speed=\"0.3\"]We believe in the value of collaboration. By identifying and managing partnerships that align with a brand\'s ethos, we aim to enrich its presence and impact.[/fusion_content_box][fusion_content_box title=\"Collateral Production &amp; Development\" animation_direction=\"left\" animation_speed=\"0.3\"]We oversee the production and development of various collateral items, ensuring each piece aligns with the brand\'s image and communicates its message effectively.[/fusion_content_box][fusion_content_box title=\"Community Engagement\" animation_direction=\"left\" animation_speed=\"0.3\"]<p>Engaging with the community is essential. We focus on building strategies that allow organizations to foster meaningful relationships within their community, ensuring active and beneficial participation.</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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Approach at Good Cause Marketing Partners[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"true\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>Every collaboration with <b>Good Cause Marketing Partners</b> promises a holistic approach. We are not just about marketing; we are about creating a ripple effect. Through meticulous positioning and strategy, we endeavor to shape public perceptions, stir emotions, and encourage actions that resonate with your brand values.</p>\r\n<p>Our philosophy for every project is underpinned by three cardinal principles:</p>\r\n<ol>\r\n<li><b>Unified Brand Experience</b>: Enable brands to be consistent, recognizable, and memorable.</li>\r\n<li><b>Vision-Driven Community Building</b>: Construct a brand community that rallies around a shared vision.</li>\r\n<li><b>Strategic Enterprise Framework</b>: Architect a consolidated marketing framework that aligns seamlessly with a company’s ethos.</li>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>The heart of any organization lies in its mission and vision. Recognizing this, we ensure all branding, marketing, and communication endeavors are tuned to echo these sentiments. As guardians of your brand, we understand the nuances of modern consumers, who are as invested in a company\'s ethos as they are in its offerings. This understanding drives us to craft each communication piece as an ambassador of your brand\'s core messages.</p>\r\n<p>In an era dominated by information overload, we champion the art of timely and relevant messaging, reaching out to audiences precisely when and where they should be reached. Transparency, continuous learning, and unwavering accountability guide our every move, ensuring our strategies are not just efficient but progressively innovative.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.png[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Let\'s Craft Your Story Together[/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\" margin_bottom=\"0\"]\r\n<p>Every brand has a unique narrative, and every cause has the power to impact. With Good Cause Marketing Partners and the expertise of seasoned professionals like Matt Midura, you’re not just getting a marketing campaign; you’re gaining a dedicated partner in sharing your story with the world. Dive into a partnership where passion, expertise, and genuine commitment come together to create waves of change.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]Connect with Us Today[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','What We Do','','inherit','closed','closed','','1723-revision-v1','','','2023-08-22 01:34:46','2023-08-22 01:34:46','',1723,'https://test-site.goodcausepartners.com/?p=1730',0,'revision','',0),(1729,1,'2023-08-22 01:24:52','2023-08-22 01:24: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]Our Services[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Bridging Creativity and Strategy: Tailored Solutions for a Digital Era</span></p>[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]<p>In an ever-evolving digital age, effective marketing is both an art and a science. At Good Cause Marketing Partners, we merge creativity with data-driven strategies to bring you comprehensive services tailored for the unique contours of today\'s business and nonprofit landscapes. Whether you\'re looking to amplify your brand, connect with your audience, or catalyze social impact, our suite of services has been meticulously designed to guide you every step of the way. Dive in to discover how we can elevate your mission and transform your vision into tangible results.</p>[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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=\"center\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"40\"]Our Expertise Spans a Range of Specialized Areas[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-smartphone\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Strategy[/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\" content_alignment=\"center\"]\r\n<p>Crafting bespoke blueprints and roadmaps for success.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-cloud-hosting\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Branding[/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\" content_alignment=\"center\"]\r\n<p>Shaping identities that capture attention, resonate, and linger.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" 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\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"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=\"\" 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\"][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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_content_boxes parent_dynamic_content=\"\" layout=\"icon-on-side\" columns=\"2\" heading_size=\"2\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" iconspin=\"no\" image_max_width=\"\" icon_align=\"left\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_content_box title=\"Brand Positioning &amp; Development\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\"]<p>At Good Cause Marketing Partners, we focus on understanding and capturing the core essence of your organization. This process helps in building and positioning a brand that is both genuine and distinct in a highly competitive market.</p>[/fusion_content_box][fusion_content_box title=\"Communications\" image_max_width=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\"]<p>We prioritize clear and consistent communication, ensuring that both internal and external messages align with the brand\'s voice and values.</p>[/fusion_content_box][fusion_content_box title=\"Market Strategy\" image_max_width=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\"]<p>Our approach considers the nuances of market dynamics. By crafting strategies tailored to specific needs, we aim to help organizations navigate their sector and connect with their desired audience.</p>[/fusion_content_box][fusion_content_box title=\"Public Relations &amp; Crisis Management\" image_max_width=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\"]<p>Our team is equipped to manage public relations, emphasizing the positive aspects of a brand. Additionally, during challenging situations, we prioritize maintaining brand integrity and reputation.</p>[/fusion_content_box][fusion_content_box title=\"Research\" image_max_width=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\"]<p>Through methodical research, we gather valuable insights about market trends, competitors, and potential audience behaviors. This information forms the foundation for our decision-making processes and strategic planning.</p>[/fusion_content_box][fusion_content_box title=\"Strategic Partnerships\" image_max_width=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\"]We believe in the value of collaboration. By identifying and managing partnerships that align with a brand\'s ethos, we aim to enrich its presence and impact.[/fusion_content_box][fusion_content_box title=\"Community Partnerships\" image_max_width=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\"]<p>Engaging with the community is essential. We focus on building strategies that allow organizations to foster meaningful relationships within their community, ensuring active and beneficial participation.</p>[/fusion_content_box][fusion_content_box title=\"Fundraising\" animation_direction=\"left\" animation_speed=\"0.3\"]<p>Resource acquisition is crucial for any initiative. We utilize both traditional and innovative methods to gather support, ensuring that projects and campaigns are adequately funded.</p>[/fusion_content_box][fusion_content_box title=\"Creative Design\" animation_direction=\"left\" animation_speed=\"0.3\"]<p>Our design team works to create visuals that genuinely represent an organization\'s message and brand essence.</p>[/fusion_content_box][fusion_content_box title=\"Creative Design\" animation_direction=\"left\" animation_speed=\"0.3\"]<p>Our design team works to create visuals that genuinely represent an organization\'s message and brand essence.</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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\" padding_bottom=\"65\"][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][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\" content_alignment=\"center\"]\r\n<p>Connecting and collaborating for amplified impact.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Approach at Good Cause Marketing Partners[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"true\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>Every collaboration with <b>Good Cause Marketing Partners</b> promises a holistic approach. We are not just about marketing; we are about creating a ripple effect. Through meticulous positioning and strategy, we endeavor to shape public perceptions, stir emotions, and encourage actions that resonate with your brand values.</p>\r\n<p>Our philosophy for every project is underpinned by three cardinal principles:</p>\r\n<ol>\r\n<li><b>Unified Brand Experience</b>: Enable brands to be consistent, recognizable, and memorable.</li>\r\n<li><b>Vision-Driven Community Building</b>: Construct a brand community that rallies around a shared vision.</li>\r\n<li><b>Strategic Enterprise Framework</b>: Architect a consolidated marketing framework that aligns seamlessly with a company’s ethos.</li>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>The heart of any organization lies in its mission and vision. Recognizing this, we ensure all branding, marketing, and communication endeavors are tuned to echo these sentiments. As guardians of your brand, we understand the nuances of modern consumers, who are as invested in a company\'s ethos as they are in its offerings. This understanding drives us to craft each communication piece as an ambassador of your brand\'s core messages.</p>\r\n<p>In an era dominated by information overload, we champion the art of timely and relevant messaging, reaching out to audiences precisely when and where they should be reached. Transparency, continuous learning, and unwavering accountability guide our every move, ensuring our strategies are not just efficient but progressively innovative.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.png[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Let\'s Craft Your Story Together[/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\" margin_bottom=\"0\"]\r\n<p>Every brand has a unique narrative, and every cause has the power to impact. With Good Cause Marketing Partners and the expertise of seasoned professionals like Matt Midura, you’re not just getting a marketing campaign; you’re gaining a dedicated partner in sharing your story with the world. Dive into a partnership where passion, expertise, and genuine commitment come together to create waves of change.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]Connect with Us Today[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','What We Do','','inherit','closed','closed','','1723-revision-v1','','','2023-08-22 01:24:52','2023-08-22 01:24:52','',1723,'https://test-site.goodcausepartners.com/?p=1729',0,'revision','',0),(1725,1,'2023-08-22 00:20:33','2023-08-22 00:20: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][fusion_builder_row][fusion_builder_column 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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]About Good Cause Marketing Partners[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Where Passion for Effective Marketing Meets Dedication to Societal Impact</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n\r\nAt Good Cause Marketing Partners, we stand proud as a leading boutique integrated marketing communications agency, tailor-made for the unique demands of both businesses and nonprofits. Our vision is crystallized in our relentless pursuit to weave compelling narratives that enhance visibility and foster growth.\r\n\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore Our Services[/fusion_button][/fusion_builder_column][fusion_builder_column 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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=\"center\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"40\"]Our Expertise Spans a Range of Specialized Areas[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-smartphone\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Strategy[/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\" content_alignment=\"center\"]\r\n\r\nCrafting bespoke blueprints and roadmaps for success.\r\n\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-cloud-hosting\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Branding[/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\" content_alignment=\"center\"]\r\n\r\nShaping identities that capture attention, resonate, and linger.\r\n\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Marketing[/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\" content_alignment=\"center\"]Creating campaigns that target and persuade audiences.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\" padding_bottom=\"65\"][fusion_builder_row][fusion_builder_column type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-smartphone\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Communications[/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\" content_alignment=\"center\"]\r\n\r\nRefining and sharing stories that matter to your audience.\r\n\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-cloud-hosting\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Digital[/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\" content_alignment=\"center\"]\r\n\r\nHarnessing the virtual sphere for tangible results.\r\n\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Parnerships &amp; Community[/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\" content_alignment=\"center\"]\r\n\r\nConnecting and collaborating for amplified impact.\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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][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=\"\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Approach at Good Cause Marketing Partners[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"true\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n\r\nEvery collaboration with <b>Good Cause Marketing Partners</b> promises a holistic approach. We are not just about marketing; we are about creating a ripple effect. Through meticulous positioning and strategy, we endeavor to shape public perceptions, stir emotions, and encourage actions that resonate with your brand values.\r\n\r\nOur philosophy for every project is underpinned by three cardinal principles:\r\n<ol>\r\n 	<li><b>Unified Brand Experience</b>: Enable brands to be consistent, recognizable, and memorable.</li>\r\n 	<li><b>Vision-Driven Community Building</b>: Construct a brand community that rallies around a shared vision.</li>\r\n 	<li><b>Strategic Enterprise Framework</b>: Architect a consolidated marketing framework that aligns seamlessly with a company’s ethos.</li>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n\r\nThe heart of any organization lies in its mission and vision. Recognizing this, we ensure all branding, marketing, and communication endeavors are tuned to echo these sentiments. As guardians of your brand, we understand the nuances of modern consumers, who are as invested in a company\'s ethos as they are in its offerings. This understanding drives us to craft each communication piece as an ambassador of your brand\'s core messages.\r\n\r\nIn an era dominated by information overload, we champion the art of timely and relevant messaging, reaching out to audiences precisely when and where they should be reached. Transparency, continuous learning, and unwavering accountability guide our every move, ensuring our strategies are not just efficient but progressively innovative.\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\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][fusion_builder_row][fusion_builder_column 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column 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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Let\'s Craft Your Story Together[/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\" margin_bottom=\"0\"]\r\n\r\nEvery brand has a unique narrative, and every cause has the power to impact. With Good Cause Marketing Partners and the expertise of seasoned professionals like Matt Midura, you’re not just getting a marketing campaign; you’re gaining a dedicated partner in sharing your story with the world. Dive into a partnership where passion, expertise, and genuine commitment come together to create waves of change.\r\n\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]Connect with Us Today[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','What We Do','','inherit','closed','closed','','1723-revision-v1','','','2023-08-22 00:20:33','2023-08-22 00:20:33','',1723,'https://test-site.goodcausepartners.com/?p=1725',0,'revision','',0),(1726,1,'2023-08-22 01:15:02','2023-08-22 01:15: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\" 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\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" admin_label=\"Features Section\" padding_top=\"100px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-server\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color5)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color6)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>hassle-free setup</p>\r\n[/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\" margin_bottom=\"0\"]\r\n<p>Dolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color5)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color6)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>maximum performance</p>\r\n[/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\" margin_bottom=\"0\"]\r\n<p>Dolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-personal-computer\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color5)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color6)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>99% server uptime</p>\r\n[/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\" margin_bottom=\"0\"]\r\n<p>Dolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" admin_label=\"Features Section\" padding_top=\"100px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-server\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color5)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color6)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>hassle-free setup</p>\r\n[/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\" margin_bottom=\"0\"]\r\n<p>Dolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color5)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color6)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>maximum performance</p>\r\n[/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\" margin_bottom=\"0\"]\r\n<p>Dolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" border_color_hover=\"var(--awb-color5)\" margin_bottom_small=\"40px\" type_medium=\"1_3\" padding_right=\"15px\" padding_left=\"15px\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-personal-computer\" spin=\"no\" linktarget=\"_self\" bg_size=\"90\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"46\" circlecolor=\"var(--awb-color5)\" circlebordersize=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" margin_bottom=\"30px\" circlecolor_hover=\"var(--awb-color6)\" icon_hover_type=\"slide\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>99% server uptime</p>\r\n[/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\" margin_bottom=\"0\"]\r\n<p>Dolore tempore magnid quibus eignisa osya sint duire taque aute galisum remy magnis parturient montes.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Features Section\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"no\" border_position=\"all\" padding_top_small=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]WordPress experience : unleash the full potential[/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\" margin_bottom=\"0\"]Maecenas arcu placerat tempus venenatis. Orci aliquet faucibus estut etsy sociis rutrum dis. Viverra quam lacus duis.[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-global-servers\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"60\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]\r\n<p>fast global servers</p>\r\n[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\"]\r\n<p>Lorem ipsum tempore</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-web-analytics\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"60\" iconcolor_hover=\"var(--awb-color5)\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"30px\"]website analytics[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\"]\r\n<p>Lorem ipsum tempore</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\"]start free trial[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 20%))\" line_height=\"var(--awb-typography5-line-height)\" margin_top=\"10px\"]* No credit card required[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"triangle\" pattern_bg_style=\"default\" pattern_bg_opacity=\"50\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Pricing Plans\" padding_top=\"100px\" background_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) + 2%),var(--awb-color2-a))\" pattern_bg_size=\"50%\" pattern_bg_color=\"var(--awb-color1)\" padding_bottom=\"100px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" margin_bottom=\"80px\" margin_bottom_small=\"20px\" padding_right=\"10px\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]\r\n<p>choose your WordPress <br />hosting package</p>\r\n[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" padding_left=\"40px\" last=\"no\" border_position=\"all\" padding_left_small=\"0\" padding_bottom_small=\"40px\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>Dignismos sinte iure taque dolorem tempore magnis cuibusdam sed knam galisum repudiane</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"no\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color5)\" button_gradient_bottom_color_hover=\"var(--awb-color5)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 280),var(--awb-color5-s),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 280),var(--awb-color5-s),calc(var(--awb-color5-l) - 10%),var(--awb-color5-a))\"]15% off[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]\r\n<p>single hosting pack</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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$29 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\r\n<p>Hosting made simple &#8211; for beginners and experts alike.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]1 Website[/fusion_li_item][fusion_li_item]\r\n<p>Free SSL Certificate</p>\r\n[/fusion_li_item][fusion_li_item]2 GB SSD Storage[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color4)\"]\r\n<p>cPanel Included</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\r\n<p>Daily Backup</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\r\n<p>Lifetime Support</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"no\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color4)\" button_gradient_bottom_color_hover=\"var(--awb-color4)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 135),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 135),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\"]most popular[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]gold hosting pack[/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$35 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\r\n<p>Hosting made simple &#8211; for beginners and experts alike.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]5 Websites[/fusion_li_item][fusion_li_item]\r\n<p>Free SSL Certificate</p>\r\n[/fusion_li_item][fusion_li_item]15 GB SSD Storage[/fusion_li_item][fusion_li_item]\r\n<p>cPanel Included</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color4)\"]\r\n<p>Daily Backup</p>\r\n[/fusion_li_item][fusion_li_item iconcolor=\"var(--awb-color3)\"]\r\n<p>Lifetime Support</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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=\"130\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 30),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" padding_right=\"50px\" padding_bottom=\"50px\" padding_left=\"50px\" last=\"no\" border_position=\"all\" element_content=\"\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"custom\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_transform=\"uppercase\" fusion_font_variant_button_font=\"400\" link=\"#\" border_radius_top_left=\"0\" border_radius_top_right=\"0\" border_radius_bottom_right=\"0\" border_radius_bottom_left=\"0\" icon=\"fusion-prefix-hosting-template-engagement\" button_gradient_top_color_hover=\"var(--awb-color5)\" button_gradient_bottom_color_hover=\"var(--awb-color5)\" padding_top=\"10px\" padding_bottom=\"10px\" padding_right=\"15px\" padding_left=\"15px\" font_size=\"12px\" button_gradient_top_color=\"hsla(calc(var(--awb-color5-h) + 85),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\" button_gradient_bottom_color=\"hsla(calc(var(--awb-color5-h) + 85),var(--awb-color5-s),var(--awb-color5-l),var(--awb-color5-a))\"]30% off[/fusion_button][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color1)\" margin_top=\"30px\" margin_bottom=\"10px\"]\r\n<p>business hosting pack</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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"var(--awb-typography1)\" fusion_font_family_title_font=\"var(--awb-typography1-font-family)\" font_size=\"var(--awb-typography1-font-size)\" line_height=\"var(--awb-typography1-line-height)\" letter_spacing=\"var(--awb-typography1-letter-spacing)\" text_transform=\"var(--awb-typography1-text-transform)\" text_color=\"var(--awb-color1)\" margin_bottom=\"5px\"]$49 <span style=\"font-size: 20px; line-height: 24px;\" data-fusion-font=\"true\">/ Year</span>[/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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" text_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 25%))\"]\r\n<p>Hosting made simple &#8211; for beginners and experts alike.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"yes\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_position\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" margin_top=\"10px\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\"]start now[/fusion_button][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" order_medium=\"0\" order_small=\"0\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"40px\" padding_right=\"50px\" padding_bottom=\"40px\" padding_left=\"50px\" background_color=\"var(--awb-color1)\" box_shadow_vertical=\"0\" 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) - 95%))\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color4)\" item_padding_bottom=\"12px\"][fusion_li_item]20 Websites[/fusion_li_item][fusion_li_item]\r\n<p>Free SSL Certificate</p>\r\n[/fusion_li_item][fusion_li_item]30 GB SSD Storage[/fusion_li_item][fusion_li_item]\r\n<p>cPanel Included</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Daily Backup</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Lifetime Support</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1379\"][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"60px\" admin_label=\"Hosting Features - TABS\" margin_bottom=\"80px\"][fusion_builder_row][fusion_builder_column type=\"1_6\" type=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" margin_bottom=\"60px\" padding_right=\"60px\" padding_left=\"60px\" min_height=\"\" link=\"\"][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\" content_alignment=\"center\" text_color=\"var(--awb-color5)\" margin_bottom=\"10px\"]\r\n<p>Binte cailuy tiure aliquid enim tempore</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=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]avada hosting service - best choice for business owners[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_6\" type=\"1_6\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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=\"120\" transform_translate_y=\"20\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"120\" transform_translate_y_hover=\"20\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoic2NhbGUiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiMy41IiwibWF4X3NjYWxlIjoiMSIsIm1pbl9zY2FsZSI6IiIsImluaXRpYWxfcm90YXRlIjoiIiwiZW5kX3JvdGF0ZSI6IiIsImluaXRpYWxfYmx1ciI6IiIsImVuZF9ibHVyIjoiIiwic3RhcnRfZWxlbWVudCI6ImJvdHRvbSIsInN0YXJ0X3ZpZXdwb3J0IjoiIiwiZW5kX2VsZW1lbnQiOiJjZW50ZXIiLCJlbmRfdmlld3BvcnQiOiJjZW50ZXIiLCJtb3VzZV9lZmZlY3QiOiIiLCJtb3VzZV9lZmZlY3RfZGlyZWN0aW9uIjoiIiwibW91c2VfZWZmZWN0X3NwZWVkIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uIjoiIiwiaW5maW5pdGVfYW5pbWF0aW9uX3NwZWVkIjoiIn0seyJ0eXBlIjoic2Nyb2xsIiwic2Nyb2xsX3R5cGUiOiJ0cmFuc2l0aW9uIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImxlZnQiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMi4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIzLjUiLCJtYXhfc2NhbGUiOiIxLjAiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoiY2VudGVyIiwiZW5kX3ZpZXdwb3J0IjoiIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-server-solid\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"hsla(var(--awb-color2-h),var(--awb-color2-s),var(--awb-color2-l),calc(var(--awb-color2-a) - 30%))\" iconcolor_hover=\"hsla(var(--awb-color2-h),var(--awb-color2-s),var(--awb-color2-l),calc(var(--awb-color2-a) - 30%))\" size=\"140\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_tabs design=\"classic\" layout=\"horizontal\" justified=\"yes\" alignment=\"start\" sticky_tabs=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_tag=\"h4\" fusion_font_variant_title_font=\"var(--awb-typography2)\" fusion_font_family_title_font=\"var(--awb-typography2-font-family)\" title_font_size=\"var(--awb-typography2-font-size)\" title_line_height=\"var(--awb-typography2-line-height)\" title_letter_spacing=\"var(--awb-typography2-letter-spacing)\" title_text_transform=\"capitalize\" title_padding_top=\"15px\" title_padding_bottom=\"15px\" bordercolor=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" content_padding_right=\"40px\" content_padding_left=\"40px\" content_padding_bottom=\"30px\" margin_bottom=\"0px\"][fusion_tab title=\"global data centers\"]\r\n<p><img class=\"alignnone size-full wp-image-1249\" style=\"margin: 40px 0px 30px 0px;\" src=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/blog-image-7.jpg\" alt=\"\" width=\"1160\" height=\"700\"></p>\r\n<h4>Maximize your website\'s potential with avada hosting</h4>\r\n<p>Vestibulum leo eros condimen tum vitae ante molestie, comm eado feugiat sapien. Quisque consectetur nunc sit amet congue sodales. Phasellus interdum gravida tortor, vulputate luctus sapien iaculis eu. Nullam id justo enim. Phasellus dictum viverra interdum. Quisque eu tortor vel turpis scelerisque luctus. Vivamus lacinia, eros vitae tempor pellentesque, odio orci finibus lacus sempers.</p>\r\n[/fusion_tab][fusion_tab title=\"benefits of hosting\"]\r\n<p><img class=\"alignnone size-full wp-image-1254\" style=\"margin: 40px 0px 30px 0px;\" src=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/blog-image-10.jpg\" alt=\"\" width=\"1160\" height=\"700\"></p>\r\n<h4>Elevate your online presence with avada cloud hosting</h4>\r\n<p>Vestibulum leo eros condimen tum vitae ante molestie, comm eado feugiat sapien. Quisque consectetur nunc sit amet congue sodales. Phasellus interdum gravida tortor, vulputate luctus sapien iaculis eu. Nullam id justo enim. Phasellus dictum viverra interdum. Quisque eu tortor vel turpis scelerisque luctus. Vivamus lacinia, eros vitae tempor pellentesque, odio orci finibus lacus sempers.</p>\r\n[/fusion_tab][fusion_tab title=\"fully optimized servers\"]\r\n<p><img class=\"alignnone size-full wp-image-783\" style=\"margin: 40px 0px 30px 0px;\" src=\"https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/blog-image-2.jpg\" alt=\"\" width=\"1160\" height=\"700\"></p>\r\n<h4>Future-proof your website with avada cloud hosting technology</h4>\r\n<p>Vestibulum leo eros condimen tum vitae ante molestie, comm eado feugiat sapien. Quisque consectetur nunc sit amet congue sodales. Phasellus interdum gravida tortor, vulputate luctus sapien iaculis eu. Nullam id justo enim. Phasellus dictum viverra interdum. Quisque eu tortor vel turpis scelerisque luctus. Vivamus lacinia, eros vitae tempor pellentesque, odio orci finibus lacus sempers.</p>\r\n[/fusion_tab][/fusion_tabs][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','WordPress Hosting','','inherit','closed','closed','','1431-revision-v1','','','2023-08-22 01:15:02','2023-08-22 01:15:02','',1431,'https://test-site.goodcausepartners.com/?p=1726',0,'revision','',0);
INSERT INTO `wp_gc2023posts` VALUES (1762,1,'2023-08-22 05:00:10','2023-08-22 05:00: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" admin_toggled=\"yes\"][fusion_builder_row][fusion_builder_column 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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]Our Services[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Tailored Solutions for a Digital World</span></p>\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\n\nIn an ever-evolving digital age, effective marketing is both an art and a science. At Good Cause Marketing Partners, we merge creativity with data-driven strategies to bring you comprehensive services tailored for the unique contours of today\'s business and nonprofit landscapes. Whether you\'re looking to amplify your brand, connect with your audience, or catalyze social impact, our suite of services has been meticulously designed to guide you every step of the way. Dive in to discover how we can elevate your mission and transform your vision into tangible results.\n\n[/fusion_text][/fusion_builder_column][fusion_builder_column 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_bottom=\"55\" admin_toggled=\"yes\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_content_boxes layout=\"icon-on-side\" columns=\"2\" heading_size=\"2\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_color=\"var(--awb-color6)\" iconcolor=\"var(--awb-color6)\" icon_circle=\"no\" icon_size=\"61\"][fusion_content_box title=\"Brand Positioning &amp; Development\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-heart far\"]\n\nWe focus on understanding and capturing the core essence of your organization. This process helps in building and positioning a brand that is both genuine and distinct in a highly competitive market.\n\n[/fusion_content_box][fusion_content_box title=\"Creative Design\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-paint-brush fas\"]\n\nOur design team works to create visuals that genuinely represent an organization\'s message and brand essence.\n\n[/fusion_content_box][fusion_content_box title=\"Market Strategy\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullseye fas\"]\n\nOur approach considers the nuances of market dynamics. By crafting strategies tailored to specific needs, we aim to help organizations navigate their sector and connect with their desired audience.\n\n[/fusion_content_box][fusion_content_box title=\"Visual Identity Systems\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-image far\"]\n\nA consistent brand image is crucial. We work on developing visual identity systems that maintain brand recognition across various platforms and touchpoints.\n\n[/fusion_content_box][fusion_content_box title=\"Research\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-book-reader fas\"]\n\nThrough methodical research, we gather valuable insights about market trends, competitors, and potential audience behaviors. This information forms the foundation for our decision-making processes and strategic planning.\n\n[/fusion_content_box][fusion_content_box animation_direction=\"left\" animation_speed=\"0.3\" title=\"Digital Marketing\" icon=\"fa-globe fas\"]In the evolving digital age, we customize strategies in areas like SEO and PPC to help organizations maintain a strong online presence and connect with their audience.[/fusion_content_box][fusion_content_box title=\"Communications\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullhorn fas\"]\n\nWe prioritize clear and consistent communication, ensuring that both internal and external messages align with the brand\'s voice and values.\n\n[/fusion_content_box][fusion_content_box title=\"Traditional Advertising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-newspaper fas\"]\n\nUsing classic advertising mediums, such as television, print, and radio, we develop campaigns that authentically communicate an organization\'s message to a broader audience.\n\n[/fusion_content_box][fusion_content_box title=\"Public Relations &amp; Crisis Management\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-first-aid fas\"]\n\nOur team is equipped to manage public relations, emphasizing the positive aspects of a brand. Additionally, during challenging situations, we prioritize maintaining brand integrity and reputation.\n\n[/fusion_content_box][fusion_content_box title=\"Photo / Video Production\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-camera fas\"]\n\nVisual storytelling is powerful. Our team focuses on producing photo and video content that genuinely encapsulates an organization\'s narrative, helping to foster deeper connections with its audience.\n\n[/fusion_content_box][fusion_content_box title=\"Fundraising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-hand-holding-usd fas\"]\n\nResource acquisition is crucial for any initiative. We utilize both traditional and innovative methods to gather support, ensuring that projects and campaigns are adequately funded.\n\n[/fusion_content_box][fusion_content_box title=\"Social &amp; Mobile Marketing\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-comment fas\"]\n\nOur efforts in social and mobile marketing aim to ensure organizations are actively participating in relevant digital discussions, reaching their audience on platforms they frequently use.\n\n[/fusion_content_box][fusion_content_box title=\"Strategic Partnerships\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-handshake fas\"]We believe in the value of collaboration. By identifying and managing partnerships that align with a brand\'s ethos, we aim to enrich its presence and impact.[/fusion_content_box][fusion_content_box title=\"Collateral Production &amp; Development\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-map fas\"]We oversee the production and development of various collateral items, ensuring each piece aligns with the brand\'s image and communicates its message effectively.[/fusion_content_box][fusion_content_box title=\"Community Engagement\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-user-friends fas\"]\n\nEngaging with the community is essential. We focus on building strategies that allow organizations to foster meaningful relationships within their community, ensuring active and beneficial participation.\n\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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"6\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"115%\" pattern_bg_color=\"var(--awb-color1)\" admin_toggled=\"yes\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Process[/fusion_title][fusion_text columns=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<b>Good Cause Marketing Partners</b> harmoniously blends the analytical rigor of the left brain with the creative intuition of the right. This symbiotic approach enables us to deliver a suite of high-impact, integrated services that not only resonate emotionally but are also grounded in data-driven insights. It\'s where imaginative storytelling meets strategic precision, ensuring that every campaign is both evocative and effective.\n\nEmbarking on a marketing journey requires a clear roadmap and unwavering commitment. Our five-phase approach ensures that the journey is transparent, collaborative, and always tailored to your objectives. Every step is designed with teamwork and continuous learning at the heart, assuring that our strategies are closely aligned with your aspirations.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Feature Section 1\" padding_top=\"65\" padding_bottom=\"20\" admin_toggled=\"yes\"][fusion_builder_row][fusion_builder_column 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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Our Collaborations: A Spectrum of Industries &amp; Experiences[/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\" margin_bottom=\"0\"]\n\nAt Good Cause Marketing Partners, we believe in the power of collaboration, recognizing that our most transformative work often emerges from synergistic relationships with our esteemed partners. Over the years, we\'ve had the privilege of joining forces with diverse industries and dynamic companies, each bringing unique challenges and opportunities. Join us in celebrating these alliances that have not only shaped our journey but have also paved the way for innovative breakthroughs in the world of integrated marketing.\n\n[/fusion_text][/fusion_builder_column][fusion_builder_column 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"30\" margin_top=\"0\" flex_column_spacing=\"0\" padding_bottom=\"75\" admin_toggled=\"yes\"][fusion_builder_row][fusion_builder_column 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\n\nCommercial Products\n\n[/fusion_li_item][fusion_li_item]\n\nEducation &amp; Higher Education\n\n[/fusion_li_item][fusion_li_item]\n\nFinancial Planning\n\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\n\nNonprofits\n\n[/fusion_li_item][fusion_li_item]\n\nReal Estate\n\n[/fusion_li_item][fusion_li_item]\n\nSports and Entertainment\n\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\n\nTelevision &amp; Radio\n\n[/fusion_li_item][fusion_li_item]\n\nWinery &amp; Hospitality\n\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Feature Section 1\" padding_top=\"65\" padding_bottom=\"20\" admin_toggled=\"yes\"][fusion_builder_row][fusion_builder_column 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" layout=\"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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Grow Your Brand for Good[/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\" margin_bottom=\"25\"]\n\nDiscover the difference of a strategy that merges creativity with precision. Start your transformation journey with Good Cause Marketing Partners.\n\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Let\'s Get Started[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','What We Do','','inherit','closed','closed','','1723-autosave-v1','','','2023-08-22 05:00:10','2023-08-22 05:00:10','',1723,'https://test-site.goodcausepartners.com/?p=1762',0,'revision','',0),(1760,1,'2023-08-22 04:59:41','2023-08-22 04:59:41','[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=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"60px\" admin_label=\"Contact - Mobile\" padding_bottom=\"40px\" border_sizes_top=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"  admin_toggled=\"yes\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" type_medium=\"1_1\" margin_bottom_medium=\"40px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"30px\" margin_bottom=\"0\" margin_top=\"0\" text_transform=\"capitalize\" content_align_medium=\"center\"]<strong>need help? get in touch</strong>[/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\" margin_bottom=\"0\" content_alignment_medium=\"center\"]\r\n\r\nSint duire taque aute galisum repudas\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" type_small=\"1_1\" margin_bottom_small=\"20px\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" layout=\"1_4\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_5\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-email\" spin=\"no\" linktarget=\"_self\" bg_size=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"22\" circle=\"yes\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" layout=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left=\"5px\" padding_top=\"5px\" type_small=\"4_5\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color4)\"]Support Email[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"24px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\"]<strong><a href=\"#\">Send @ Email</a></strong>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" type_small=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" layout=\"1_4\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_5\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-chat\" spin=\"no\" linktarget=\"_self\" bg_size=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"26\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" layout=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left=\"5px\" padding_top=\"5px\" type_small=\"4_5\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color4)\"]talk to our agent[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"24px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\"]<strong><a href=\"#\">Live Chat Now</a></strong>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Footer CTA - Mobile','','inherit','closed','closed','','1097-revision-v1','','','2023-08-22 04:59:41','2023-08-22 04:59:41','',1097,'https://test-site.goodcausepartners.com/?p=1760',0,'revision','',0),(1728,1,'2023-08-22 01:24:52','2023-08-22 01:24:52','[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=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"60px\" admin_label=\"Contact - Mobile\" padding_bottom=\"40px\" border_sizes_top=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" ][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" type_medium=\"1_1\" margin_bottom_medium=\"40px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"30px\" margin_bottom=\"0\" margin_top=\"0\" text_transform=\"capitalize\" content_align_medium=\"center\"]<strong>need help? get in touch</strong>[/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\" margin_bottom=\"0\" content_alignment_medium=\"center\"]\r\n<p>Sint duire taque aute galisum repudas</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" type_small=\"1_1\" margin_bottom_small=\"20px\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" type=\"1_4\" layout=\"1_4\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_5\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-email\" spin=\"no\" linktarget=\"_self\" bg_size=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"22\" circle=\"yes\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_4\" layout=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left=\"5px\" padding_top=\"5px\" type_small=\"4_5\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color4)\"]Support Email[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"24px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\"]<strong><a href=\"#\">Send @ Email</a></strong>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" type_small=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" type=\"1_4\" layout=\"1_4\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_5\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-chat\" spin=\"no\" linktarget=\"_self\" bg_size=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"26\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_4\" layout=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left=\"5px\" padding_top=\"5px\" type_small=\"4_5\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color4)\"]talk to our agent[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"24px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\"]<strong><a href=\"#\">Live Chat Now</a></strong>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Footer CTA - Mobile','','inherit','closed','closed','','1097-revision-v1','','','2023-08-22 01:24:52','2023-08-22 01:24:52','',1097,'https://test-site.goodcausepartners.com/?p=1728',0,'revision','',0),(1731,1,'2023-08-22 01:42:11','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2023-08-22 01:42:11','0000-00-00 00:00:00','',0,'https://test-site.goodcausepartners.com/?post_type=fusion_icons&p=1731',0,'fusion_icons','',0),(1732,1,'2023-08-22 01:44:53','2023-08-22 01:44: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]Our Services[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Bridging Creativity and Strategy: Tailored Solutions for a Digital Era</span></p>[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]<p>In an ever-evolving digital age, effective marketing is both an art and a science. At Good Cause Marketing Partners, we merge creativity with data-driven strategies to bring you comprehensive services tailored for the unique contours of today\'s business and nonprofit landscapes. Whether you\'re looking to amplify your brand, connect with your audience, or catalyze social impact, our suite of services has been meticulously designed to guide you every step of the way. Dive in to discover how we can elevate your mission and transform your vision into tangible results.</p>[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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\" flex_wrap=\"wrap\" 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\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"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=\"\" 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\"][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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_content_boxes parent_dynamic_content=\"\" layout=\"icon-on-side\" columns=\"2\" heading_size=\"2\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" iconspin=\"no\" image_max_width=\"\" icon_align=\"left\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_color=\"var(--awb-color6)\" iconcolor=\"var(--awb-color6)\" icon_circle=\"no\" icon_size=\"61\"][fusion_content_box title=\"Brand Positioning &amp; Development\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-heart far\"]<p>At Good Cause Marketing Partners, we focus on understanding and capturing the core essence of your organization. This process helps in building and positioning a brand that is both genuine and distinct in a highly competitive market.</p>[/fusion_content_box][fusion_content_box title=\"Creative Design\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-paint-brush fas\"]<p>Our design team works to create visuals that genuinely represent an organization\'s message and brand essence.</p>[/fusion_content_box][fusion_content_box title=\"Market Strategy\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullseye fas\"]<p>Our approach considers the nuances of market dynamics. By crafting strategies tailored to specific needs, we aim to help organizations navigate their sector and connect with their desired audience.</p>[/fusion_content_box][fusion_content_box title=\"Visual Identity Systems\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-image far\"]<p>A consistent brand image is crucial. We work on developing visual identity systems that maintain brand recognition across various platforms and touchpoints.</p>[/fusion_content_box][fusion_content_box title=\"Research\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-book-reader fas\"]<p>Through methodical research, we gather valuable insights about market trends, competitors, and potential audience behaviors. This information forms the foundation for our decision-making processes and strategic planning.</p>[/fusion_content_box][fusion_content_box animation_direction=\"left\" animation_speed=\"0.3\" title=\"Digital Marketing\" icon=\"fa-globe fas\"]In the evolving digital age, we customize strategies in areas like SEO and PPC to help organizations maintain a strong online presence and connect with their audience.[/fusion_content_box][fusion_content_box title=\"Communications\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullhorn fas\"]<p>We prioritize clear and consistent communication, ensuring that both internal and external messages align with the brand\'s voice and values.</p>[/fusion_content_box][fusion_content_box title=\"Traditional Advertising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-newspaper fas\"]<p>Using classic advertising mediums, such as television, print, and radio, we develop campaigns that authentically communicate an organization\'s message to a broader audience.</p>[/fusion_content_box][fusion_content_box title=\"Public Relations &amp; Crisis Management\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-first-aid fas\"]<p>Our team is equipped to manage public relations, emphasizing the positive aspects of a brand. Additionally, during challenging situations, we prioritize maintaining brand integrity and reputation.</p>[/fusion_content_box][fusion_content_box title=\"Photo / Video Production\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-camera fas\"]<p>Visual storytelling is powerful. Our team focuses on producing photo and video content that genuinely encapsulates an organization\'s narrative, helping to foster deeper connections with its audience.</p>[/fusion_content_box][fusion_content_box title=\"Fundraising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-hand-holding-usd fas\"]<p>Resource acquisition is crucial for any initiative. We utilize both traditional and innovative methods to gather support, ensuring that projects and campaigns are adequately funded.</p>[/fusion_content_box][fusion_content_box title=\"Social &amp; Mobile Marketing\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-comment fas\"]<p>Our efforts in social and mobile marketing aim to ensure organizations are actively participating in relevant digital discussions, reaching their audience on platforms they frequently use.</p>[/fusion_content_box][fusion_content_box title=\"Strategic Partnerships\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-handshake fas\"]We believe in the value of collaboration. By identifying and managing partnerships that align with a brand\'s ethos, we aim to enrich its presence and impact.[/fusion_content_box][fusion_content_box title=\"Collateral Production &amp; Development\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-map fas\"]We oversee the production and development of various collateral items, ensuring each piece aligns with the brand\'s image and communicates its message effectively.[/fusion_content_box][fusion_content_box title=\"Community Engagement\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-user-friends fas\"]<p>Engaging with the community is essential. We focus on building strategies that allow organizations to foster meaningful relationships within their community, ensuring active and beneficial participation.</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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Approach at Good Cause Marketing Partners[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"true\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>Every collaboration with <b>Good Cause Marketing Partners</b> promises a holistic approach. We are not just about marketing; we are about creating a ripple effect. Through meticulous positioning and strategy, we endeavor to shape public perceptions, stir emotions, and encourage actions that resonate with your brand values.</p>\r\n<p>Our philosophy for every project is underpinned by three cardinal principles:</p>\r\n<ol>\r\n<li><b>Unified Brand Experience</b>: Enable brands to be consistent, recognizable, and memorable.</li>\r\n<li><b>Vision-Driven Community Building</b>: Construct a brand community that rallies around a shared vision.</li>\r\n<li><b>Strategic Enterprise Framework</b>: Architect a consolidated marketing framework that aligns seamlessly with a company’s ethos.</li>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>The heart of any organization lies in its mission and vision. Recognizing this, we ensure all branding, marketing, and communication endeavors are tuned to echo these sentiments. As guardians of your brand, we understand the nuances of modern consumers, who are as invested in a company\'s ethos as they are in its offerings. This understanding drives us to craft each communication piece as an ambassador of your brand\'s core messages.</p>\r\n<p>In an era dominated by information overload, we champion the art of timely and relevant messaging, reaching out to audiences precisely when and where they should be reached. Transparency, continuous learning, and unwavering accountability guide our every move, ensuring our strategies are not just efficient but progressively innovative.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.png[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Let\'s Craft Your Story Together[/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\" margin_bottom=\"0\"]\r\n<p>Every brand has a unique narrative, and every cause has the power to impact. With Good Cause Marketing Partners and the expertise of seasoned professionals like Matt Midura, you’re not just getting a marketing campaign; you’re gaining a dedicated partner in sharing your story with the world. Dive into a partnership where passion, expertise, and genuine commitment come together to create waves of change.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]Connect with Us Today[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','What We Do','','inherit','closed','closed','','1723-revision-v1','','','2023-08-22 01:44:53','2023-08-22 01:44:53','',1723,'https://test-site.goodcausepartners.com/?p=1732',0,'revision','',0),(1738,1,'2023-08-22 02:02:57','2023-08-22 02:02: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]Our Services[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Bridging Creativity and Strategy: Tailored Solutions for a Digital Era</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>In an ever-evolving digital age, effective marketing is both an art and a science. At Good Cause Marketing Partners, we merge creativity with data-driven strategies to bring you comprehensive services tailored for the unique contours of today\'s business and nonprofit landscapes. Whether you\'re looking to amplify your brand, connect with your audience, or catalyze social impact, our suite of services has been meticulously designed to guide you every step of the way. Dive in to discover how we can elevate your mission and transform your vision into tangible results.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_bottom=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_content_boxes layout=\"icon-on-side\" columns=\"2\" heading_size=\"2\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_color=\"var(--awb-color6)\" iconcolor=\"var(--awb-color6)\" icon_circle=\"no\" icon_size=\"61\"][fusion_content_box title=\"Brand Positioning &amp; Development\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-heart far\"]\r\n<p>At Good Cause Marketing Partners, we focus on understanding and capturing the core essence of your organization. This process helps in building and positioning a brand that is both genuine and distinct in a highly competitive market.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Creative Design\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-paint-brush fas\"]\r\n<p>Our design team works to create visuals that genuinely represent an organization\'s message and brand essence.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Market Strategy\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullseye fas\"]\r\n<p>Our approach considers the nuances of market dynamics. By crafting strategies tailored to specific needs, we aim to help organizations navigate their sector and connect with their desired audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Visual Identity Systems\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-image far\"]\r\n<p>A consistent brand image is crucial. We work on developing visual identity systems that maintain brand recognition across various platforms and touchpoints.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Research\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-book-reader fas\"]\r\n<p>Through methodical research, we gather valuable insights about market trends, competitors, and potential audience behaviors. This information forms the foundation for our decision-making processes and strategic planning.</p>\r\n[/fusion_content_box][fusion_content_box animation_direction=\"left\" animation_speed=\"0.3\" title=\"Digital Marketing\" icon=\"fa-globe fas\"]In the evolving digital age, we customize strategies in areas like SEO and PPC to help organizations maintain a strong online presence and connect with their audience.[/fusion_content_box][fusion_content_box title=\"Communications\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullhorn fas\"]\r\n<p>We prioritize clear and consistent communication, ensuring that both internal and external messages align with the brand\'s voice and values.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Traditional Advertising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-newspaper fas\"]\r\n<p>Using classic advertising mediums, such as television, print, and radio, we develop campaigns that authentically communicate an organization\'s message to a broader audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Public Relations &amp; Crisis Management\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-first-aid fas\"]\r\n<p>Our team is equipped to manage public relations, emphasizing the positive aspects of a brand. Additionally, during challenging situations, we prioritize maintaining brand integrity and reputation.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Photo / Video Production\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-camera fas\"]\r\n<p>Visual storytelling is powerful. Our team focuses on producing photo and video content that genuinely encapsulates an organization\'s narrative, helping to foster deeper connections with its audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Fundraising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-hand-holding-usd fas\"]\r\n<p>Resource acquisition is crucial for any initiative. We utilize both traditional and innovative methods to gather support, ensuring that projects and campaigns are adequately funded.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Social &amp; Mobile Marketing\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-comment fas\"]\r\n<p>Our efforts in social and mobile marketing aim to ensure organizations are actively participating in relevant digital discussions, reaching their audience on platforms they frequently use.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Strategic Partnerships\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-handshake fas\"]We believe in the value of collaboration. By identifying and managing partnerships that align with a brand\'s ethos, we aim to enrich its presence and impact.[/fusion_content_box][fusion_content_box title=\"Collateral Production &amp; Development\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-map fas\"]We oversee the production and development of various collateral items, ensuring each piece aligns with the brand\'s image and communicates its message effectively.[/fusion_content_box][fusion_content_box title=\"Community Engagement\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-user-friends fas\"]\r\n<p>Engaging with the community is essential. We focus on building strategies that allow organizations to foster meaningful relationships within their community, ensuring active and beneficial participation.</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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"6\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"115%\" pattern_bg_color=\"var(--awb-color1)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Process[/fusion_title][fusion_text columns=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<b>Good Cause Marketing Partners</b> harmoniously blends the analytical rigor of the left brain with the creative intuition of the right. This symbiotic approach enables us to deliver a suite of high-impact, integrated services that not only resonate emotionally but are also grounded in data-driven insights. It\'s where imaginative storytelling meets strategic precision, ensuring that every campaign is both evocative and effective.</p>\r\n<p>Embarking on a marketing journey requires a clear roadmap and unwavering commitment. Our five-phase approach ensures that the journey is transparent, collaborative, and always tailored to your objectives. Every step is designed with teamwork and continuous learning at the heart, assuring that our strategies are closely aligned with your aspirations.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Feature Section 1\" padding_top=\"20\" padding_bottom=\"20\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Our Collaborations: A Spectrum of Industries &amp; Experiences[/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\" margin_bottom=\"0\"]\r\n<p>At Good Cause Marketing Partners, we believe in the power of collaboration, recognizing that our most transformative work often emerges from synergistic relationships with our esteemed partners. Over the years, we\'ve had the privilege of joining forces with diverse industries and dynamic companies, each bringing unique challenges and opportunities. Join us in celebrating these alliances that have not only shaped our journey but have also paved the way for innovative breakthroughs in the world of integrated marketing.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.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=\"center\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"0\" margin_top=\"0\" flex_column_spacing=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Commercial Products</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Education &amp; Higher Education</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Financial Planning</p>\r\n[/fusion_li_item][/fusion_checklist][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Nonprofits</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Real Estate</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Sports and Entertainment</p>\r\n[/fusion_li_item][/fusion_checklist][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Television &amp; Radio</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Winery &amp; Hospitality</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','What We Do','','inherit','closed','closed','','1723-revision-v1','','','2023-08-22 02:02:57','2023-08-22 02:02:57','',1723,'https://test-site.goodcausepartners.com/?p=1738',0,'revision','',0),(1733,1,'2023-08-22 01:56:17','2023-08-22 01:56: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]Our Services[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Bridging Creativity and Strategy: Tailored Solutions for a Digital Era</span></p>[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]<p>In an ever-evolving digital age, effective marketing is both an art and a science. At Good Cause Marketing Partners, we merge creativity with data-driven strategies to bring you comprehensive services tailored for the unique contours of today\'s business and nonprofit landscapes. Whether you\'re looking to amplify your brand, connect with your audience, or catalyze social impact, our suite of services has been meticulously designed to guide you every step of the way. Dive in to discover how we can elevate your mission and transform your vision into tangible results.</p>[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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\" flex_wrap=\"wrap\" 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\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"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=\"\" 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\"][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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_content_boxes parent_dynamic_content=\"\" layout=\"icon-on-side\" columns=\"2\" heading_size=\"2\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" iconspin=\"no\" image_max_width=\"\" icon_align=\"left\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_color=\"var(--awb-color6)\" iconcolor=\"var(--awb-color6)\" icon_circle=\"no\" icon_size=\"61\"][fusion_content_box title=\"Brand Positioning &amp; Development\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-heart far\"]<p>At Good Cause Marketing Partners, we focus on understanding and capturing the core essence of your organization. This process helps in building and positioning a brand that is both genuine and distinct in a highly competitive market.</p>[/fusion_content_box][fusion_content_box title=\"Creative Design\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-paint-brush fas\"]<p>Our design team works to create visuals that genuinely represent an organization\'s message and brand essence.</p>[/fusion_content_box][fusion_content_box title=\"Market Strategy\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullseye fas\"]<p>Our approach considers the nuances of market dynamics. By crafting strategies tailored to specific needs, we aim to help organizations navigate their sector and connect with their desired audience.</p>[/fusion_content_box][fusion_content_box title=\"Visual Identity Systems\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-image far\"]<p>A consistent brand image is crucial. We work on developing visual identity systems that maintain brand recognition across various platforms and touchpoints.</p>[/fusion_content_box][fusion_content_box title=\"Research\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-book-reader fas\"]<p>Through methodical research, we gather valuable insights about market trends, competitors, and potential audience behaviors. This information forms the foundation for our decision-making processes and strategic planning.</p>[/fusion_content_box][fusion_content_box animation_direction=\"left\" animation_speed=\"0.3\" title=\"Digital Marketing\" icon=\"fa-globe fas\"]In the evolving digital age, we customize strategies in areas like SEO and PPC to help organizations maintain a strong online presence and connect with their audience.[/fusion_content_box][fusion_content_box title=\"Communications\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullhorn fas\"]<p>We prioritize clear and consistent communication, ensuring that both internal and external messages align with the brand\'s voice and values.</p>[/fusion_content_box][fusion_content_box title=\"Traditional Advertising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-newspaper fas\"]<p>Using classic advertising mediums, such as television, print, and radio, we develop campaigns that authentically communicate an organization\'s message to a broader audience.</p>[/fusion_content_box][fusion_content_box title=\"Public Relations &amp; Crisis Management\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-first-aid fas\"]<p>Our team is equipped to manage public relations, emphasizing the positive aspects of a brand. Additionally, during challenging situations, we prioritize maintaining brand integrity and reputation.</p>[/fusion_content_box][fusion_content_box title=\"Photo / Video Production\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-camera fas\"]<p>Visual storytelling is powerful. Our team focuses on producing photo and video content that genuinely encapsulates an organization\'s narrative, helping to foster deeper connections with its audience.</p>[/fusion_content_box][fusion_content_box title=\"Fundraising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-hand-holding-usd fas\"]<p>Resource acquisition is crucial for any initiative. We utilize both traditional and innovative methods to gather support, ensuring that projects and campaigns are adequately funded.</p>[/fusion_content_box][fusion_content_box title=\"Social &amp; Mobile Marketing\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-comment fas\"]<p>Our efforts in social and mobile marketing aim to ensure organizations are actively participating in relevant digital discussions, reaching their audience on platforms they frequently use.</p>[/fusion_content_box][fusion_content_box title=\"Strategic Partnerships\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-handshake fas\"]We believe in the value of collaboration. By identifying and managing partnerships that align with a brand\'s ethos, we aim to enrich its presence and impact.[/fusion_content_box][fusion_content_box title=\"Collateral Production &amp; Development\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-map fas\"]We oversee the production and development of various collateral items, ensuring each piece aligns with the brand\'s image and communicates its message effectively.[/fusion_content_box][fusion_content_box title=\"Community Engagement\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-user-friends fas\"]<p>Engaging with the community is essential. We focus on building strategies that allow organizations to foster meaningful relationships within their community, ensuring active and beneficial participation.</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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"6\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"115%\" pattern_bg_color=\"var(--awb-color1)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Process[/fusion_title][fusion_text columns=\"2\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" logics=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<b>Good Cause Marketing Partners</b> harmoniously blends the analytical rigor of the left brain with the creative intuition of the right. This symbiotic approach enables us to deliver a suite of high-impact, integrated services that not only resonate emotionally but are also grounded in data-driven insights. It\'s where imaginative storytelling meets strategic precision, ensuring that every campaign is both evocative and effective.\n\nEmbarking on a marketing journey requires a clear roadmap and unwavering commitment. Our five-phase approach ensures that the journey is transparent, collaborative, and always tailored to your objectives. Every step is designed with teamwork and continuous learning at the heart, assuring that our strategies are closely aligned with your aspirations.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Our Collaborations: A Spectrum of Industries &amp; Experiences[/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\" margin_bottom=\"0\"]<p>At Good Cause Marketing Partners, we believe in the power of collaboration, recognizing that our most transformative work often emerges from synergistic relationships with our esteemed partners. Over the years, we\'ve had the privilege of joining forces with diverse industries and dynamic companies, each bringing unique challenges and opportunities. Join us in celebrating these alliances that have not only shaped our journey but have also paved the way for innovative breakthroughs in the world of integrated marketing.</p>[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.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\" flex_wrap=\"wrap\" 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\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"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=\"\" 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\"][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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"25%\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_checklist parent_dynamic_content=\"\" type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]<p>Commercial Products</p>[/fusion_li_item][fusion_li_item]<p>Education &amp; Higher Education</p>[/fusion_li_item][fusion_li_item]Financial Planning[/fusion_li_item][fusion_li_item]Real Estate[/fusion_li_item][/fusion_checklist][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"25%\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]<p>Nonprofits</p>[/fusion_li_item][fusion_li_item]<p>Sports &amp; Entertainment</p>[/fusion_li_item][fusion_li_item]<p>Television &amp; Radio</p>[/fusion_li_item][fusion_li_item]<p>Winery &amp; Hospitality</p>[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','What We Do','','inherit','closed','closed','','1723-revision-v1','','','2023-08-22 01:56:17','2023-08-22 01:56:17','',1723,'https://test-site.goodcausepartners.com/?p=1733',0,'revision','',0),(1734,1,'2023-08-22 01:56:38','2023-08-22 01:56: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]Our Services[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Bridging Creativity and Strategy: Tailored Solutions for a Digital Era</span></p>[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]<p>In an ever-evolving digital age, effective marketing is both an art and a science. At Good Cause Marketing Partners, we merge creativity with data-driven strategies to bring you comprehensive services tailored for the unique contours of today\'s business and nonprofit landscapes. Whether you\'re looking to amplify your brand, connect with your audience, or catalyze social impact, our suite of services has been meticulously designed to guide you every step of the way. Dive in to discover how we can elevate your mission and transform your vision into tangible results.</p>[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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\" flex_wrap=\"wrap\" 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\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"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=\"\" 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\"][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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_content_boxes parent_dynamic_content=\"\" layout=\"icon-on-side\" columns=\"2\" heading_size=\"2\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" iconspin=\"no\" image_max_width=\"\" icon_align=\"left\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_color=\"var(--awb-color6)\" iconcolor=\"var(--awb-color6)\" icon_circle=\"no\" icon_size=\"61\"][fusion_content_box title=\"Brand Positioning &amp; Development\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-heart far\"]<p>At Good Cause Marketing Partners, we focus on understanding and capturing the core essence of your organization. This process helps in building and positioning a brand that is both genuine and distinct in a highly competitive market.</p>[/fusion_content_box][fusion_content_box title=\"Creative Design\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-paint-brush fas\"]<p>Our design team works to create visuals that genuinely represent an organization\'s message and brand essence.</p>[/fusion_content_box][fusion_content_box title=\"Market Strategy\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullseye fas\"]<p>Our approach considers the nuances of market dynamics. By crafting strategies tailored to specific needs, we aim to help organizations navigate their sector and connect with their desired audience.</p>[/fusion_content_box][fusion_content_box title=\"Visual Identity Systems\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-image far\"]<p>A consistent brand image is crucial. We work on developing visual identity systems that maintain brand recognition across various platforms and touchpoints.</p>[/fusion_content_box][fusion_content_box title=\"Research\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-book-reader fas\"]<p>Through methodical research, we gather valuable insights about market trends, competitors, and potential audience behaviors. This information forms the foundation for our decision-making processes and strategic planning.</p>[/fusion_content_box][fusion_content_box animation_direction=\"left\" animation_speed=\"0.3\" title=\"Digital Marketing\" icon=\"fa-globe fas\"]In the evolving digital age, we customize strategies in areas like SEO and PPC to help organizations maintain a strong online presence and connect with their audience.[/fusion_content_box][fusion_content_box title=\"Communications\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullhorn fas\"]<p>We prioritize clear and consistent communication, ensuring that both internal and external messages align with the brand\'s voice and values.</p>[/fusion_content_box][fusion_content_box title=\"Traditional Advertising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-newspaper fas\"]<p>Using classic advertising mediums, such as television, print, and radio, we develop campaigns that authentically communicate an organization\'s message to a broader audience.</p>[/fusion_content_box][fusion_content_box title=\"Public Relations &amp; Crisis Management\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-first-aid fas\"]<p>Our team is equipped to manage public relations, emphasizing the positive aspects of a brand. Additionally, during challenging situations, we prioritize maintaining brand integrity and reputation.</p>[/fusion_content_box][fusion_content_box title=\"Photo / Video Production\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-camera fas\"]<p>Visual storytelling is powerful. Our team focuses on producing photo and video content that genuinely encapsulates an organization\'s narrative, helping to foster deeper connections with its audience.</p>[/fusion_content_box][fusion_content_box title=\"Fundraising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-hand-holding-usd fas\"]<p>Resource acquisition is crucial for any initiative. We utilize both traditional and innovative methods to gather support, ensuring that projects and campaigns are adequately funded.</p>[/fusion_content_box][fusion_content_box title=\"Social &amp; Mobile Marketing\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-comment fas\"]<p>Our efforts in social and mobile marketing aim to ensure organizations are actively participating in relevant digital discussions, reaching their audience on platforms they frequently use.</p>[/fusion_content_box][fusion_content_box title=\"Strategic Partnerships\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-handshake fas\"]We believe in the value of collaboration. By identifying and managing partnerships that align with a brand\'s ethos, we aim to enrich its presence and impact.[/fusion_content_box][fusion_content_box title=\"Collateral Production &amp; Development\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-map fas\"]We oversee the production and development of various collateral items, ensuring each piece aligns with the brand\'s image and communicates its message effectively.[/fusion_content_box][fusion_content_box title=\"Community Engagement\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-user-friends fas\"]<p>Engaging with the community is essential. We focus on building strategies that allow organizations to foster meaningful relationships within their community, ensuring active and beneficial participation.</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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"6\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"115%\" pattern_bg_color=\"var(--awb-color1)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Process[/fusion_title][fusion_text columns=\"2\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" logics=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<b>Good Cause Marketing Partners</b> harmoniously blends the analytical rigor of the left brain with the creative intuition of the right. This symbiotic approach enables us to deliver a suite of high-impact, integrated services that not only resonate emotionally but are also grounded in data-driven insights. It\'s where imaginative storytelling meets strategic precision, ensuring that every campaign is both evocative and effective.\n\nEmbarking on a marketing journey requires a clear roadmap and unwavering commitment. Our five-phase approach ensures that the journey is transparent, collaborative, and always tailored to your objectives. Every step is designed with teamwork and continuous learning at the heart, assuring that our strategies are closely aligned with your aspirations.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Our Collaborations: A Spectrum of Industries &amp; Experiences[/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\" margin_bottom=\"0\"]<p>At Good Cause Marketing Partners, we believe in the power of collaboration, recognizing that our most transformative work often emerges from synergistic relationships with our esteemed partners. Over the years, we\'ve had the privilege of joining forces with diverse industries and dynamic companies, each bringing unique challenges and opportunities. Join us in celebrating these alliances that have not only shaped our journey but have also paved the way for innovative breakthroughs in the world of integrated marketing.</p>[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.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\" flex_wrap=\"wrap\" 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\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"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=\"\" 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\"][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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"25%\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_checklist parent_dynamic_content=\"\" type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]<p>Commercial Products</p>[/fusion_li_item][fusion_li_item]<p>Education &amp; Higher Education</p>[/fusion_li_item][fusion_li_item]Financial Planning[/fusion_li_item][fusion_li_item]Real Estate[/fusion_li_item][/fusion_checklist][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_right=\"25%\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]<p>Nonprofits</p>[/fusion_li_item][fusion_li_item]<p>Sports &amp; Entertainment</p>[/fusion_li_item][fusion_li_item]<p>Television &amp; Radio</p>[/fusion_li_item][fusion_li_item]<p>Winery &amp; Hospitality</p>[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','What We Do','','inherit','closed','closed','','1723-revision-v1','','','2023-08-22 01:56:38','2023-08-22 01:56:38','',1723,'https://test-site.goodcausepartners.com/?p=1734',0,'revision','',0),(1735,1,'2023-08-22 01:59:51','2023-08-22 01: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]Our Services[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Bridging Creativity and Strategy: Tailored Solutions for a Digital Era</span></p>[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]<p>In an ever-evolving digital age, effective marketing is both an art and a science. At Good Cause Marketing Partners, we merge creativity with data-driven strategies to bring you comprehensive services tailored for the unique contours of today\'s business and nonprofit landscapes. Whether you\'re looking to amplify your brand, connect with your audience, or catalyze social impact, our suite of services has been meticulously designed to guide you every step of the way. Dive in to discover how we can elevate your mission and transform your vision into tangible results.</p>[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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\" flex_wrap=\"wrap\" 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\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"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=\"\" 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\"][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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_content_boxes parent_dynamic_content=\"\" layout=\"icon-on-side\" columns=\"2\" heading_size=\"2\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" iconspin=\"no\" image_max_width=\"\" icon_align=\"left\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_color=\"var(--awb-color6)\" iconcolor=\"var(--awb-color6)\" icon_circle=\"no\" icon_size=\"61\"][fusion_content_box title=\"Brand Positioning &amp; Development\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-heart far\"]<p>At Good Cause Marketing Partners, we focus on understanding and capturing the core essence of your organization. This process helps in building and positioning a brand that is both genuine and distinct in a highly competitive market.</p>[/fusion_content_box][fusion_content_box title=\"Creative Design\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-paint-brush fas\"]<p>Our design team works to create visuals that genuinely represent an organization\'s message and brand essence.</p>[/fusion_content_box][fusion_content_box title=\"Market Strategy\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullseye fas\"]<p>Our approach considers the nuances of market dynamics. By crafting strategies tailored to specific needs, we aim to help organizations navigate their sector and connect with their desired audience.</p>[/fusion_content_box][fusion_content_box title=\"Visual Identity Systems\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-image far\"]<p>A consistent brand image is crucial. We work on developing visual identity systems that maintain brand recognition across various platforms and touchpoints.</p>[/fusion_content_box][fusion_content_box title=\"Research\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-book-reader fas\"]<p>Through methodical research, we gather valuable insights about market trends, competitors, and potential audience behaviors. This information forms the foundation for our decision-making processes and strategic planning.</p>[/fusion_content_box][fusion_content_box animation_direction=\"left\" animation_speed=\"0.3\" title=\"Digital Marketing\" icon=\"fa-globe fas\"]In the evolving digital age, we customize strategies in areas like SEO and PPC to help organizations maintain a strong online presence and connect with their audience.[/fusion_content_box][fusion_content_box title=\"Communications\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullhorn fas\"]<p>We prioritize clear and consistent communication, ensuring that both internal and external messages align with the brand\'s voice and values.</p>[/fusion_content_box][fusion_content_box title=\"Traditional Advertising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-newspaper fas\"]<p>Using classic advertising mediums, such as television, print, and radio, we develop campaigns that authentically communicate an organization\'s message to a broader audience.</p>[/fusion_content_box][fusion_content_box title=\"Public Relations &amp; Crisis Management\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-first-aid fas\"]<p>Our team is equipped to manage public relations, emphasizing the positive aspects of a brand. Additionally, during challenging situations, we prioritize maintaining brand integrity and reputation.</p>[/fusion_content_box][fusion_content_box title=\"Photo / Video Production\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-camera fas\"]<p>Visual storytelling is powerful. Our team focuses on producing photo and video content that genuinely encapsulates an organization\'s narrative, helping to foster deeper connections with its audience.</p>[/fusion_content_box][fusion_content_box title=\"Fundraising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-hand-holding-usd fas\"]<p>Resource acquisition is crucial for any initiative. We utilize both traditional and innovative methods to gather support, ensuring that projects and campaigns are adequately funded.</p>[/fusion_content_box][fusion_content_box title=\"Social &amp; Mobile Marketing\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-comment fas\"]<p>Our efforts in social and mobile marketing aim to ensure organizations are actively participating in relevant digital discussions, reaching their audience on platforms they frequently use.</p>[/fusion_content_box][fusion_content_box title=\"Strategic Partnerships\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-handshake fas\"]We believe in the value of collaboration. By identifying and managing partnerships that align with a brand\'s ethos, we aim to enrich its presence and impact.[/fusion_content_box][fusion_content_box title=\"Collateral Production &amp; Development\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-map fas\"]We oversee the production and development of various collateral items, ensuring each piece aligns with the brand\'s image and communicates its message effectively.[/fusion_content_box][fusion_content_box title=\"Community Engagement\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-user-friends fas\"]<p>Engaging with the community is essential. We focus on building strategies that allow organizations to foster meaningful relationships within their community, ensuring active and beneficial participation.</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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"6\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"115%\" pattern_bg_color=\"var(--awb-color1)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Process[/fusion_title][fusion_text columns=\"2\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" logics=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<b>Good Cause Marketing Partners</b> harmoniously blends the analytical rigor of the left brain with the creative intuition of the right. This symbiotic approach enables us to deliver a suite of high-impact, integrated services that not only resonate emotionally but are also grounded in data-driven insights. It\'s where imaginative storytelling meets strategic precision, ensuring that every campaign is both evocative and effective.\n\nEmbarking on a marketing journey requires a clear roadmap and unwavering commitment. Our five-phase approach ensures that the journey is transparent, collaborative, and always tailored to your objectives. Every step is designed with teamwork and continuous learning at the heart, assuring that our strategies are closely aligned with your aspirations.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Our Collaborations: A Spectrum of Industries &amp; Experiences[/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\" margin_bottom=\"0\"]<p>At Good Cause Marketing Partners, we believe in the power of collaboration, recognizing that our most transformative work often emerges from synergistic relationships with our esteemed partners. Over the years, we\'ve had the privilege of joining forces with diverse industries and dynamic companies, each bringing unique challenges and opportunities. Join us in celebrating these alliances that have not only shaped our journey but have also paved the way for innovative breakthroughs in the world of integrated marketing.</p>[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.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=\"center\" flex_wrap=\"wrap\" 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\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"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=\"\" 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=\"0\" margin_top=\"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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_checklist parent_dynamic_content=\"\" type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]<p>Commercial Products</p>[/fusion_li_item][fusion_li_item]<p>Education &amp; Higher Education</p>[/fusion_li_item][fusion_li_item]<p>Financial Planning</p>[/fusion_li_item][/fusion_checklist][/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=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_right=\"25%\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]<p>Nonprofits</p>[/fusion_li_item][fusion_li_item]<p>Real Estate</p>[/fusion_li_item][fusion_li_item]<p>Sports and Entertainment</p>[/fusion_li_item][/fusion_checklist][/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=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_right=\"25%\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]<p>Television &amp; Radio</p>[/fusion_li_item][fusion_li_item]<p>Winery &amp; Hospitality</p>[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','What We Do','','inherit','closed','closed','','1723-revision-v1','','','2023-08-22 01:59:51','2023-08-22 01:59:51','',1723,'https://test-site.goodcausepartners.com/?p=1735',0,'revision','',0),(1737,1,'2023-08-22 02:02:09','2023-08-22 02:02: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]Our Services[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Bridging Creativity and Strategy: Tailored Solutions for a Digital Era</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>In an ever-evolving digital age, effective marketing is both an art and a science. At Good Cause Marketing Partners, we merge creativity with data-driven strategies to bring you comprehensive services tailored for the unique contours of today\'s business and nonprofit landscapes. Whether you\'re looking to amplify your brand, connect with your audience, or catalyze social impact, our suite of services has been meticulously designed to guide you every step of the way. Dive in to discover how we can elevate your mission and transform your vision into tangible results.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_bottom=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_content_boxes layout=\"icon-on-side\" columns=\"2\" heading_size=\"2\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_color=\"var(--awb-color6)\" iconcolor=\"var(--awb-color6)\" icon_circle=\"no\" icon_size=\"61\"][fusion_content_box title=\"Brand Positioning &amp; Development\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-heart far\"]\r\n<p>At Good Cause Marketing Partners, we focus on understanding and capturing the core essence of your organization. This process helps in building and positioning a brand that is both genuine and distinct in a highly competitive market.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Creative Design\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-paint-brush fas\"]\r\n<p>Our design team works to create visuals that genuinely represent an organization\'s message and brand essence.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Market Strategy\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullseye fas\"]\r\n<p>Our approach considers the nuances of market dynamics. By crafting strategies tailored to specific needs, we aim to help organizations navigate their sector and connect with their desired audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Visual Identity Systems\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-image far\"]\r\n<p>A consistent brand image is crucial. We work on developing visual identity systems that maintain brand recognition across various platforms and touchpoints.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Research\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-book-reader fas\"]\r\n<p>Through methodical research, we gather valuable insights about market trends, competitors, and potential audience behaviors. This information forms the foundation for our decision-making processes and strategic planning.</p>\r\n[/fusion_content_box][fusion_content_box animation_direction=\"left\" animation_speed=\"0.3\" title=\"Digital Marketing\" icon=\"fa-globe fas\"]In the evolving digital age, we customize strategies in areas like SEO and PPC to help organizations maintain a strong online presence and connect with their audience.[/fusion_content_box][fusion_content_box title=\"Communications\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullhorn fas\"]\r\n<p>We prioritize clear and consistent communication, ensuring that both internal and external messages align with the brand\'s voice and values.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Traditional Advertising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-newspaper fas\"]\r\n<p>Using classic advertising mediums, such as television, print, and radio, we develop campaigns that authentically communicate an organization\'s message to a broader audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Public Relations &amp; Crisis Management\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-first-aid fas\"]\r\n<p>Our team is equipped to manage public relations, emphasizing the positive aspects of a brand. Additionally, during challenging situations, we prioritize maintaining brand integrity and reputation.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Photo / Video Production\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-camera fas\"]\r\n<p>Visual storytelling is powerful. Our team focuses on producing photo and video content that genuinely encapsulates an organization\'s narrative, helping to foster deeper connections with its audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Fundraising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-hand-holding-usd fas\"]\r\n<p>Resource acquisition is crucial for any initiative. We utilize both traditional and innovative methods to gather support, ensuring that projects and campaigns are adequately funded.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Social &amp; Mobile Marketing\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-comment fas\"]\r\n<p>Our efforts in social and mobile marketing aim to ensure organizations are actively participating in relevant digital discussions, reaching their audience on platforms they frequently use.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Strategic Partnerships\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-handshake fas\"]We believe in the value of collaboration. By identifying and managing partnerships that align with a brand\'s ethos, we aim to enrich its presence and impact.[/fusion_content_box][fusion_content_box title=\"Collateral Production &amp; Development\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-map fas\"]We oversee the production and development of various collateral items, ensuring each piece aligns with the brand\'s image and communicates its message effectively.[/fusion_content_box][fusion_content_box title=\"Community Engagement\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-user-friends fas\"]\r\n<p>Engaging with the community is essential. We focus on building strategies that allow organizations to foster meaningful relationships within their community, ensuring active and beneficial participation.</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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"6\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"115%\" pattern_bg_color=\"var(--awb-color1)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Process[/fusion_title][fusion_text columns=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<b>Good Cause Marketing Partners</b> harmoniously blends the analytical rigor of the left brain with the creative intuition of the right. This symbiotic approach enables us to deliver a suite of high-impact, integrated services that not only resonate emotionally but are also grounded in data-driven insights. It\'s where imaginative storytelling meets strategic precision, ensuring that every campaign is both evocative and effective.</p>\r\n<p>Embarking on a marketing journey requires a clear roadmap and unwavering commitment. Our five-phase approach ensures that the journey is transparent, collaborative, and always tailored to your objectives. Every step is designed with teamwork and continuous learning at the heart, assuring that our strategies are closely aligned with your aspirations.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Feature Section 1\" padding_top=\"20\" padding_bottom=\"20\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Our Collaborations: A Spectrum of Industries &amp; Experiences[/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\" margin_bottom=\"0\"]\r\n<p>At Good Cause Marketing Partners, we believe in the power of collaboration, recognizing that our most transformative work often emerges from synergistic relationships with our esteemed partners. Over the years, we\'ve had the privilege of joining forces with diverse industries and dynamic companies, each bringing unique challenges and opportunities. Join us in celebrating these alliances that have not only shaped our journey but have also paved the way for innovative breakthroughs in the world of integrated marketing.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.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=\"center\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"0\" margin_top=\"0\" flex_column_spacing=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Commercial Products</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Education &amp; Higher Education</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Financial Planning</p>\r\n[/fusion_li_item][/fusion_checklist][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_right=\"25%\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Nonprofits</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Real Estate</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Sports and Entertainment</p>\r\n[/fusion_li_item][/fusion_checklist][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_right=\"25%\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Television &amp; Radio</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Winery &amp; Hospitality</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','What We Do','','inherit','closed','closed','','1723-revision-v1','','','2023-08-22 02:02:09','2023-08-22 02:02:09','',1723,'https://test-site.goodcausepartners.com/?p=1737',0,'revision','',0),(1736,1,'2023-08-22 02:00:48','2023-08-22 02: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]Our Services[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Bridging Creativity and Strategy: Tailored Solutions for a Digital Era</span></p>[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]<p>In an ever-evolving digital age, effective marketing is both an art and a science. At Good Cause Marketing Partners, we merge creativity with data-driven strategies to bring you comprehensive services tailored for the unique contours of today\'s business and nonprofit landscapes. Whether you\'re looking to amplify your brand, connect with your audience, or catalyze social impact, our suite of services has been meticulously designed to guide you every step of the way. Dive in to discover how we can elevate your mission and transform your vision into tangible results.</p>[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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\" flex_wrap=\"wrap\" 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\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"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=\"\" 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\"][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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_content_boxes parent_dynamic_content=\"\" layout=\"icon-on-side\" columns=\"2\" heading_size=\"2\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" iconspin=\"no\" image_max_width=\"\" icon_align=\"left\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_color=\"var(--awb-color6)\" iconcolor=\"var(--awb-color6)\" icon_circle=\"no\" icon_size=\"61\"][fusion_content_box title=\"Brand Positioning &amp; Development\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-heart far\"]<p>At Good Cause Marketing Partners, we focus on understanding and capturing the core essence of your organization. This process helps in building and positioning a brand that is both genuine and distinct in a highly competitive market.</p>[/fusion_content_box][fusion_content_box title=\"Creative Design\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-paint-brush fas\"]<p>Our design team works to create visuals that genuinely represent an organization\'s message and brand essence.</p>[/fusion_content_box][fusion_content_box title=\"Market Strategy\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullseye fas\"]<p>Our approach considers the nuances of market dynamics. By crafting strategies tailored to specific needs, we aim to help organizations navigate their sector and connect with their desired audience.</p>[/fusion_content_box][fusion_content_box title=\"Visual Identity Systems\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-image far\"]<p>A consistent brand image is crucial. We work on developing visual identity systems that maintain brand recognition across various platforms and touchpoints.</p>[/fusion_content_box][fusion_content_box title=\"Research\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-book-reader fas\"]<p>Through methodical research, we gather valuable insights about market trends, competitors, and potential audience behaviors. This information forms the foundation for our decision-making processes and strategic planning.</p>[/fusion_content_box][fusion_content_box animation_direction=\"left\" animation_speed=\"0.3\" title=\"Digital Marketing\" icon=\"fa-globe fas\"]In the evolving digital age, we customize strategies in areas like SEO and PPC to help organizations maintain a strong online presence and connect with their audience.[/fusion_content_box][fusion_content_box title=\"Communications\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullhorn fas\"]<p>We prioritize clear and consistent communication, ensuring that both internal and external messages align with the brand\'s voice and values.</p>[/fusion_content_box][fusion_content_box title=\"Traditional Advertising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-newspaper fas\"]<p>Using classic advertising mediums, such as television, print, and radio, we develop campaigns that authentically communicate an organization\'s message to a broader audience.</p>[/fusion_content_box][fusion_content_box title=\"Public Relations &amp; Crisis Management\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-first-aid fas\"]<p>Our team is equipped to manage public relations, emphasizing the positive aspects of a brand. Additionally, during challenging situations, we prioritize maintaining brand integrity and reputation.</p>[/fusion_content_box][fusion_content_box title=\"Photo / Video Production\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-camera fas\"]<p>Visual storytelling is powerful. Our team focuses on producing photo and video content that genuinely encapsulates an organization\'s narrative, helping to foster deeper connections with its audience.</p>[/fusion_content_box][fusion_content_box title=\"Fundraising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-hand-holding-usd fas\"]<p>Resource acquisition is crucial for any initiative. We utilize both traditional and innovative methods to gather support, ensuring that projects and campaigns are adequately funded.</p>[/fusion_content_box][fusion_content_box title=\"Social &amp; Mobile Marketing\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-comment fas\"]<p>Our efforts in social and mobile marketing aim to ensure organizations are actively participating in relevant digital discussions, reaching their audience on platforms they frequently use.</p>[/fusion_content_box][fusion_content_box title=\"Strategic Partnerships\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-handshake fas\"]We believe in the value of collaboration. By identifying and managing partnerships that align with a brand\'s ethos, we aim to enrich its presence and impact.[/fusion_content_box][fusion_content_box title=\"Collateral Production &amp; Development\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-map fas\"]We oversee the production and development of various collateral items, ensuring each piece aligns with the brand\'s image and communicates its message effectively.[/fusion_content_box][fusion_content_box title=\"Community Engagement\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-user-friends fas\"]<p>Engaging with the community is essential. We focus on building strategies that allow organizations to foster meaningful relationships within their community, ensuring active and beneficial participation.</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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"6\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"115%\" pattern_bg_color=\"var(--awb-color1)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Process[/fusion_title][fusion_text columns=\"2\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" logics=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<b>Good Cause Marketing Partners</b> harmoniously blends the analytical rigor of the left brain with the creative intuition of the right. This symbiotic approach enables us to deliver a suite of high-impact, integrated services that not only resonate emotionally but are also grounded in data-driven insights. It\'s where imaginative storytelling meets strategic precision, ensuring that every campaign is both evocative and effective.\n\nEmbarking on a marketing journey requires a clear roadmap and unwavering commitment. Our five-phase approach ensures that the journey is transparent, collaborative, and always tailored to your objectives. Every step is designed with teamwork and continuous learning at the heart, assuring that our strategies are closely aligned with your aspirations.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Our Collaborations: A Spectrum of Industries &amp; Experiences[/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\" margin_bottom=\"0\"]<p>At Good Cause Marketing Partners, we believe in the power of collaboration, recognizing that our most transformative work often emerges from synergistic relationships with our esteemed partners. Over the years, we\'ve had the privilege of joining forces with diverse industries and dynamic companies, each bringing unique challenges and opportunities. Join us in celebrating these alliances that have not only shaped our journey but have also paved the way for innovative breakthroughs in the world of integrated marketing.</p>[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.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=\"center\" flex_wrap=\"wrap\" 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\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"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=\"\" 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=\"0\" margin_top=\"0\" flex_column_spacing=\"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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_checklist parent_dynamic_content=\"\" type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]<p>Commercial Products</p>[/fusion_li_item][fusion_li_item]<p>Education &amp; Higher Education</p>[/fusion_li_item][fusion_li_item]<p>Financial Planning</p>[/fusion_li_item][/fusion_checklist][/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=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_right=\"25%\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]<p>Nonprofits</p>[/fusion_li_item][fusion_li_item]<p>Real Estate</p>[/fusion_li_item][fusion_li_item]<p>Sports and Entertainment</p>[/fusion_li_item][/fusion_checklist][/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=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_right=\"25%\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]<p>Television &amp; Radio</p>[/fusion_li_item][fusion_li_item]<p>Winery &amp; Hospitality</p>[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','What We Do','','inherit','closed','closed','','1723-revision-v1','','','2023-08-22 02:00:48','2023-08-22 02:00:48','',1723,'https://test-site.goodcausepartners.com/?p=1736',0,'revision','',0),(1739,1,'2023-08-22 02:03:27','2023-08-22 02:03: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]Our Services[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Bridging Creativity and Strategy: Tailored Solutions for a Digital Era</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>In an ever-evolving digital age, effective marketing is both an art and a science. At Good Cause Marketing Partners, we merge creativity with data-driven strategies to bring you comprehensive services tailored for the unique contours of today\'s business and nonprofit landscapes. Whether you\'re looking to amplify your brand, connect with your audience, or catalyze social impact, our suite of services has been meticulously designed to guide you every step of the way. Dive in to discover how we can elevate your mission and transform your vision into tangible results.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_bottom=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_content_boxes layout=\"icon-on-side\" columns=\"2\" heading_size=\"2\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_color=\"var(--awb-color6)\" iconcolor=\"var(--awb-color6)\" icon_circle=\"no\" icon_size=\"61\"][fusion_content_box title=\"Brand Positioning &amp; Development\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-heart far\"]\r\n<p>At Good Cause Marketing Partners, we focus on understanding and capturing the core essence of your organization. This process helps in building and positioning a brand that is both genuine and distinct in a highly competitive market.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Creative Design\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-paint-brush fas\"]\r\n<p>Our design team works to create visuals that genuinely represent an organization\'s message and brand essence.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Market Strategy\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullseye fas\"]\r\n<p>Our approach considers the nuances of market dynamics. By crafting strategies tailored to specific needs, we aim to help organizations navigate their sector and connect with their desired audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Visual Identity Systems\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-image far\"]\r\n<p>A consistent brand image is crucial. We work on developing visual identity systems that maintain brand recognition across various platforms and touchpoints.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Research\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-book-reader fas\"]\r\n<p>Through methodical research, we gather valuable insights about market trends, competitors, and potential audience behaviors. This information forms the foundation for our decision-making processes and strategic planning.</p>\r\n[/fusion_content_box][fusion_content_box animation_direction=\"left\" animation_speed=\"0.3\" title=\"Digital Marketing\" icon=\"fa-globe fas\"]In the evolving digital age, we customize strategies in areas like SEO and PPC to help organizations maintain a strong online presence and connect with their audience.[/fusion_content_box][fusion_content_box title=\"Communications\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullhorn fas\"]\r\n<p>We prioritize clear and consistent communication, ensuring that both internal and external messages align with the brand\'s voice and values.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Traditional Advertising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-newspaper fas\"]\r\n<p>Using classic advertising mediums, such as television, print, and radio, we develop campaigns that authentically communicate an organization\'s message to a broader audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Public Relations &amp; Crisis Management\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-first-aid fas\"]\r\n<p>Our team is equipped to manage public relations, emphasizing the positive aspects of a brand. Additionally, during challenging situations, we prioritize maintaining brand integrity and reputation.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Photo / Video Production\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-camera fas\"]\r\n<p>Visual storytelling is powerful. Our team focuses on producing photo and video content that genuinely encapsulates an organization\'s narrative, helping to foster deeper connections with its audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Fundraising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-hand-holding-usd fas\"]\r\n<p>Resource acquisition is crucial for any initiative. We utilize both traditional and innovative methods to gather support, ensuring that projects and campaigns are adequately funded.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Social &amp; Mobile Marketing\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-comment fas\"]\r\n<p>Our efforts in social and mobile marketing aim to ensure organizations are actively participating in relevant digital discussions, reaching their audience on platforms they frequently use.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Strategic Partnerships\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-handshake fas\"]We believe in the value of collaboration. By identifying and managing partnerships that align with a brand\'s ethos, we aim to enrich its presence and impact.[/fusion_content_box][fusion_content_box title=\"Collateral Production &amp; Development\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-map fas\"]We oversee the production and development of various collateral items, ensuring each piece aligns with the brand\'s image and communicates its message effectively.[/fusion_content_box][fusion_content_box title=\"Community Engagement\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-user-friends fas\"]\r\n<p>Engaging with the community is essential. We focus on building strategies that allow organizations to foster meaningful relationships within their community, ensuring active and beneficial participation.</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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"6\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"115%\" pattern_bg_color=\"var(--awb-color1)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Process[/fusion_title][fusion_text columns=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<b>Good Cause Marketing Partners</b> harmoniously blends the analytical rigor of the left brain with the creative intuition of the right. This symbiotic approach enables us to deliver a suite of high-impact, integrated services that not only resonate emotionally but are also grounded in data-driven insights. It\'s where imaginative storytelling meets strategic precision, ensuring that every campaign is both evocative and effective.</p>\r\n<p>Embarking on a marketing journey requires a clear roadmap and unwavering commitment. Our five-phase approach ensures that the journey is transparent, collaborative, and always tailored to your objectives. Every step is designed with teamwork and continuous learning at the heart, assuring that our strategies are closely aligned with your aspirations.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Feature Section 1\" padding_top=\"20\" padding_bottom=\"20\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Our Collaborations: A Spectrum of Industries &amp; Experiences[/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\" margin_bottom=\"0\"]\r\n<p>At Good Cause Marketing Partners, we believe in the power of collaboration, recognizing that our most transformative work often emerges from synergistic relationships with our esteemed partners. Over the years, we\'ve had the privilege of joining forces with diverse industries and dynamic companies, each bringing unique challenges and opportunities. Join us in celebrating these alliances that have not only shaped our journey but have also paved the way for innovative breakthroughs in the world of integrated marketing.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.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=\"space-evenly\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"0\" margin_top=\"0\" flex_column_spacing=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Commercial Products</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Education &amp; Higher Education</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Financial Planning</p>\r\n[/fusion_li_item][/fusion_checklist][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Nonprofits</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Real Estate</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Sports and Entertainment</p>\r\n[/fusion_li_item][/fusion_checklist][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Television &amp; Radio</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Winery &amp; Hospitality</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','What We Do','','inherit','closed','closed','','1723-revision-v1','','','2023-08-22 02:03:27','2023-08-22 02:03:27','',1723,'https://test-site.goodcausepartners.com/?p=1739',0,'revision','',0),(1740,1,'2023-08-22 04:00:51','2023-08-22 04:00: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]Our Services[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Bridging Creativity and Strategy: Tailored Solutions for a Digital Era</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>In an ever-evolving digital age, effective marketing is both an art and a science. At Good Cause Marketing Partners, we merge creativity with data-driven strategies to bring you comprehensive services tailored for the unique contours of today\'s business and nonprofit landscapes. Whether you\'re looking to amplify your brand, connect with your audience, or catalyze social impact, our suite of services has been meticulously designed to guide you every step of the way. Dive in to discover how we can elevate your mission and transform your vision into tangible results.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_bottom=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_content_boxes layout=\"icon-on-side\" columns=\"2\" heading_size=\"2\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_color=\"var(--awb-color6)\" iconcolor=\"var(--awb-color6)\" icon_circle=\"no\" icon_size=\"61\"][fusion_content_box title=\"Brand Positioning &amp; Development\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-heart far\"]\r\n<p>At Good Cause Marketing Partners, we focus on understanding and capturing the core essence of your organization. This process helps in building and positioning a brand that is both genuine and distinct in a highly competitive market.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Creative Design\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-paint-brush fas\"]\r\n<p>Our design team works to create visuals that genuinely represent an organization\'s message and brand essence.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Market Strategy\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullseye fas\"]\r\n<p>Our approach considers the nuances of market dynamics. By crafting strategies tailored to specific needs, we aim to help organizations navigate their sector and connect with their desired audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Visual Identity Systems\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-image far\"]\r\n<p>A consistent brand image is crucial. We work on developing visual identity systems that maintain brand recognition across various platforms and touchpoints.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Research\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-book-reader fas\"]\r\n<p>Through methodical research, we gather valuable insights about market trends, competitors, and potential audience behaviors. This information forms the foundation for our decision-making processes and strategic planning.</p>\r\n[/fusion_content_box][fusion_content_box animation_direction=\"left\" animation_speed=\"0.3\" title=\"Digital Marketing\" icon=\"fa-globe fas\"]In the evolving digital age, we customize strategies in areas like SEO and PPC to help organizations maintain a strong online presence and connect with their audience.[/fusion_content_box][fusion_content_box title=\"Communications\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullhorn fas\"]\r\n<p>We prioritize clear and consistent communication, ensuring that both internal and external messages align with the brand\'s voice and values.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Traditional Advertising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-newspaper fas\"]\r\n<p>Using classic advertising mediums, such as television, print, and radio, we develop campaigns that authentically communicate an organization\'s message to a broader audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Public Relations &amp; Crisis Management\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-first-aid fas\"]\r\n<p>Our team is equipped to manage public relations, emphasizing the positive aspects of a brand. Additionally, during challenging situations, we prioritize maintaining brand integrity and reputation.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Photo / Video Production\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-camera fas\"]\r\n<p>Visual storytelling is powerful. Our team focuses on producing photo and video content that genuinely encapsulates an organization\'s narrative, helping to foster deeper connections with its audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Fundraising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-hand-holding-usd fas\"]\r\n<p>Resource acquisition is crucial for any initiative. We utilize both traditional and innovative methods to gather support, ensuring that projects and campaigns are adequately funded.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Social &amp; Mobile Marketing\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-comment fas\"]\r\n<p>Our efforts in social and mobile marketing aim to ensure organizations are actively participating in relevant digital discussions, reaching their audience on platforms they frequently use.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Strategic Partnerships\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-handshake fas\"]We believe in the value of collaboration. By identifying and managing partnerships that align with a brand\'s ethos, we aim to enrich its presence and impact.[/fusion_content_box][fusion_content_box title=\"Collateral Production &amp; Development\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-map fas\"]We oversee the production and development of various collateral items, ensuring each piece aligns with the brand\'s image and communicates its message effectively.[/fusion_content_box][fusion_content_box title=\"Community Engagement\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-user-friends fas\"]\r\n<p>Engaging with the community is essential. We focus on building strategies that allow organizations to foster meaningful relationships within their community, ensuring active and beneficial participation.</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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"6\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"115%\" pattern_bg_color=\"var(--awb-color1)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Process[/fusion_title][fusion_text columns=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<b>Good Cause Marketing Partners</b> harmoniously blends the analytical rigor of the left brain with the creative intuition of the right. This symbiotic approach enables us to deliver a suite of high-impact, integrated services that not only resonate emotionally but are also grounded in data-driven insights. It\'s where imaginative storytelling meets strategic precision, ensuring that every campaign is both evocative and effective.</p>\r\n<p>Embarking on a marketing journey requires a clear roadmap and unwavering commitment. Our five-phase approach ensures that the journey is transparent, collaborative, and always tailored to your objectives. Every step is designed with teamwork and continuous learning at the heart, assuring that our strategies are closely aligned with your aspirations.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Feature Section 1\" padding_top=\"65\" padding_bottom=\"20\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Our Collaborations: A Spectrum of Industries &amp; Experiences[/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\" margin_bottom=\"0\"]\r\n<p>At Good Cause Marketing Partners, we believe in the power of collaboration, recognizing that our most transformative work often emerges from synergistic relationships with our esteemed partners. Over the years, we\'ve had the privilege of joining forces with diverse industries and dynamic companies, each bringing unique challenges and opportunities. Join us in celebrating these alliances that have not only shaped our journey but have also paved the way for innovative breakthroughs in the world of integrated marketing.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.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=\"center\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"0\" margin_top=\"0\" flex_column_spacing=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Commercial Products</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Education &amp; Higher Education</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Financial Planning</p>\r\n[/fusion_li_item][/fusion_checklist][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Nonprofits</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Real Estate</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Sports and Entertainment</p>\r\n[/fusion_li_item][/fusion_checklist][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Television &amp; Radio</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Winery &amp; Hospitality</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','What We Do','','inherit','closed','closed','','1723-revision-v1','','','2023-08-22 04:00:51','2023-08-22 04:00:51','',1723,'https://test-site.goodcausepartners.com/?p=1740',0,'revision','',0),(1741,1,'2023-08-22 04:03:03','2023-08-22 04:03: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]Our Services[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Bridging Creativity and Strategy: Tailored Solutions for a Digital Era</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>In an ever-evolving digital age, effective marketing is both an art and a science. At Good Cause Marketing Partners, we merge creativity with data-driven strategies to bring you comprehensive services tailored for the unique contours of today\'s business and nonprofit landscapes. Whether you\'re looking to amplify your brand, connect with your audience, or catalyze social impact, our suite of services has been meticulously designed to guide you every step of the way. Dive in to discover how we can elevate your mission and transform your vision into tangible results.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_bottom=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_content_boxes layout=\"icon-on-side\" columns=\"2\" heading_size=\"2\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_color=\"var(--awb-color6)\" iconcolor=\"var(--awb-color6)\" icon_circle=\"no\" icon_size=\"61\"][fusion_content_box title=\"Brand Positioning &amp; Development\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-heart far\"]\r\n<p>At Good Cause Marketing Partners, we focus on understanding and capturing the core essence of your organization. This process helps in building and positioning a brand that is both genuine and distinct in a highly competitive market.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Creative Design\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-paint-brush fas\"]\r\n<p>Our design team works to create visuals that genuinely represent an organization\'s message and brand essence.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Market Strategy\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullseye fas\"]\r\n<p>Our approach considers the nuances of market dynamics. By crafting strategies tailored to specific needs, we aim to help organizations navigate their sector and connect with their desired audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Visual Identity Systems\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-image far\"]\r\n<p>A consistent brand image is crucial. We work on developing visual identity systems that maintain brand recognition across various platforms and touchpoints.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Research\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-book-reader fas\"]\r\n<p>Through methodical research, we gather valuable insights about market trends, competitors, and potential audience behaviors. This information forms the foundation for our decision-making processes and strategic planning.</p>\r\n[/fusion_content_box][fusion_content_box animation_direction=\"left\" animation_speed=\"0.3\" title=\"Digital Marketing\" icon=\"fa-globe fas\"]In the evolving digital age, we customize strategies in areas like SEO and PPC to help organizations maintain a strong online presence and connect with their audience.[/fusion_content_box][fusion_content_box title=\"Communications\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullhorn fas\"]\r\n<p>We prioritize clear and consistent communication, ensuring that both internal and external messages align with the brand\'s voice and values.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Traditional Advertising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-newspaper fas\"]\r\n<p>Using classic advertising mediums, such as television, print, and radio, we develop campaigns that authentically communicate an organization\'s message to a broader audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Public Relations &amp; Crisis Management\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-first-aid fas\"]\r\n<p>Our team is equipped to manage public relations, emphasizing the positive aspects of a brand. Additionally, during challenging situations, we prioritize maintaining brand integrity and reputation.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Photo / Video Production\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-camera fas\"]\r\n<p>Visual storytelling is powerful. Our team focuses on producing photo and video content that genuinely encapsulates an organization\'s narrative, helping to foster deeper connections with its audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Fundraising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-hand-holding-usd fas\"]\r\n<p>Resource acquisition is crucial for any initiative. We utilize both traditional and innovative methods to gather support, ensuring that projects and campaigns are adequately funded.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Social &amp; Mobile Marketing\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-comment fas\"]\r\n<p>Our efforts in social and mobile marketing aim to ensure organizations are actively participating in relevant digital discussions, reaching their audience on platforms they frequently use.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Strategic Partnerships\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-handshake fas\"]We believe in the value of collaboration. By identifying and managing partnerships that align with a brand\'s ethos, we aim to enrich its presence and impact.[/fusion_content_box][fusion_content_box title=\"Collateral Production &amp; Development\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-map fas\"]We oversee the production and development of various collateral items, ensuring each piece aligns with the brand\'s image and communicates its message effectively.[/fusion_content_box][fusion_content_box title=\"Community Engagement\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-user-friends fas\"]\r\n<p>Engaging with the community is essential. We focus on building strategies that allow organizations to foster meaningful relationships within their community, ensuring active and beneficial participation.</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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"6\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"115%\" pattern_bg_color=\"var(--awb-color1)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Process[/fusion_title][fusion_text columns=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<b>Good Cause Marketing Partners</b> harmoniously blends the analytical rigor of the left brain with the creative intuition of the right. This symbiotic approach enables us to deliver a suite of high-impact, integrated services that not only resonate emotionally but are also grounded in data-driven insights. It\'s where imaginative storytelling meets strategic precision, ensuring that every campaign is both evocative and effective.</p>\r\n<p>Embarking on a marketing journey requires a clear roadmap and unwavering commitment. Our five-phase approach ensures that the journey is transparent, collaborative, and always tailored to your objectives. Every step is designed with teamwork and continuous learning at the heart, assuring that our strategies are closely aligned with your aspirations.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Feature Section 1\" padding_top=\"65\" padding_bottom=\"20\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Our Collaborations: A Spectrum of Industries &amp; Experiences[/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\" margin_bottom=\"0\"]\r\n<p>At Good Cause Marketing Partners, we believe in the power of collaboration, recognizing that our most transformative work often emerges from synergistic relationships with our esteemed partners. Over the years, we\'ve had the privilege of joining forces with diverse industries and dynamic companies, each bringing unique challenges and opportunities. Join us in celebrating these alliances that have not only shaped our journey but have also paved the way for innovative breakthroughs in the world of integrated marketing.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"0\" margin_top=\"0\" flex_column_spacing=\"0\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"30\" type=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Commercial Products</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Education &amp; Higher Education</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Financial Planning</p>\r\n[/fusion_li_item][/fusion_checklist][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Nonprofits</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Real Estate</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Sports and Entertainment</p>\r\n[/fusion_li_item][/fusion_checklist][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Television &amp; Radio</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Winery &amp; Hospitality</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','What We Do','','inherit','closed','closed','','1723-revision-v1','','','2023-08-22 04:03:03','2023-08-22 04:03:03','',1723,'https://test-site.goodcausepartners.com/?p=1741',0,'revision','',0),(1742,1,'2023-08-22 04:03:14','2023-08-22 04:03: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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]Our Services[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Bridging Creativity and Strategy: Tailored Solutions for a Digital Era</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>In an ever-evolving digital age, effective marketing is both an art and a science. At Good Cause Marketing Partners, we merge creativity with data-driven strategies to bring you comprehensive services tailored for the unique contours of today\'s business and nonprofit landscapes. Whether you\'re looking to amplify your brand, connect with your audience, or catalyze social impact, our suite of services has been meticulously designed to guide you every step of the way. Dive in to discover how we can elevate your mission and transform your vision into tangible results.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_bottom=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_content_boxes layout=\"icon-on-side\" columns=\"2\" heading_size=\"2\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_color=\"var(--awb-color6)\" iconcolor=\"var(--awb-color6)\" icon_circle=\"no\" icon_size=\"61\"][fusion_content_box title=\"Brand Positioning &amp; Development\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-heart far\"]\r\n<p>At Good Cause Marketing Partners, we focus on understanding and capturing the core essence of your organization. This process helps in building and positioning a brand that is both genuine and distinct in a highly competitive market.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Creative Design\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-paint-brush fas\"]\r\n<p>Our design team works to create visuals that genuinely represent an organization\'s message and brand essence.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Market Strategy\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullseye fas\"]\r\n<p>Our approach considers the nuances of market dynamics. By crafting strategies tailored to specific needs, we aim to help organizations navigate their sector and connect with their desired audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Visual Identity Systems\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-image far\"]\r\n<p>A consistent brand image is crucial. We work on developing visual identity systems that maintain brand recognition across various platforms and touchpoints.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Research\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-book-reader fas\"]\r\n<p>Through methodical research, we gather valuable insights about market trends, competitors, and potential audience behaviors. This information forms the foundation for our decision-making processes and strategic planning.</p>\r\n[/fusion_content_box][fusion_content_box animation_direction=\"left\" animation_speed=\"0.3\" title=\"Digital Marketing\" icon=\"fa-globe fas\"]In the evolving digital age, we customize strategies in areas like SEO and PPC to help organizations maintain a strong online presence and connect with their audience.[/fusion_content_box][fusion_content_box title=\"Communications\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullhorn fas\"]\r\n<p>We prioritize clear and consistent communication, ensuring that both internal and external messages align with the brand\'s voice and values.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Traditional Advertising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-newspaper fas\"]\r\n<p>Using classic advertising mediums, such as television, print, and radio, we develop campaigns that authentically communicate an organization\'s message to a broader audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Public Relations &amp; Crisis Management\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-first-aid fas\"]\r\n<p>Our team is equipped to manage public relations, emphasizing the positive aspects of a brand. Additionally, during challenging situations, we prioritize maintaining brand integrity and reputation.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Photo / Video Production\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-camera fas\"]\r\n<p>Visual storytelling is powerful. Our team focuses on producing photo and video content that genuinely encapsulates an organization\'s narrative, helping to foster deeper connections with its audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Fundraising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-hand-holding-usd fas\"]\r\n<p>Resource acquisition is crucial for any initiative. We utilize both traditional and innovative methods to gather support, ensuring that projects and campaigns are adequately funded.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Social &amp; Mobile Marketing\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-comment fas\"]\r\n<p>Our efforts in social and mobile marketing aim to ensure organizations are actively participating in relevant digital discussions, reaching their audience on platforms they frequently use.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Strategic Partnerships\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-handshake fas\"]We believe in the value of collaboration. By identifying and managing partnerships that align with a brand\'s ethos, we aim to enrich its presence and impact.[/fusion_content_box][fusion_content_box title=\"Collateral Production &amp; Development\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-map fas\"]We oversee the production and development of various collateral items, ensuring each piece aligns with the brand\'s image and communicates its message effectively.[/fusion_content_box][fusion_content_box title=\"Community Engagement\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-user-friends fas\"]\r\n<p>Engaging with the community is essential. We focus on building strategies that allow organizations to foster meaningful relationships within their community, ensuring active and beneficial participation.</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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"6\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"115%\" pattern_bg_color=\"var(--awb-color1)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Process[/fusion_title][fusion_text columns=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<b>Good Cause Marketing Partners</b> harmoniously blends the analytical rigor of the left brain with the creative intuition of the right. This symbiotic approach enables us to deliver a suite of high-impact, integrated services that not only resonate emotionally but are also grounded in data-driven insights. It\'s where imaginative storytelling meets strategic precision, ensuring that every campaign is both evocative and effective.</p>\r\n<p>Embarking on a marketing journey requires a clear roadmap and unwavering commitment. Our five-phase approach ensures that the journey is transparent, collaborative, and always tailored to your objectives. Every step is designed with teamwork and continuous learning at the heart, assuring that our strategies are closely aligned with your aspirations.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Feature Section 1\" padding_top=\"65\" padding_bottom=\"20\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Our Collaborations: A Spectrum of Industries &amp; Experiences[/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\" margin_bottom=\"0\"]\r\n<p>At Good Cause Marketing Partners, we believe in the power of collaboration, recognizing that our most transformative work often emerges from synergistic relationships with our esteemed partners. Over the years, we\'ve had the privilege of joining forces with diverse industries and dynamic companies, each bringing unique challenges and opportunities. Join us in celebrating these alliances that have not only shaped our journey but have also paved the way for innovative breakthroughs in the world of integrated marketing.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"0\" margin_top=\"0\" flex_column_spacing=\"0\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"30\" type=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Commercial Products</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Education &amp; Higher Education</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Financial Planning</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Nonprofits</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Real Estate</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Sports and Entertainment</p>\r\n[/fusion_li_item][/fusion_checklist][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Television &amp; Radio</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Winery &amp; Hospitality</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','What We Do','','inherit','closed','closed','','1723-revision-v1','','','2023-08-22 04:03:14','2023-08-22 04:03:14','',1723,'https://test-site.goodcausepartners.com/?p=1742',0,'revision','',0),(1743,1,'2023-08-22 04:03:24','2023-08-22 04:03: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]Our Services[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Bridging Creativity and Strategy: Tailored Solutions for a Digital Era</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>In an ever-evolving digital age, effective marketing is both an art and a science. At Good Cause Marketing Partners, we merge creativity with data-driven strategies to bring you comprehensive services tailored for the unique contours of today\'s business and nonprofit landscapes. Whether you\'re looking to amplify your brand, connect with your audience, or catalyze social impact, our suite of services has been meticulously designed to guide you every step of the way. Dive in to discover how we can elevate your mission and transform your vision into tangible results.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_bottom=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_content_boxes layout=\"icon-on-side\" columns=\"2\" heading_size=\"2\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_color=\"var(--awb-color6)\" iconcolor=\"var(--awb-color6)\" icon_circle=\"no\" icon_size=\"61\"][fusion_content_box title=\"Brand Positioning &amp; Development\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-heart far\"]\r\n<p>At Good Cause Marketing Partners, we focus on understanding and capturing the core essence of your organization. This process helps in building and positioning a brand that is both genuine and distinct in a highly competitive market.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Creative Design\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-paint-brush fas\"]\r\n<p>Our design team works to create visuals that genuinely represent an organization\'s message and brand essence.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Market Strategy\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullseye fas\"]\r\n<p>Our approach considers the nuances of market dynamics. By crafting strategies tailored to specific needs, we aim to help organizations navigate their sector and connect with their desired audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Visual Identity Systems\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-image far\"]\r\n<p>A consistent brand image is crucial. We work on developing visual identity systems that maintain brand recognition across various platforms and touchpoints.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Research\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-book-reader fas\"]\r\n<p>Through methodical research, we gather valuable insights about market trends, competitors, and potential audience behaviors. This information forms the foundation for our decision-making processes and strategic planning.</p>\r\n[/fusion_content_box][fusion_content_box animation_direction=\"left\" animation_speed=\"0.3\" title=\"Digital Marketing\" icon=\"fa-globe fas\"]In the evolving digital age, we customize strategies in areas like SEO and PPC to help organizations maintain a strong online presence and connect with their audience.[/fusion_content_box][fusion_content_box title=\"Communications\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullhorn fas\"]\r\n<p>We prioritize clear and consistent communication, ensuring that both internal and external messages align with the brand\'s voice and values.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Traditional Advertising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-newspaper fas\"]\r\n<p>Using classic advertising mediums, such as television, print, and radio, we develop campaigns that authentically communicate an organization\'s message to a broader audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Public Relations &amp; Crisis Management\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-first-aid fas\"]\r\n<p>Our team is equipped to manage public relations, emphasizing the positive aspects of a brand. Additionally, during challenging situations, we prioritize maintaining brand integrity and reputation.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Photo / Video Production\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-camera fas\"]\r\n<p>Visual storytelling is powerful. Our team focuses on producing photo and video content that genuinely encapsulates an organization\'s narrative, helping to foster deeper connections with its audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Fundraising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-hand-holding-usd fas\"]\r\n<p>Resource acquisition is crucial for any initiative. We utilize both traditional and innovative methods to gather support, ensuring that projects and campaigns are adequately funded.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Social &amp; Mobile Marketing\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-comment fas\"]\r\n<p>Our efforts in social and mobile marketing aim to ensure organizations are actively participating in relevant digital discussions, reaching their audience on platforms they frequently use.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Strategic Partnerships\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-handshake fas\"]We believe in the value of collaboration. By identifying and managing partnerships that align with a brand\'s ethos, we aim to enrich its presence and impact.[/fusion_content_box][fusion_content_box title=\"Collateral Production &amp; Development\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-map fas\"]We oversee the production and development of various collateral items, ensuring each piece aligns with the brand\'s image and communicates its message effectively.[/fusion_content_box][fusion_content_box title=\"Community Engagement\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-user-friends fas\"]\r\n<p>Engaging with the community is essential. We focus on building strategies that allow organizations to foster meaningful relationships within their community, ensuring active and beneficial participation.</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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"6\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"115%\" pattern_bg_color=\"var(--awb-color1)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Process[/fusion_title][fusion_text columns=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<b>Good Cause Marketing Partners</b> harmoniously blends the analytical rigor of the left brain with the creative intuition of the right. This symbiotic approach enables us to deliver a suite of high-impact, integrated services that not only resonate emotionally but are also grounded in data-driven insights. It\'s where imaginative storytelling meets strategic precision, ensuring that every campaign is both evocative and effective.</p>\r\n<p>Embarking on a marketing journey requires a clear roadmap and unwavering commitment. Our five-phase approach ensures that the journey is transparent, collaborative, and always tailored to your objectives. Every step is designed with teamwork and continuous learning at the heart, assuring that our strategies are closely aligned with your aspirations.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Feature Section 1\" padding_top=\"65\" padding_bottom=\"20\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Our Collaborations: A Spectrum of Industries &amp; Experiences[/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\" margin_bottom=\"0\"]\r\n<p>At Good Cause Marketing Partners, we believe in the power of collaboration, recognizing that our most transformative work often emerges from synergistic relationships with our esteemed partners. Over the years, we\'ve had the privilege of joining forces with diverse industries and dynamic companies, each bringing unique challenges and opportunities. Join us in celebrating these alliances that have not only shaped our journey but have also paved the way for innovative breakthroughs in the world of integrated marketing.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"0\" margin_top=\"0\" flex_column_spacing=\"0\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"30\" type=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Commercial Products</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Education &amp; Higher Education</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Financial Planning</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Nonprofits</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Real Estate</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Sports and Entertainment</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Television &amp; Radio</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Winery &amp; Hospitality</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','What We Do','','inherit','closed','closed','','1723-revision-v1','','','2023-08-22 04:03:24','2023-08-22 04:03:24','',1723,'https://test-site.goodcausepartners.com/?p=1743',0,'revision','',0),(1744,1,'2023-08-22 04:03:47','2023-08-22 04:03: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]Our Services[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Bridging Creativity and Strategy: Tailored Solutions for a Digital Era</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>In an ever-evolving digital age, effective marketing is both an art and a science. At Good Cause Marketing Partners, we merge creativity with data-driven strategies to bring you comprehensive services tailored for the unique contours of today\'s business and nonprofit landscapes. Whether you\'re looking to amplify your brand, connect with your audience, or catalyze social impact, our suite of services has been meticulously designed to guide you every step of the way. Dive in to discover how we can elevate your mission and transform your vision into tangible results.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_bottom=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_content_boxes layout=\"icon-on-side\" columns=\"2\" heading_size=\"2\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_color=\"var(--awb-color6)\" iconcolor=\"var(--awb-color6)\" icon_circle=\"no\" icon_size=\"61\"][fusion_content_box title=\"Brand Positioning &amp; Development\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-heart far\"]\r\n<p>At Good Cause Marketing Partners, we focus on understanding and capturing the core essence of your organization. This process helps in building and positioning a brand that is both genuine and distinct in a highly competitive market.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Creative Design\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-paint-brush fas\"]\r\n<p>Our design team works to create visuals that genuinely represent an organization\'s message and brand essence.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Market Strategy\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullseye fas\"]\r\n<p>Our approach considers the nuances of market dynamics. By crafting strategies tailored to specific needs, we aim to help organizations navigate their sector and connect with their desired audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Visual Identity Systems\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-image far\"]\r\n<p>A consistent brand image is crucial. We work on developing visual identity systems that maintain brand recognition across various platforms and touchpoints.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Research\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-book-reader fas\"]\r\n<p>Through methodical research, we gather valuable insights about market trends, competitors, and potential audience behaviors. This information forms the foundation for our decision-making processes and strategic planning.</p>\r\n[/fusion_content_box][fusion_content_box animation_direction=\"left\" animation_speed=\"0.3\" title=\"Digital Marketing\" icon=\"fa-globe fas\"]In the evolving digital age, we customize strategies in areas like SEO and PPC to help organizations maintain a strong online presence and connect with their audience.[/fusion_content_box][fusion_content_box title=\"Communications\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullhorn fas\"]\r\n<p>We prioritize clear and consistent communication, ensuring that both internal and external messages align with the brand\'s voice and values.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Traditional Advertising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-newspaper fas\"]\r\n<p>Using classic advertising mediums, such as television, print, and radio, we develop campaigns that authentically communicate an organization\'s message to a broader audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Public Relations &amp; Crisis Management\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-first-aid fas\"]\r\n<p>Our team is equipped to manage public relations, emphasizing the positive aspects of a brand. Additionally, during challenging situations, we prioritize maintaining brand integrity and reputation.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Photo / Video Production\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-camera fas\"]\r\n<p>Visual storytelling is powerful. Our team focuses on producing photo and video content that genuinely encapsulates an organization\'s narrative, helping to foster deeper connections with its audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Fundraising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-hand-holding-usd fas\"]\r\n<p>Resource acquisition is crucial for any initiative. We utilize both traditional and innovative methods to gather support, ensuring that projects and campaigns are adequately funded.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Social &amp; Mobile Marketing\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-comment fas\"]\r\n<p>Our efforts in social and mobile marketing aim to ensure organizations are actively participating in relevant digital discussions, reaching their audience on platforms they frequently use.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Strategic Partnerships\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-handshake fas\"]We believe in the value of collaboration. By identifying and managing partnerships that align with a brand\'s ethos, we aim to enrich its presence and impact.[/fusion_content_box][fusion_content_box title=\"Collateral Production &amp; Development\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-map fas\"]We oversee the production and development of various collateral items, ensuring each piece aligns with the brand\'s image and communicates its message effectively.[/fusion_content_box][fusion_content_box title=\"Community Engagement\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-user-friends fas\"]\r\n<p>Engaging with the community is essential. We focus on building strategies that allow organizations to foster meaningful relationships within their community, ensuring active and beneficial participation.</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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"6\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"115%\" pattern_bg_color=\"var(--awb-color1)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Process[/fusion_title][fusion_text columns=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<b>Good Cause Marketing Partners</b> harmoniously blends the analytical rigor of the left brain with the creative intuition of the right. This symbiotic approach enables us to deliver a suite of high-impact, integrated services that not only resonate emotionally but are also grounded in data-driven insights. It\'s where imaginative storytelling meets strategic precision, ensuring that every campaign is both evocative and effective.</p>\r\n<p>Embarking on a marketing journey requires a clear roadmap and unwavering commitment. Our five-phase approach ensures that the journey is transparent, collaborative, and always tailored to your objectives. Every step is designed with teamwork and continuous learning at the heart, assuring that our strategies are closely aligned with your aspirations.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Feature Section 1\" padding_top=\"65\" padding_bottom=\"20\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Our Collaborations: A Spectrum of Industries &amp; Experiences[/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\" margin_bottom=\"0\"]\r\n<p>At Good Cause Marketing Partners, we believe in the power of collaboration, recognizing that our most transformative work often emerges from synergistic relationships with our esteemed partners. Over the years, we\'ve had the privilege of joining forces with diverse industries and dynamic companies, each bringing unique challenges and opportunities. Join us in celebrating these alliances that have not only shaped our journey but have also paved the way for innovative breakthroughs in the world of integrated marketing.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"30\" margin_top=\"0\" flex_column_spacing=\"0\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"30\" type=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Commercial Products</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Education &amp; Higher Education</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Financial Planning</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Nonprofits</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Real Estate</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Sports and Entertainment</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Television &amp; Radio</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Winery &amp; Hospitality</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','What We Do','','inherit','closed','closed','','1723-revision-v1','','','2023-08-22 04:03:47','2023-08-22 04:03:47','',1723,'https://test-site.goodcausepartners.com/?p=1744',0,'revision','',0),(1759,1,'2023-08-22 04:58:19','2023-08-22 04:58: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]Our Services[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Tailored Solutions for a Digital World</span></p>[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>In an ever-evolving digital age, effective marketing is both an art and a science. At Good Cause Marketing Partners, we merge creativity with data-driven strategies to bring you comprehensive services tailored for the unique contours of today\'s business and nonprofit landscapes. Whether you\'re looking to amplify your brand, connect with your audience, or catalyze social impact, our suite of services has been meticulously designed to guide you every step of the way. Dive in to discover how we can elevate your mission and transform your vision into tangible results.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_bottom=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_content_boxes layout=\"icon-on-side\" columns=\"2\" heading_size=\"2\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_color=\"var(--awb-color6)\" iconcolor=\"var(--awb-color6)\" icon_circle=\"no\" icon_size=\"61\"][fusion_content_box title=\"Brand Positioning &amp; Development\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-heart far\"]<p>We focus on understanding and capturing the core essence of your organization. This process helps in building and positioning a brand that is both genuine and distinct in a highly competitive market.</p>[/fusion_content_box][fusion_content_box title=\"Creative Design\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-paint-brush fas\"]\r\n<p>Our design team works to create visuals that genuinely represent an organization\'s message and brand essence.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Market Strategy\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullseye fas\"]\r\n<p>Our approach considers the nuances of market dynamics. By crafting strategies tailored to specific needs, we aim to help organizations navigate their sector and connect with their desired audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Visual Identity Systems\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-image far\"]\r\n<p>A consistent brand image is crucial. We work on developing visual identity systems that maintain brand recognition across various platforms and touchpoints.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Research\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-book-reader fas\"]\r\n<p>Through methodical research, we gather valuable insights about market trends, competitors, and potential audience behaviors. This information forms the foundation for our decision-making processes and strategic planning.</p>\r\n[/fusion_content_box][fusion_content_box animation_direction=\"left\" animation_speed=\"0.3\" title=\"Digital Marketing\" icon=\"fa-globe fas\"]In the evolving digital age, we customize strategies in areas like SEO and PPC to help organizations maintain a strong online presence and connect with their audience.[/fusion_content_box][fusion_content_box title=\"Communications\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullhorn fas\"]\r\n<p>We prioritize clear and consistent communication, ensuring that both internal and external messages align with the brand\'s voice and values.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Traditional Advertising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-newspaper fas\"]\r\n<p>Using classic advertising mediums, such as television, print, and radio, we develop campaigns that authentically communicate an organization\'s message to a broader audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Public Relations &amp; Crisis Management\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-first-aid fas\"]\r\n<p>Our team is equipped to manage public relations, emphasizing the positive aspects of a brand. Additionally, during challenging situations, we prioritize maintaining brand integrity and reputation.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Photo / Video Production\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-camera fas\"]\r\n<p>Visual storytelling is powerful. Our team focuses on producing photo and video content that genuinely encapsulates an organization\'s narrative, helping to foster deeper connections with its audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Fundraising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-hand-holding-usd fas\"]\r\n<p>Resource acquisition is crucial for any initiative. We utilize both traditional and innovative methods to gather support, ensuring that projects and campaigns are adequately funded.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Social &amp; Mobile Marketing\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-comment fas\"]\r\n<p>Our efforts in social and mobile marketing aim to ensure organizations are actively participating in relevant digital discussions, reaching their audience on platforms they frequently use.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Strategic Partnerships\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-handshake fas\"]We believe in the value of collaboration. By identifying and managing partnerships that align with a brand\'s ethos, we aim to enrich its presence and impact.[/fusion_content_box][fusion_content_box title=\"Collateral Production &amp; Development\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-map fas\"]We oversee the production and development of various collateral items, ensuring each piece aligns with the brand\'s image and communicates its message effectively.[/fusion_content_box][fusion_content_box title=\"Community Engagement\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-user-friends fas\"]\r\n<p>Engaging with the community is essential. We focus on building strategies that allow organizations to foster meaningful relationships within their community, ensuring active and beneficial participation.</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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"6\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"115%\" pattern_bg_color=\"var(--awb-color1)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Process[/fusion_title][fusion_text columns=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<b>Good Cause Marketing Partners</b> harmoniously blends the analytical rigor of the left brain with the creative intuition of the right. This symbiotic approach enables us to deliver a suite of high-impact, integrated services that not only resonate emotionally but are also grounded in data-driven insights. It\'s where imaginative storytelling meets strategic precision, ensuring that every campaign is both evocative and effective.</p>\r\n<p>Embarking on a marketing journey requires a clear roadmap and unwavering commitment. Our five-phase approach ensures that the journey is transparent, collaborative, and always tailored to your objectives. Every step is designed with teamwork and continuous learning at the heart, assuring that our strategies are closely aligned with your aspirations.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Feature Section 1\" padding_top=\"65\" padding_bottom=\"20\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Our Collaborations: A Spectrum of Industries &amp; Experiences[/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\" margin_bottom=\"0\"]\r\n<p>At Good Cause Marketing Partners, we believe in the power of collaboration, recognizing that our most transformative work often emerges from synergistic relationships with our esteemed partners. Over the years, we\'ve had the privilege of joining forces with diverse industries and dynamic companies, each bringing unique challenges and opportunities. Join us in celebrating these alliances that have not only shaped our journey but have also paved the way for innovative breakthroughs in the world of integrated marketing.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"30\" margin_top=\"0\" flex_column_spacing=\"0\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"30\" type=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Commercial Products</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Education &amp; Higher Education</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Financial Planning</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Nonprofits</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Real Estate</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Sports and Entertainment</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Television &amp; Radio</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Winery &amp; Hospitality</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Feature Section 1\" padding_top=\"65\" padding_bottom=\"20\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Grow Your Brand for Good[/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\" margin_bottom=\"25\"]\r\n<p>Discover the difference of a strategy that merges creativity with precision. Start your transformation journey with Good Cause Marketing Partners.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Let\'s Get Started[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','What We Do','','inherit','closed','closed','','1723-revision-v1','','','2023-08-22 04:58:19','2023-08-22 04:58:19','',1723,'https://test-site.goodcausepartners.com/?p=1759',0,'revision','',0),(1758,1,'2023-08-22 04:57:40','2023-08-22 04: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]Our Services[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Bridging Creativity and Strategy: Tailored Solutions for a Digital Era</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>In an ever-evolving digital age, effective marketing is both an art and a science. At Good Cause Marketing Partners, we merge creativity with data-driven strategies to bring you comprehensive services tailored for the unique contours of today\'s business and nonprofit landscapes. Whether you\'re looking to amplify your brand, connect with your audience, or catalyze social impact, our suite of services has been meticulously designed to guide you every step of the way. Dive in to discover how we can elevate your mission and transform your vision into tangible results.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_bottom=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_content_boxes layout=\"icon-on-side\" columns=\"2\" heading_size=\"2\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_color=\"var(--awb-color6)\" iconcolor=\"var(--awb-color6)\" icon_circle=\"no\" icon_size=\"61\"][fusion_content_box title=\"Brand Positioning &amp; Development\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-heart far\"]<p>We focus on understanding and capturing the core essence of your organization. This process helps in building and positioning a brand that is both genuine and distinct in a highly competitive market.</p>[/fusion_content_box][fusion_content_box title=\"Creative Design\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-paint-brush fas\"]\r\n<p>Our design team works to create visuals that genuinely represent an organization\'s message and brand essence.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Market Strategy\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullseye fas\"]\r\n<p>Our approach considers the nuances of market dynamics. By crafting strategies tailored to specific needs, we aim to help organizations navigate their sector and connect with their desired audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Visual Identity Systems\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-image far\"]\r\n<p>A consistent brand image is crucial. We work on developing visual identity systems that maintain brand recognition across various platforms and touchpoints.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Research\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-book-reader fas\"]\r\n<p>Through methodical research, we gather valuable insights about market trends, competitors, and potential audience behaviors. This information forms the foundation for our decision-making processes and strategic planning.</p>\r\n[/fusion_content_box][fusion_content_box animation_direction=\"left\" animation_speed=\"0.3\" title=\"Digital Marketing\" icon=\"fa-globe fas\"]In the evolving digital age, we customize strategies in areas like SEO and PPC to help organizations maintain a strong online presence and connect with their audience.[/fusion_content_box][fusion_content_box title=\"Communications\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullhorn fas\"]\r\n<p>We prioritize clear and consistent communication, ensuring that both internal and external messages align with the brand\'s voice and values.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Traditional Advertising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-newspaper fas\"]\r\n<p>Using classic advertising mediums, such as television, print, and radio, we develop campaigns that authentically communicate an organization\'s message to a broader audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Public Relations &amp; Crisis Management\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-first-aid fas\"]\r\n<p>Our team is equipped to manage public relations, emphasizing the positive aspects of a brand. Additionally, during challenging situations, we prioritize maintaining brand integrity and reputation.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Photo / Video Production\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-camera fas\"]\r\n<p>Visual storytelling is powerful. Our team focuses on producing photo and video content that genuinely encapsulates an organization\'s narrative, helping to foster deeper connections with its audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Fundraising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-hand-holding-usd fas\"]\r\n<p>Resource acquisition is crucial for any initiative. We utilize both traditional and innovative methods to gather support, ensuring that projects and campaigns are adequately funded.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Social &amp; Mobile Marketing\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-comment fas\"]\r\n<p>Our efforts in social and mobile marketing aim to ensure organizations are actively participating in relevant digital discussions, reaching their audience on platforms they frequently use.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Strategic Partnerships\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-handshake fas\"]We believe in the value of collaboration. By identifying and managing partnerships that align with a brand\'s ethos, we aim to enrich its presence and impact.[/fusion_content_box][fusion_content_box title=\"Collateral Production &amp; Development\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-map fas\"]We oversee the production and development of various collateral items, ensuring each piece aligns with the brand\'s image and communicates its message effectively.[/fusion_content_box][fusion_content_box title=\"Community Engagement\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-user-friends fas\"]\r\n<p>Engaging with the community is essential. We focus on building strategies that allow organizations to foster meaningful relationships within their community, ensuring active and beneficial participation.</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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"6\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"115%\" pattern_bg_color=\"var(--awb-color1)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Process[/fusion_title][fusion_text columns=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<b>Good Cause Marketing Partners</b> harmoniously blends the analytical rigor of the left brain with the creative intuition of the right. This symbiotic approach enables us to deliver a suite of high-impact, integrated services that not only resonate emotionally but are also grounded in data-driven insights. It\'s where imaginative storytelling meets strategic precision, ensuring that every campaign is both evocative and effective.</p>\r\n<p>Embarking on a marketing journey requires a clear roadmap and unwavering commitment. Our five-phase approach ensures that the journey is transparent, collaborative, and always tailored to your objectives. Every step is designed with teamwork and continuous learning at the heart, assuring that our strategies are closely aligned with your aspirations.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Feature Section 1\" padding_top=\"65\" padding_bottom=\"20\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Our Collaborations: A Spectrum of Industries &amp; Experiences[/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\" margin_bottom=\"0\"]\r\n<p>At Good Cause Marketing Partners, we believe in the power of collaboration, recognizing that our most transformative work often emerges from synergistic relationships with our esteemed partners. Over the years, we\'ve had the privilege of joining forces with diverse industries and dynamic companies, each bringing unique challenges and opportunities. Join us in celebrating these alliances that have not only shaped our journey but have also paved the way for innovative breakthroughs in the world of integrated marketing.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"30\" margin_top=\"0\" flex_column_spacing=\"0\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"30\" type=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Commercial Products</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Education &amp; Higher Education</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Financial Planning</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Nonprofits</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Real Estate</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Sports and Entertainment</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Television &amp; Radio</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Winery &amp; Hospitality</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Feature Section 1\" padding_top=\"65\" padding_bottom=\"20\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Grow Your Brand for Good[/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\" margin_bottom=\"25\"]\r\n<p>Discover the difference of a strategy that merges creativity with precision. Start your transformation journey with Good Cause Marketing Partners.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Let\'s Get Started[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','What We Do','','inherit','closed','closed','','1723-revision-v1','','','2023-08-22 04:57:40','2023-08-22 04:57:40','',1723,'https://test-site.goodcausepartners.com/?p=1758',0,'revision','',0),(1745,1,'2023-08-22 04:06:14','2023-08-22 04:06: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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]Our Services[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Bridging Creativity and Strategy: Tailored Solutions for a Digital Era</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>In an ever-evolving digital age, effective marketing is both an art and a science. At Good Cause Marketing Partners, we merge creativity with data-driven strategies to bring you comprehensive services tailored for the unique contours of today\'s business and nonprofit landscapes. Whether you\'re looking to amplify your brand, connect with your audience, or catalyze social impact, our suite of services has been meticulously designed to guide you every step of the way. Dive in to discover how we can elevate your mission and transform your vision into tangible results.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_bottom=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_content_boxes layout=\"icon-on-side\" columns=\"2\" heading_size=\"2\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_color=\"var(--awb-color6)\" iconcolor=\"var(--awb-color6)\" icon_circle=\"no\" icon_size=\"61\"][fusion_content_box title=\"Brand Positioning &amp; Development\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-heart far\"]\r\n<p>At Good Cause Marketing Partners, we focus on understanding and capturing the core essence of your organization. This process helps in building and positioning a brand that is both genuine and distinct in a highly competitive market.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Creative Design\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-paint-brush fas\"]\r\n<p>Our design team works to create visuals that genuinely represent an organization\'s message and brand essence.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Market Strategy\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullseye fas\"]\r\n<p>Our approach considers the nuances of market dynamics. By crafting strategies tailored to specific needs, we aim to help organizations navigate their sector and connect with their desired audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Visual Identity Systems\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-image far\"]\r\n<p>A consistent brand image is crucial. We work on developing visual identity systems that maintain brand recognition across various platforms and touchpoints.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Research\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-book-reader fas\"]\r\n<p>Through methodical research, we gather valuable insights about market trends, competitors, and potential audience behaviors. This information forms the foundation for our decision-making processes and strategic planning.</p>\r\n[/fusion_content_box][fusion_content_box animation_direction=\"left\" animation_speed=\"0.3\" title=\"Digital Marketing\" icon=\"fa-globe fas\"]In the evolving digital age, we customize strategies in areas like SEO and PPC to help organizations maintain a strong online presence and connect with their audience.[/fusion_content_box][fusion_content_box title=\"Communications\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullhorn fas\"]\r\n<p>We prioritize clear and consistent communication, ensuring that both internal and external messages align with the brand\'s voice and values.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Traditional Advertising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-newspaper fas\"]\r\n<p>Using classic advertising mediums, such as television, print, and radio, we develop campaigns that authentically communicate an organization\'s message to a broader audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Public Relations &amp; Crisis Management\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-first-aid fas\"]\r\n<p>Our team is equipped to manage public relations, emphasizing the positive aspects of a brand. Additionally, during challenging situations, we prioritize maintaining brand integrity and reputation.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Photo / Video Production\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-camera fas\"]\r\n<p>Visual storytelling is powerful. Our team focuses on producing photo and video content that genuinely encapsulates an organization\'s narrative, helping to foster deeper connections with its audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Fundraising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-hand-holding-usd fas\"]\r\n<p>Resource acquisition is crucial for any initiative. We utilize both traditional and innovative methods to gather support, ensuring that projects and campaigns are adequately funded.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Social &amp; Mobile Marketing\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-comment fas\"]\r\n<p>Our efforts in social and mobile marketing aim to ensure organizations are actively participating in relevant digital discussions, reaching their audience on platforms they frequently use.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Strategic Partnerships\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-handshake fas\"]We believe in the value of collaboration. By identifying and managing partnerships that align with a brand\'s ethos, we aim to enrich its presence and impact.[/fusion_content_box][fusion_content_box title=\"Collateral Production &amp; Development\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-map fas\"]We oversee the production and development of various collateral items, ensuring each piece aligns with the brand\'s image and communicates its message effectively.[/fusion_content_box][fusion_content_box title=\"Community Engagement\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-user-friends fas\"]\r\n<p>Engaging with the community is essential. We focus on building strategies that allow organizations to foster meaningful relationships within their community, ensuring active and beneficial participation.</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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"6\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"115%\" pattern_bg_color=\"var(--awb-color1)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Process[/fusion_title][fusion_text columns=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<b>Good Cause Marketing Partners</b> harmoniously blends the analytical rigor of the left brain with the creative intuition of the right. This symbiotic approach enables us to deliver a suite of high-impact, integrated services that not only resonate emotionally but are also grounded in data-driven insights. It\'s where imaginative storytelling meets strategic precision, ensuring that every campaign is both evocative and effective.</p>\r\n<p>Embarking on a marketing journey requires a clear roadmap and unwavering commitment. Our five-phase approach ensures that the journey is transparent, collaborative, and always tailored to your objectives. Every step is designed with teamwork and continuous learning at the heart, assuring that our strategies are closely aligned with your aspirations.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Feature Section 1\" padding_top=\"65\" padding_bottom=\"20\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Our Collaborations: A Spectrum of Industries &amp; Experiences[/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\" margin_bottom=\"0\"]\r\n<p>At Good Cause Marketing Partners, we believe in the power of collaboration, recognizing that our most transformative work often emerges from synergistic relationships with our esteemed partners. Over the years, we\'ve had the privilege of joining forces with diverse industries and dynamic companies, each bringing unique challenges and opportunities. Join us in celebrating these alliances that have not only shaped our journey but have also paved the way for innovative breakthroughs in the world of integrated marketing.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"30\" margin_top=\"0\" flex_column_spacing=\"0\" padding_bottom=\"75\"][fusion_builder_row][fusion_builder_column type=\"30\" type=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Commercial Products</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Education &amp; Higher Education</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Financial Planning</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Nonprofits</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Real Estate</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Sports and Entertainment</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Television &amp; Radio</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Winery &amp; Hospitality</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Feature Section 1\" padding_top=\"65\" padding_bottom=\"20\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Grow Your Brand for Good[/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\" margin_bottom=\"25\"]<p>Discover the difference of a strategy that merges creativity with precision. Start your transformation journey with Good Cause Marketing Partners.</p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" 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\"]Let\'s Get Started[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','What We Do','','inherit','closed','closed','','1723-revision-v1','','','2023-08-22 04:06:14','2023-08-22 04:06:14','',1723,'https://test-site.goodcausepartners.com/?p=1745',0,'revision','',0),(1746,1,'2023-08-22 04:09:06','2023-08-22 04:09: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=\"74\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"0\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" background_color=\"var(--awb-color8)\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\" margin_bottom=\"0\" gradient_start_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 14%),var(--awb-color5-a))\" gradient_end_color=\"var(--awb-color8)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_sizes_top=\"5px\" border_sizes_right=\"5px\" border_sizes_bottom=\"5px\" border_sizes_left=\"5px\" border_color=\"var(--awb-color6)\" padding_top=\"20px\" padding_bottom=\"20px\" padding_right=\"60px\" padding_left=\"60px\" margin_bottom=\"80px\" border_color_hover=\"hsla(var(--awb-color6-h),var(--awb-color6-s),calc(var(--awb-color6-l) + 10%),var(--awb-color6-a))\" padding_top_medium=\"40px\" padding_bottom_medium=\"40px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"75.00\" type=\"75.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\" content_align_medium=\"center\" content_align_small=\"center\"]Empower your online presence with avada hosting[/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\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 20%))\" content_alignment_medium=\"center\" content_alignment_small=\"center\"]\r\n<p>Join our list of 10M customers &amp; get a ‘45-Days Money-Back Guarantee’</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25.00\" type=\"25.00\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\" alignment=\"right\" alignment_medium=\"center\" margin_top=\"20px\" margin_bottom=\"20px\" alignment_small=\"center\"]get started[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"35\" type=\"35\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"var(--awb-color3)\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"45\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<p>Main Menu</p>\r\n[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" active_color=\"var(--awb-color1)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" border_left=\"1px\" active_border_left=\"1px\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"45\" border_sizes_left=\"1\" border_color=\"var(--awb-color2)\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Connect with Us[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" type=\"1_4\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-headset fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"32\" iconcolor=\"var(--awb-color6)\" iconcolor_hover=\"var(--awb-color2)\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_4\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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 style=\"color: #ffffff;\">(805) 870 - 5050</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"48\" iconcolor=\"var(--awb-color2)\" iconcolor_hover=\"var(--awb-color2)\" icon=\"fa-envelope far\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color3)\"]\r\n<p style=\"color: var(--awb-color3);\">info@goodcausepartners.com</p>\r\n[/fusion_text][/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_top=\"20\"]Follow Us[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 2%),var(--awb-color7-a))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAyMCAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-22 04:09:06','2023-08-22 04:09:06','',351,'https://test-site.goodcausepartners.com/?p=1746',0,'revision','',0),(1747,1,'2023-08-22 04:10:41','2023-08-22 04:10: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=\"74\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"0\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" background_color=\"var(--awb-color8)\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\" margin_bottom=\"0\" gradient_start_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 14%),var(--awb-color5-a))\" gradient_end_color=\"var(--awb-color8)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_sizes_top=\"5px\" border_sizes_right=\"5px\" border_sizes_bottom=\"5px\" border_sizes_left=\"5px\" border_color=\"var(--awb-color6)\" padding_top=\"20px\" padding_bottom=\"20px\" padding_right=\"60px\" padding_left=\"60px\" margin_bottom=\"80px\" border_color_hover=\"hsla(var(--awb-color6-h),var(--awb-color6-s),calc(var(--awb-color6-l) + 10%),var(--awb-color6-a))\" padding_top_medium=\"40px\" padding_bottom_medium=\"40px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"75.00\" type=\"75.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\" content_align_medium=\"center\" content_align_small=\"center\"]Empower your online presence with avada hosting[/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\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 20%))\" content_alignment_medium=\"center\" content_alignment_small=\"center\"]\r\n<p>Join our list of 10M customers &amp; get a ‘45-Days Money-Back Guarantee’</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25.00\" type=\"25.00\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\" alignment=\"right\" alignment_medium=\"center\" margin_top=\"20px\" margin_bottom=\"20px\" alignment_small=\"center\"]get started[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"35\" type=\"35\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"var(--awb-color3)\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"45\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<p>Main Menu</p>\r\n[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" active_color=\"var(--awb-color1)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" border_left=\"1px\" active_border_left=\"1px\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"45\" border_sizes_left=\"1\" border_color=\"var(--awb-color2)\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Connect with Us[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" type=\"1_4\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" spacing_left=\"0\" spacing_right=\"0\" margin_top=\"0\" margin_bottom=\"0\" padding_top=\"0\" padding_right=\"0\" padding_bottom=\"0\" padding_left=\"0\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-headset fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"32\" iconcolor=\"var(--awb-color6)\" iconcolor_hover=\"var(--awb-color2)\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_4\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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 style=\"color: #ffffff;\">(805) 870 - 5050</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" type=\"1_4\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" spacing_right=\"0\" spacing_left=\"0\" margin_top=\"0\" margin_bottom=\"0\" padding_top=\"0\" padding_right=\"0\" padding_bottom=\"0\" padding_left=\"0\" min_height=\"\" link=\"\"][fusion_fontawesome spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"48\" iconcolor=\"var(--awb-color2)\" iconcolor_hover=\"var(--awb-color2)\" icon=\"fa-envelope far\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color3)\"]\r\n<p style=\"color: var(--awb-color3);\">info@goodcausepartners.com</p>\r\n[/fusion_text][/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_top=\"20\"]Follow Us[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 2%),var(--awb-color7-a))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAyMCAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-22 04:10:41','2023-08-22 04:10:41','',351,'https://test-site.goodcausepartners.com/?p=1747',0,'revision','',0),(1751,1,'2023-08-22 04:39:54','2023-08-22 04:39: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=\"74\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"0\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" background_color=\"var(--awb-color8)\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\" margin_bottom=\"0\" gradient_start_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 14%),var(--awb-color5-a))\" gradient_end_color=\"var(--awb-color8)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_sizes_top=\"5px\" border_sizes_right=\"5px\" border_sizes_bottom=\"5px\" border_sizes_left=\"5px\" border_color=\"var(--awb-color6)\" padding_top=\"20px\" padding_bottom=\"20px\" padding_right=\"60px\" padding_left=\"60px\" margin_bottom=\"80px\" border_color_hover=\"hsla(var(--awb-color6-h),var(--awb-color6-s),calc(var(--awb-color6-l) + 10%),var(--awb-color6-a))\" padding_top_medium=\"40px\" padding_bottom_medium=\"40px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"75.00\" type=\"75.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\" content_align_medium=\"center\" content_align_small=\"center\"]Empower your online presence with avada hosting[/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\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 20%))\" content_alignment_medium=\"center\" content_alignment_small=\"center\"]\r\n<p>Join our list of 10M customers &amp; get a ‘45-Days Money-Back Guarantee’</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25.00\" type=\"25.00\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\" alignment=\"right\" alignment_medium=\"center\" margin_top=\"20px\" margin_bottom=\"20px\" alignment_small=\"center\"]get started[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"35\" type=\"35\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"var(--awb-color3)\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"45\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<p>Main Menu</p>\r\n[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"var(--awb-color3)\" active_color=\"var(--awb-color1)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" border_left=\"1px\" active_border_left=\"1px\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"45\" border_sizes_left=\"1\" border_color=\"var(--awb-color2)\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Connect with Us[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_5\" type=\"1_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_top=\"5\" padding_right=\"5\" padding_bottom=\"5\" padding_left=\"5\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-headset fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"32\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color2)\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"4_5\" type=\"4_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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 style=\"color: rgb(255, 255, 255); font-size: 16px;\" data-fusion-font=\"true\">Call Good Cause</p>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_5\" type=\"1_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_top=\"5\" padding_right=\"5\" padding_bottom=\"5\" padding_left=\"5\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-envelope far\" spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"32\" iconcolor=\"var(--awb-color2)\" iconcolor_hover=\"var(--awb-color2)\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"4_5\" type=\"4_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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 style=\"color: rgb(255, 255, 255); font-size: 16px;\" data-fusion-font=\"true\">Email Good Cause</p>[/fusion_text][/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_top=\"20\"]Follow Us on Social[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"var(--awb-color1)\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 71%))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" box_border_color=\"var(--awb-color1)\" box_border_top=\"1\" box_border_right=\"1\" box_border_bottom=\"1\" box_border_left=\"1\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAyMCAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-22 04:39:54','2023-08-22 04:39:54','',351,'https://test-site.goodcausepartners.com/?p=1751',0,'revision','',0),(1748,1,'2023-08-22 04:12:04','2023-08-22 04:12: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=\"74\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"0\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" background_color=\"var(--awb-color8)\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\" margin_bottom=\"0\" gradient_start_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 14%),var(--awb-color5-a))\" gradient_end_color=\"var(--awb-color8)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_sizes_top=\"5px\" border_sizes_right=\"5px\" border_sizes_bottom=\"5px\" border_sizes_left=\"5px\" border_color=\"var(--awb-color6)\" padding_top=\"20px\" padding_bottom=\"20px\" padding_right=\"60px\" padding_left=\"60px\" margin_bottom=\"80px\" border_color_hover=\"hsla(var(--awb-color6-h),var(--awb-color6-s),calc(var(--awb-color6-l) + 10%),var(--awb-color6-a))\" padding_top_medium=\"40px\" padding_bottom_medium=\"40px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"75.00\" type=\"75.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\" content_align_medium=\"center\" content_align_small=\"center\"]Empower your online presence with avada hosting[/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\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 20%))\" content_alignment_medium=\"center\" content_alignment_small=\"center\"]\r\n<p>Join our list of 10M customers &amp; get a ‘45-Days Money-Back Guarantee’</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25.00\" type=\"25.00\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\" alignment=\"right\" alignment_medium=\"center\" margin_top=\"20px\" margin_bottom=\"20px\" alignment_small=\"center\"]get started[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"35\" type=\"35\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"var(--awb-color3)\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"45\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<p>Main Menu</p>\r\n[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" active_color=\"var(--awb-color1)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" border_left=\"1px\" active_border_left=\"1px\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"45\" border_sizes_left=\"1\" border_color=\"var(--awb-color2)\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Connect with Us[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" type=\"1_4\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" spacing_left=\"0\" spacing_right=\"0\" margin_top=\"0\" margin_bottom=\"0\" padding_top=\"0\" padding_right=\"0\" padding_bottom=\"0\" padding_left=\"0\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-headset fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"32\" iconcolor=\"var(--awb-color6)\" iconcolor_hover=\"var(--awb-color2)\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_4\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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 style=\"color: rgb(255, 255, 255); font-size: 16px;\" data-fusion-font=\"true\">(805) 870 - 5050</p>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" type=\"1_4\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" spacing_right=\"0\" spacing_left=\"0\" margin_top=\"0\" margin_bottom=\"0\" padding_top=\"0\" padding_right=\"0\" padding_bottom=\"0\" padding_left=\"0\" min_height=\"\" link=\"\"][fusion_fontawesome spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"48\" iconcolor=\"var(--awb-color2)\" iconcolor_hover=\"var(--awb-color2)\" icon=\"fa-envelope far\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color3)\"]<p style=\"color: var(--awb-color3); font-size: 16px;\" data-fusion-font=\"true\">info@goodcausepartners.com</p>[/fusion_text][/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_top=\"20\"]Follow Us[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 2%),var(--awb-color7-a))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAyMCAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-22 04:12:04','2023-08-22 04:12:04','',351,'https://test-site.goodcausepartners.com/?p=1748',0,'revision','',0),(1750,1,'2023-08-22 04:36:05','2023-08-22 04:36: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=\"74\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"0\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" background_color=\"var(--awb-color8)\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\" margin_bottom=\"0\" gradient_start_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 14%),var(--awb-color5-a))\" gradient_end_color=\"var(--awb-color8)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_sizes_top=\"5px\" border_sizes_right=\"5px\" border_sizes_bottom=\"5px\" border_sizes_left=\"5px\" border_color=\"var(--awb-color6)\" padding_top=\"20px\" padding_bottom=\"20px\" padding_right=\"60px\" padding_left=\"60px\" margin_bottom=\"80px\" border_color_hover=\"hsla(var(--awb-color6-h),var(--awb-color6-s),calc(var(--awb-color6-l) + 10%),var(--awb-color6-a))\" padding_top_medium=\"40px\" padding_bottom_medium=\"40px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"75.00\" type=\"75.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\" content_align_medium=\"center\" content_align_small=\"center\"]Empower your online presence with avada hosting[/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\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 20%))\" content_alignment_medium=\"center\" content_alignment_small=\"center\"]\r\n<p>Join our list of 10M customers &amp; get a ‘45-Days Money-Back Guarantee’</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25.00\" type=\"25.00\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\" alignment=\"right\" alignment_medium=\"center\" margin_top=\"20px\" margin_bottom=\"20px\" alignment_small=\"center\"]get started[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"35\" type=\"35\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"var(--awb-color3)\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"45\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<p>Main Menu</p>\r\n[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" active_color=\"var(--awb-color1)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" border_left=\"1px\" active_border_left=\"1px\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"45\" border_sizes_left=\"1\" border_color=\"var(--awb-color2)\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Connect with Us[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_5\" type=\"1_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_top=\"5\" padding_right=\"5\" padding_bottom=\"5\" padding_left=\"5\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-headset fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"32\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color2)\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"4_5\" type=\"4_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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 style=\"color: rgb(255, 255, 255); font-size: 16px;\" data-fusion-font=\"true\">Call Good Cause</p>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_5\" type=\"1_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_top=\"5\" padding_right=\"5\" padding_bottom=\"5\" padding_left=\"5\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-envelope far\" spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"32\" iconcolor=\"var(--awb-color2)\" iconcolor_hover=\"var(--awb-color2)\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"4_5\" type=\"4_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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 style=\"color: rgb(255, 255, 255); font-size: 16px;\" data-fusion-font=\"true\">Email Good Cause</p>[/fusion_text][/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_top=\"20\"]Follow Us on Social[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"var(--awb-color1)\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 71%))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" box_border_color=\"var(--awb-color1)\" box_border_top=\"1\" box_border_right=\"1\" box_border_bottom=\"1\" box_border_left=\"1\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAyMCAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-22 04:36:05','2023-08-22 04:36:05','',351,'https://test-site.goodcausepartners.com/?p=1750',0,'revision','',0);
INSERT INTO `wp_gc2023posts` VALUES (1749,1,'2023-08-22 04:21:56','2023-08-22 04:21: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=\"74\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"0\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" background_color=\"var(--awb-color8)\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\" margin_bottom=\"0\" gradient_start_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 14%),var(--awb-color5-a))\" gradient_end_color=\"var(--awb-color8)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_sizes_top=\"5px\" border_sizes_right=\"5px\" border_sizes_bottom=\"5px\" border_sizes_left=\"5px\" border_color=\"var(--awb-color6)\" padding_top=\"20px\" padding_bottom=\"20px\" padding_right=\"60px\" padding_left=\"60px\" margin_bottom=\"80px\" border_color_hover=\"hsla(var(--awb-color6-h),var(--awb-color6-s),calc(var(--awb-color6-l) + 10%),var(--awb-color6-a))\" padding_top_medium=\"40px\" padding_bottom_medium=\"40px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"75.00\" type=\"75.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\" content_align_medium=\"center\" content_align_small=\"center\"]Empower your online presence with avada hosting[/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\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 20%))\" content_alignment_medium=\"center\" content_alignment_small=\"center\"]\r\n<p>Join our list of 10M customers &amp; get a ‘45-Days Money-Back Guarantee’</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25.00\" type=\"25.00\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\" alignment=\"right\" alignment_medium=\"center\" margin_top=\"20px\" margin_bottom=\"20px\" alignment_small=\"center\"]get started[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"35\" type=\"35\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"var(--awb-color3)\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"45\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<p>Main Menu</p>\r\n[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" active_color=\"var(--awb-color1)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" border_left=\"1px\" active_border_left=\"1px\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"45\" border_sizes_left=\"1\" border_color=\"var(--awb-color2)\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Connect with Us[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_5\" type=\"1_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_top=\"5\" padding_right=\"5\" padding_bottom=\"5\" padding_left=\"5\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-headset fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"32\" iconcolor=\"var(--awb-color6)\" iconcolor_hover=\"var(--awb-color2)\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"4_5\" type=\"4_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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 style=\"color: rgb(255, 255, 255); font-size: 16px;\" data-fusion-font=\"true\">(805) 870 - 5050</p>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_5\" type=\"1_5\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_top=\"5\" padding_right=\"5\" padding_bottom=\"5\" padding_left=\"5\" spacing_left=\"0\" spacing_right=\"0\" margin_top=\"0\" margin_bottom=\"0\" min_height=\"\" link=\"\"][fusion_fontawesome spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"26\" iconcolor=\"var(--awb-color2)\" iconcolor_hover=\"var(--awb-color2)\" icon=\"fa-envelope far\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"4_5\" type=\"4_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_top=\"20\" padding_right=\"5\" padding_bottom=\"5\" padding_left=\"5\" spacing_left=\"0\" spacing_right=\"0\" margin_top=\"0\" margin_bottom=\"0\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color3)\"]<p style=\"color: var(--awb-color3); font-size: 16px;\" data-fusion-font=\"true\">info@goodcausepartners.com</p>[/fusion_text][/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_top=\"20\"]Follow Us[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 2%),var(--awb-color7-a))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAyMCAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-22 04:21:56','2023-08-22 04:21:56','',351,'https://test-site.goodcausepartners.com/?p=1749',0,'revision','',0),(1754,1,'2023-08-22 04:50:47','2023-08-22 04:50: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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"45\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Case Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"true\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\n<ul>\n<li>Branding</li>\n<li>Marketing &amp; Communications</li>\n<li>Digital &amp; Social</li>\n<li>Partnerships &amp; Community Engagement </li></ul>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" 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\"]Learn About Our Services[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"2\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" 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\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_right=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-22 04:50:47','2023-08-22 04:50:47','',1647,'https://test-site.goodcausepartners.com/?p=1754',0,'revision','',0),(1755,1,'2023-08-22 04:52:45','2023-08-22 04:52: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=\"74\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"0\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" background_color=\"var(--awb-color8)\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\" margin_bottom=\"0\" gradient_start_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 14%),var(--awb-color5-a))\" gradient_end_color=\"var(--awb-color8)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_sizes_top=\"5px\" border_sizes_right=\"5px\" border_sizes_bottom=\"5px\" border_sizes_left=\"5px\" border_color=\"var(--awb-color6)\" padding_top=\"20px\" padding_bottom=\"20px\" padding_right=\"60px\" padding_left=\"60px\" margin_bottom=\"80px\" border_color_hover=\"hsla(var(--awb-color6-h),var(--awb-color6-s),calc(var(--awb-color6-l) + 10%),var(--awb-color6-a))\" padding_top_medium=\"40px\" padding_bottom_medium=\"40px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"75.00\" type=\"75.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\" content_align_medium=\"center\" content_align_small=\"center\"]Empower your online presence with avada hosting[/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\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 20%))\" content_alignment_medium=\"center\" content_alignment_small=\"center\"]\r\n<p>Join our list of 10M customers &amp; get a ‘45-Days Money-Back Guarantee’</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25.00\" type=\"25.00\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\" alignment=\"right\" alignment_medium=\"center\" margin_top=\"20px\" margin_bottom=\"20px\" alignment_small=\"center\"]get started[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"35\" type=\"35\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"45\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<p>Main Menu</p>\r\n[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"var(--awb-color3)\" active_color=\"var(--awb-color1)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" border_left=\"1px\" active_border_left=\"1px\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"45\" border_sizes_left=\"1\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Connect with Us[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_5\" type=\"1_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_top=\"5\" padding_right=\"5\" padding_bottom=\"5\" padding_left=\"5\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-headset fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"32\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color2)\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"4_5\" type=\"4_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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 style=\"color: rgb(255, 255, 255); font-size: 16px;\" data-fusion-font=\"true\">Call Good Cause</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_5\" type=\"1_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_top=\"5\" padding_right=\"5\" padding_bottom=\"5\" padding_left=\"5\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-envelope far\" spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"32\" iconcolor=\"var(--awb-color2)\" iconcolor_hover=\"var(--awb-color2)\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"4_5\" type=\"4_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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 style=\"color: rgb(255, 255, 255); font-size: 16px;\" data-fusion-font=\"true\">Email Good Cause</p>\r\n[/fusion_text][/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_top=\"20\"]Follow Us on Social[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"var(--awb-color1)\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 71%))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" box_border_color=\"var(--awb-color1)\" box_border_top=\"1\" box_border_right=\"1\" box_border_bottom=\"1\" box_border_left=\"1\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAyMCAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-22 04:52:45','2023-08-22 04:52:45','',351,'https://test-site.goodcausepartners.com/?p=1755',0,'revision','',0),(1756,1,'2023-08-23 07:14:32','2023-08-22 04:53:38',' ','','','publish','closed','closed','','1756','','','2023-08-23 07:14:32','2023-08-23 07:14:32','',0,'https://test-site.goodcausepartners.com/?p=1756',2,'nav_menu_item','',0),(1761,1,'2023-08-22 04:59:41','2023-08-22 04:59: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" admin_toggled=\"yes\"][fusion_builder_row][fusion_builder_column 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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]Our Services[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Tailored Solutions for a Digital World</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n\r\nIn an ever-evolving digital age, effective marketing is both an art and a science. At Good Cause Marketing Partners, we merge creativity with data-driven strategies to bring you comprehensive services tailored for the unique contours of today\'s business and nonprofit landscapes. Whether you\'re looking to amplify your brand, connect with your audience, or catalyze social impact, our suite of services has been meticulously designed to guide you every step of the way. Dive in to discover how we can elevate your mission and transform your vision into tangible results.\r\n\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_bottom=\"55\" admin_toggled=\"yes\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_content_boxes layout=\"icon-on-side\" columns=\"2\" heading_size=\"2\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_color=\"var(--awb-color6)\" iconcolor=\"var(--awb-color6)\" icon_circle=\"no\" icon_size=\"61\"][fusion_content_box title=\"Brand Positioning &amp; Development\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-heart far\"]\r\n\r\nWe focus on understanding and capturing the core essence of your organization. This process helps in building and positioning a brand that is both genuine and distinct in a highly competitive market.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Creative Design\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-paint-brush fas\"]\r\n\r\nOur design team works to create visuals that genuinely represent an organization\'s message and brand essence.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Market Strategy\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullseye fas\"]\r\n\r\nOur approach considers the nuances of market dynamics. By crafting strategies tailored to specific needs, we aim to help organizations navigate their sector and connect with their desired audience.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Visual Identity Systems\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-image far\"]\r\n\r\nA consistent brand image is crucial. We work on developing visual identity systems that maintain brand recognition across various platforms and touchpoints.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Research\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-book-reader fas\"]\r\n\r\nThrough methodical research, we gather valuable insights about market trends, competitors, and potential audience behaviors. This information forms the foundation for our decision-making processes and strategic planning.\r\n\r\n[/fusion_content_box][fusion_content_box animation_direction=\"left\" animation_speed=\"0.3\" title=\"Digital Marketing\" icon=\"fa-globe fas\"]In the evolving digital age, we customize strategies in areas like SEO and PPC to help organizations maintain a strong online presence and connect with their audience.[/fusion_content_box][fusion_content_box title=\"Communications\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullhorn fas\"]\r\n\r\nWe prioritize clear and consistent communication, ensuring that both internal and external messages align with the brand\'s voice and values.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Traditional Advertising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-newspaper fas\"]\r\n\r\nUsing classic advertising mediums, such as television, print, and radio, we develop campaigns that authentically communicate an organization\'s message to a broader audience.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Public Relations &amp; Crisis Management\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-first-aid fas\"]\r\n\r\nOur team is equipped to manage public relations, emphasizing the positive aspects of a brand. Additionally, during challenging situations, we prioritize maintaining brand integrity and reputation.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Photo / Video Production\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-camera fas\"]\r\n\r\nVisual storytelling is powerful. Our team focuses on producing photo and video content that genuinely encapsulates an organization\'s narrative, helping to foster deeper connections with its audience.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Fundraising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-hand-holding-usd fas\"]\r\n\r\nResource acquisition is crucial for any initiative. We utilize both traditional and innovative methods to gather support, ensuring that projects and campaigns are adequately funded.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Social &amp; Mobile Marketing\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-comment fas\"]\r\n\r\nOur efforts in social and mobile marketing aim to ensure organizations are actively participating in relevant digital discussions, reaching their audience on platforms they frequently use.\r\n\r\n[/fusion_content_box][fusion_content_box title=\"Strategic Partnerships\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-handshake fas\"]We believe in the value of collaboration. By identifying and managing partnerships that align with a brand\'s ethos, we aim to enrich its presence and impact.[/fusion_content_box][fusion_content_box title=\"Collateral Production &amp; Development\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-map fas\"]We oversee the production and development of various collateral items, ensuring each piece aligns with the brand\'s image and communicates its message effectively.[/fusion_content_box][fusion_content_box title=\"Community Engagement\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-user-friends fas\"]\r\n\r\nEngaging with the community is essential. We focus on building strategies that allow organizations to foster meaningful relationships within their community, ensuring active and beneficial participation.\r\n\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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"6\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"115%\" pattern_bg_color=\"var(--awb-color1)\" admin_toggled=\"yes\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Process[/fusion_title][fusion_text columns=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<b>Good Cause Marketing Partners</b> harmoniously blends the analytical rigor of the left brain with the creative intuition of the right. This symbiotic approach enables us to deliver a suite of high-impact, integrated services that not only resonate emotionally but are also grounded in data-driven insights. It\'s where imaginative storytelling meets strategic precision, ensuring that every campaign is both evocative and effective.\r\n\r\nEmbarking on a marketing journey requires a clear roadmap and unwavering commitment. Our five-phase approach ensures that the journey is transparent, collaborative, and always tailored to your objectives. Every step is designed with teamwork and continuous learning at the heart, assuring that our strategies are closely aligned with your aspirations.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Feature Section 1\" padding_top=\"65\" padding_bottom=\"20\" admin_toggled=\"yes\"][fusion_builder_row][fusion_builder_column 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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Our Collaborations: A Spectrum of Industries &amp; Experiences[/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\" margin_bottom=\"0\"]\r\n\r\nAt Good Cause Marketing Partners, we believe in the power of collaboration, recognizing that our most transformative work often emerges from synergistic relationships with our esteemed partners. Over the years, we\'ve had the privilege of joining forces with diverse industries and dynamic companies, each bringing unique challenges and opportunities. Join us in celebrating these alliances that have not only shaped our journey but have also paved the way for innovative breakthroughs in the world of integrated marketing.\r\n\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"30\" margin_top=\"0\" flex_column_spacing=\"0\" padding_bottom=\"75\" admin_toggled=\"yes\"][fusion_builder_row][fusion_builder_column 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n\r\nCommercial Products\r\n\r\n[/fusion_li_item][fusion_li_item]\r\n\r\nEducation &amp; Higher Education\r\n\r\n[/fusion_li_item][fusion_li_item]\r\n\r\nFinancial Planning\r\n\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n\r\nNonprofits\r\n\r\n[/fusion_li_item][fusion_li_item]\r\n\r\nReal Estate\r\n\r\n[/fusion_li_item][fusion_li_item]\r\n\r\nSports and Entertainment\r\n\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"false\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n\r\nTelevision &amp; Radio\r\n\r\n[/fusion_li_item][fusion_li_item]\r\n\r\nWinery &amp; Hospitality\r\n\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Feature Section 1\" padding_top=\"65\" padding_bottom=\"20\" admin_toggled=\"yes\"][fusion_builder_row][fusion_builder_column 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" layout=\"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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Grow Your Brand for Good[/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\" margin_bottom=\"25\"]\r\n\r\nDiscover the difference of a strategy that merges creativity with precision. Start your transformation journey with Good Cause Marketing Partners.\r\n\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Let\'s Get Started[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','What We Do','','inherit','closed','closed','','1723-revision-v1','','','2023-08-22 04:59:41','2023-08-22 04:59:41','',1723,'https://test-site.goodcausepartners.com/?p=1761',0,'revision','',0),(1763,1,'2023-08-22 05:02:35','2023-08-22 05:02:35','[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=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"60px\" admin_label=\"Contact - Mobile\" padding_bottom=\"40px\" border_sizes_top=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" admin_toggled=\"yes\" ][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" type_medium=\"1_1\" margin_bottom_medium=\"40px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"30px\" margin_bottom=\"0\" margin_top=\"0\" text_transform=\"capitalize\" content_align_medium=\"center\"]<strong>need help? get in touch</strong>[/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\" margin_bottom=\"0\" content_alignment_medium=\"center\"]\r\n\r\nSint duire taque aute galisum repudas\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" type_small=\"1_1\" margin_bottom_small=\"20px\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" layout=\"1_4\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_5\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-email\" spin=\"no\" linktarget=\"_self\" bg_size=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"22\" circle=\"yes\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" layout=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left=\"5px\" padding_top=\"5px\" type_small=\"4_5\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color4)\"]Support Email[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"24px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\"]<strong><a href=\"#\">Send @ Email</a></strong>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" type_small=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" layout=\"1_4\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_5\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-chat\" spin=\"no\" linktarget=\"_self\" bg_size=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"26\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" layout=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left=\"5px\" padding_top=\"5px\" type_small=\"4_5\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color4)\"]talk to our agent[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"24px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\"]<strong><a href=\"#\">Live Chat Now</a></strong>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Footer CTA - Mobile','','inherit','closed','closed','','1097-revision-v1','','','2023-08-22 05:02:35','2023-08-22 05:02:35','',1097,'https://test-site.goodcausepartners.com/?p=1763',0,'revision','',0),(1769,1,'2023-08-22 15:08:56','2023-08-22 15:08: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" admin_toggled=\"yes\"][fusion_builder_row][fusion_builder_column 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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]About Good Cause Marketing Partners[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Where Passion for Effective Marketing Meets Dedication to Societal Impact</span></p>\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\n\nAt Good Cause Marketing Partners, we stand proud as a leading boutique integrated marketing communications agency, tailor-made for the unique demands of both businesses and nonprofits. Our vision is crystallized in our relentless pursuit to weave compelling narratives that enhance visibility and foster growth.\n\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore Our Services[/fusion_button][/fusion_builder_column][fusion_builder_column 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\" admin_toggled=\"yes\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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=\"center\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"40\"]Our Expertise Spans a Range of Specialized Areas[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-smartphone\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Strategy[/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\" content_alignment=\"center\"]\n\nCrafting bespoke blueprints and roadmaps for success.\n\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-cloud-hosting\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Branding[/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\" content_alignment=\"center\"]\n\nShaping identities that capture attention, resonate, and linger.\n\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Marketing[/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\" content_alignment=\"center\"]Creating campaigns that target and persuade audiences.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\" padding_bottom=\"65\" admin_toggled=\"yes\"][fusion_builder_row][fusion_builder_column type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-smartphone\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Communications[/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\" content_alignment=\"center\"]\n\nRefining and sharing stories that matter to your audience.\n\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-cloud-hosting\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Digital[/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\" content_alignment=\"center\"]\n\nHarnessing the virtual sphere for tangible results.\n\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_3\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Parnerships &amp; Community[/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\" content_alignment=\"center\"]\n\nConnecting and collaborating for amplified impact.\n\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" admin_toggled=\"yes\"][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=\"\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Approach at Good Cause Marketing Partners[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"true\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\n\nEvery collaboration with <b>Good Cause Marketing Partners</b> promises a holistic approach. We are not just about marketing; we are about creating a ripple effect. Through meticulous positioning and strategy, we endeavor to shape public perceptions, stir emotions, and encourage actions that resonate with your brand values.\n\nOur philosophy for every project is underpinned by three cardinal principles:\n<ol>\n 	<li><b>Unified Brand Experience</b>: Enable brands to be consistent, recognizable, and memorable.</li>\n 	<li><b>Vision-Driven Community Building</b>: Construct a brand community that rallies around a shared vision.</li>\n 	<li><b>Strategic Enterprise Framework</b>: Architect a consolidated marketing framework that aligns seamlessly with a company’s ethos.</li>\n</ol>\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\n\nThe heart of any organization lies in its mission and vision. Recognizing this, we ensure all branding, marketing, and communication endeavors are tuned to echo these sentiments. As guardians of your brand, we understand the nuances of modern consumers, who are as invested in a company\'s ethos as they are in its offerings. This understanding drives us to craft each communication piece as an ambassador of your brand\'s core messages.\n\nIn an era dominated by information overload, we champion the art of timely and relevant messaging, reaching out to audiences precisely when and where they should be reached. Transparency, continuous learning, and unwavering accountability guide our every move, ensuring our strategies are not just efficient but progressively innovative.\n\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\" admin_toggled=\"yes\"][fusion_builder_row][fusion_builder_column 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column 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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Let\'s Craft Your Story Together[/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\" margin_bottom=\"0\"]\n\nEvery brand has a unique narrative, and every cause has the power to impact. With Good Cause Marketing Partners and the expertise of seasoned professionals like Matt Midura, you’re not just getting a marketing campaign; you’re gaining a dedicated partner in sharing your story with the world. Dive into a partnership where passion, expertise, and genuine commitment come together to create waves of change.\n\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]Connect with Us Today[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','Who We Are','','inherit','closed','closed','','1068-autosave-v1','','','2023-08-22 15:08:56','2023-08-22 15:08:56','',1068,'https://test-site.goodcausepartners.com/?p=1769',0,'revision','',0),(1764,1,'2023-08-22 05:10:12','2023-08-22 05:10:12','[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=\"center\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"60px\" admin_label=\"Contact - Mobile\" padding_bottom=\"40px\" border_sizes_top=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" admin_toggled=\"yes\" ][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" type_medium=\"1_1\" margin_bottom_medium=\"40px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" font_size=\"30px\" margin_bottom=\"0\" margin_top=\"0\" text_transform=\"capitalize\" content_align_medium=\"center\"]<strong>need help? get in touch</strong>[/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\" margin_bottom=\"0\" content_alignment_medium=\"center\"]\r\n<p>Sint duire taque aute galisum repudas</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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" type_small=\"1_1\" margin_bottom_small=\"20px\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" type=\"1_4\" layout=\"1_4\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_5\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-email\" spin=\"no\" linktarget=\"_self\" bg_size=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"22\" circle=\"yes\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_4\" layout=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left=\"5px\" padding_top=\"5px\" type_small=\"4_5\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color4)\"]Support Email[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"24px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\"]<strong><a href=\"#\">Send @ Email</a></strong>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" type_small=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_4\" type=\"1_4\" layout=\"1_4\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_5\" first=\"true\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-chat\" spin=\"no\" linktarget=\"_self\" bg_size=\"54\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"26\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"3_4\" type=\"3_4\" layout=\"3_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left=\"5px\" padding_top=\"5px\" type_small=\"4_5\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"capitalize\" text_color=\"var(--awb-color4)\"]talk to our agent[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"24px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" line_height=\"0\"]<strong><a href=\"#\">Live Chat Now</a></strong>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Footer CTA - Mobile','','inherit','closed','closed','','1097-revision-v1','','','2023-08-22 05:10:12','2023-08-22 05:10:12','',1097,'https://test-site.goodcausepartners.com/?p=1764',0,'revision','',0),(1823,1,'2023-08-22 19:41:03','2023-08-22 19:41: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\" 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\" margin_top=\"100px\" admin_label=\"Introduction\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" admin_toggled=\"yes\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]Our Services[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Tailored Solutions for a Digital World</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>In an ever-evolving digital age, effective marketing is both an art and a science. At Good Cause Marketing Partners, we merge creativity with data-driven strategies to bring you comprehensive services tailored for the unique contours of today\'s business and nonprofit landscapes. Whether you\'re looking to amplify your brand, connect with your audience, or catalyze social impact, our suite of services has been meticulously designed to guide you every step of the way. Dive in to discover how we can elevate your mission and transform your vision into tangible results.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1817|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/whatwedo-top.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_bottom=\"55\" admin_toggled=\"yes\" admin_label=\"Service List\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_content_boxes layout=\"icon-on-side\" columns=\"2\" heading_size=\"2\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_color=\"var(--awb-color6)\" iconcolor=\"var(--awb-color5)\" icon_circle=\"no\" icon_size=\"61\"][fusion_content_box title=\"Brand Positioning &amp; Development\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-heart far\"]\r\n<p>We focus on understanding and capturing the core essence of your organization. This process helps in building and positioning a brand that is both genuine and distinct in a highly competitive market.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Creative Design\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-paint-brush fas\"]\r\n<p>Our design team works to create visuals that genuinely represent an organization\'s message and brand essence.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Market Strategy\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullseye fas\"]\r\n<p>Our approach considers the nuances of market dynamics. By crafting strategies tailored to specific needs, we aim to help organizations navigate their sector and connect with their desired audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Visual Identity Systems\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-image far\"]\r\n<p>A consistent brand image is crucial. We work on developing visual identity systems that maintain brand recognition across various platforms and touchpoints.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Research\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-book-reader fas\"]\r\n<p>Through methodical research, we gather valuable insights about market trends, competitors, and potential audience behaviors. This information forms the foundation for our decision-making processes and strategic planning.</p>\r\n[/fusion_content_box][fusion_content_box animation_direction=\"left\" animation_speed=\"0.3\" title=\"Digital Marketing\" icon=\"fa-globe fas\"]In the evolving digital age, we customize strategies in areas like SEO and PPC to help organizations maintain a strong online presence and connect with their audience.[/fusion_content_box][fusion_content_box title=\"Communications\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullhorn fas\"]\r\n<p>We prioritize clear and consistent communication, ensuring that both internal and external messages align with the brand\'s voice and values.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Traditional Advertising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-newspaper fas\"]\r\n<p>Using classic advertising mediums, such as television, print, and radio, we develop campaigns that authentically communicate an organization\'s message to a broader audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Public Relations &amp; Crisis Management\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-first-aid fas\"]\r\n<p>Our team is equipped to manage public relations, emphasizing the positive aspects of a brand. Additionally, during challenging situations, we prioritize maintaining brand integrity and reputation.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Photo / Video Production\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-camera fas\"]\r\n<p>Visual storytelling is powerful. Our team focuses on producing photo and video content that genuinely encapsulates an organization\'s narrative, helping to foster deeper connections with its audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Fundraising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-hand-holding-usd fas\"]\r\n<p>Resource acquisition is crucial for any initiative. We utilize both traditional and innovative methods to gather support, ensuring that projects and campaigns are adequately funded.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Social &amp; Mobile Marketing\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-comment fas\"]\r\n<p>Our efforts in social and mobile marketing aim to ensure organizations are actively participating in relevant digital discussions, reaching their audience on platforms they frequently use.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Strategic Partnerships\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-handshake fas\"]We believe in the value of collaboration. By identifying and managing partnerships that align with a brand\'s ethos, we aim to enrich its presence and impact.[/fusion_content_box][fusion_content_box title=\"Collateral Production &amp; Development\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-map fas\"]We oversee the production and development of various collateral items, ensuring each piece aligns with the brand\'s image and communicates its message effectively.[/fusion_content_box][fusion_content_box title=\"Community Engagement\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-user-friends fas\"]\r\n<p>Engaging with the community is essential. We focus on building strategies that allow organizations to foster meaningful relationships within their community, ensuring active and beneficial participation.</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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"6\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Our Process\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"115%\" pattern_bg_color=\"var(--awb-color1)\" admin_toggled=\"yes\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Process[/fusion_title][fusion_text columns=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<b>Good Cause Marketing Partners</b> harmoniously blends the analytical rigor of the left brain with the creative intuition of the right. This symbiotic approach enables us to deliver a suite of high-impact, integrated services that not only resonate emotionally but are also grounded in data-driven insights. It\'s where imaginative storytelling meets strategic precision, ensuring that every campaign is both evocative and effective.</p>\r\n<p>Embarking on a marketing journey requires a clear roadmap and unwavering commitment. Our five-phase approach ensures that the journey is transparent, collaborative, and always tailored to your objectives. Every step is designed with teamwork and continuous learning at the heart, assuring that our strategies are closely aligned with your aspirations.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Our Collaborations\" padding_top=\"65\" padding_bottom=\"20\" admin_toggled=\"yes\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Our Collaborations: A Spectrum of Industries &amp; Experiences[/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\" margin_bottom=\"0\"]\r\n<p>At Good Cause Marketing Partners, we believe in the power of collaboration, recognizing that our most transformative work often emerges from synergistic relationships with our esteemed partners. Over the years, we\'ve had the privilege of joining forces with diverse industries and dynamic companies, each bringing unique challenges and opportunities. Join us in celebrating these alliances that have not only shaped our journey but have also paved the way for innovative breakthroughs in the world of integrated marketing.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1814|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/whatwedo-comp2.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"30\" margin_top=\"0\" flex_column_spacing=\"0\" padding_bottom=\"75\" admin_toggled=\"yes\" admin_label=\"Collaborations - Industries\"][fusion_builder_row][fusion_builder_column type=\"30\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Commercial Products</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Education &amp; Higher Education</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Financial Planning</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"30\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Nonprofits</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Real Estate</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Sports and Entertainment</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"30\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Television &amp; Radio</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Winery &amp; Hospitality</p>\r\n[/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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Services CTA\" padding_top=\"65\" padding_bottom=\"65\" admin_toggled=\"yes\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1815|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/whatwedo-comp3.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Grow Your Brand for Good[/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\" margin_bottom=\"25\"]\r\n<p>Discover the difference of a strategy that merges creativity with precision. Start your transformation journey with Good Cause Marketing Partners.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Let\'s Get Started[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','What We Do','','inherit','closed','closed','','1723-revision-v1','','','2023-08-22 19:41:03','2023-08-22 19:41:03','',1723,'https://test-site.goodcausepartners.com/?p=1823',0,'revision','',0),(1765,1,'2023-08-22 05:10:12','2023-08-22 05:10: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\" 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\" margin_top=\"100px\" admin_label=\"Introduction\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" admin_toggled=\"yes\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]Our Services[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Tailored Solutions for a Digital World</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>In an ever-evolving digital age, effective marketing is both an art and a science. At Good Cause Marketing Partners, we merge creativity with data-driven strategies to bring you comprehensive services tailored for the unique contours of today\'s business and nonprofit landscapes. Whether you\'re looking to amplify your brand, connect with your audience, or catalyze social impact, our suite of services has been meticulously designed to guide you every step of the way. Dive in to discover how we can elevate your mission and transform your vision into tangible results.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_bottom=\"55\" admin_toggled=\"yes\" admin_label=\"Service List\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_content_boxes layout=\"icon-on-side\" columns=\"2\" heading_size=\"2\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_color=\"var(--awb-color6)\" iconcolor=\"var(--awb-color6)\" icon_circle=\"no\" icon_size=\"61\"][fusion_content_box title=\"Brand Positioning &amp; Development\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-heart far\"]\r\n<p>We focus on understanding and capturing the core essence of your organization. This process helps in building and positioning a brand that is both genuine and distinct in a highly competitive market.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Creative Design\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-paint-brush fas\"]\r\n<p>Our design team works to create visuals that genuinely represent an organization\'s message and brand essence.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Market Strategy\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullseye fas\"]\r\n<p>Our approach considers the nuances of market dynamics. By crafting strategies tailored to specific needs, we aim to help organizations navigate their sector and connect with their desired audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Visual Identity Systems\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-image far\"]\r\n<p>A consistent brand image is crucial. We work on developing visual identity systems that maintain brand recognition across various platforms and touchpoints.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Research\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-book-reader fas\"]\r\n<p>Through methodical research, we gather valuable insights about market trends, competitors, and potential audience behaviors. This information forms the foundation for our decision-making processes and strategic planning.</p>\r\n[/fusion_content_box][fusion_content_box animation_direction=\"left\" animation_speed=\"0.3\" title=\"Digital Marketing\" icon=\"fa-globe fas\"]In the evolving digital age, we customize strategies in areas like SEO and PPC to help organizations maintain a strong online presence and connect with their audience.[/fusion_content_box][fusion_content_box title=\"Communications\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullhorn fas\"]\r\n<p>We prioritize clear and consistent communication, ensuring that both internal and external messages align with the brand\'s voice and values.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Traditional Advertising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-newspaper fas\"]\r\n<p>Using classic advertising mediums, such as television, print, and radio, we develop campaigns that authentically communicate an organization\'s message to a broader audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Public Relations &amp; Crisis Management\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-first-aid fas\"]\r\n<p>Our team is equipped to manage public relations, emphasizing the positive aspects of a brand. Additionally, during challenging situations, we prioritize maintaining brand integrity and reputation.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Photo / Video Production\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-camera fas\"]\r\n<p>Visual storytelling is powerful. Our team focuses on producing photo and video content that genuinely encapsulates an organization\'s narrative, helping to foster deeper connections with its audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Fundraising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-hand-holding-usd fas\"]\r\n<p>Resource acquisition is crucial for any initiative. We utilize both traditional and innovative methods to gather support, ensuring that projects and campaigns are adequately funded.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Social &amp; Mobile Marketing\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-comment fas\"]\r\n<p>Our efforts in social and mobile marketing aim to ensure organizations are actively participating in relevant digital discussions, reaching their audience on platforms they frequently use.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Strategic Partnerships\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-handshake fas\"]We believe in the value of collaboration. By identifying and managing partnerships that align with a brand\'s ethos, we aim to enrich its presence and impact.[/fusion_content_box][fusion_content_box title=\"Collateral Production &amp; Development\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-map fas\"]We oversee the production and development of various collateral items, ensuring each piece aligns with the brand\'s image and communicates its message effectively.[/fusion_content_box][fusion_content_box title=\"Community Engagement\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-user-friends fas\"]\r\n<p>Engaging with the community is essential. We focus on building strategies that allow organizations to foster meaningful relationships within their community, ensuring active and beneficial participation.</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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"6\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Our Process\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"115%\" pattern_bg_color=\"var(--awb-color1)\" admin_toggled=\"yes\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Process[/fusion_title][fusion_text columns=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<b>Good Cause Marketing Partners</b> harmoniously blends the analytical rigor of the left brain with the creative intuition of the right. This symbiotic approach enables us to deliver a suite of high-impact, integrated services that not only resonate emotionally but are also grounded in data-driven insights. It\'s where imaginative storytelling meets strategic precision, ensuring that every campaign is both evocative and effective.</p>\r\n<p>Embarking on a marketing journey requires a clear roadmap and unwavering commitment. Our five-phase approach ensures that the journey is transparent, collaborative, and always tailored to your objectives. Every step is designed with teamwork and continuous learning at the heart, assuring that our strategies are closely aligned with your aspirations.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Our Collaborations\" padding_top=\"65\" padding_bottom=\"20\" admin_toggled=\"yes\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Our Collaborations: A Spectrum of Industries &amp; Experiences[/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\" margin_bottom=\"0\"]\r\n<p>At Good Cause Marketing Partners, we believe in the power of collaboration, recognizing that our most transformative work often emerges from synergistic relationships with our esteemed partners. Over the years, we\'ve had the privilege of joining forces with diverse industries and dynamic companies, each bringing unique challenges and opportunities. Join us in celebrating these alliances that have not only shaped our journey but have also paved the way for innovative breakthroughs in the world of integrated marketing.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"30\" margin_top=\"0\" flex_column_spacing=\"0\" padding_bottom=\"75\" admin_toggled=\"yes\" admin_label=\"Collaborations - Industries\"][fusion_builder_row][fusion_builder_column type=\"30\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Commercial Products</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Education &amp; Higher Education</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Financial Planning</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"30\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Nonprofits</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Real Estate</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Sports and Entertainment</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"30\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Television &amp; Radio</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Winery &amp; Hospitality</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Services CTA\" padding_top=\"65\" padding_bottom=\"20\" admin_toggled=\"yes\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.png[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Grow Your Brand for Good[/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\" margin_bottom=\"25\"]\r\n<p>Discover the difference of a strategy that merges creativity with precision. Start your transformation journey with Good Cause Marketing Partners.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Let\'s Get Started[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','What We Do','','inherit','closed','closed','','1723-revision-v1','','','2023-08-22 05:10:12','2023-08-22 05:10:12','',1723,'https://test-site.goodcausepartners.com/?p=1765',0,'revision','',0),(1766,1,'2023-08-22 05:13:11','2023-08-22 05:13:11','{\\\"conditions\\\":{\\\"specific_page|1004\\\":{\\\"label\\\":\\\"Hosting\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1004\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"specific_page|1068\\\":{\\\"label\\\":\\\"About\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1068\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"specific_page|1127\\\":{\\\"label\\\":\\\"Blog\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1127\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"specific_page|1270\\\":{\\\"label\\\":\\\"Contact\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1270\\\",\\\"parent\\\":\\\"specific_page\\\"}},\\\"template_terms\\\":{\\\"page_title_bar\\\":\\\"1008\\\",\\\"header\\\":\\\"12\\\"}}','Inner Pages','','inherit','closed','closed','','902-revision-v1','','','2023-08-22 05:13:11','2023-08-22 05:13:11','',902,'https://test-site.goodcausepartners.com/?p=1766',0,'revision','',0),(1767,1,'2023-08-22 05:13:49','2023-08-22 05:13:49','{\\\"conditions\\\":{\\\"specific_page|1004\\\":{\\\"label\\\":\\\"Hosting\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1004\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"specific_page|1068\\\":{\\\"label\\\":\\\"About\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1068\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"specific_page|1127\\\":{\\\"label\\\":\\\"Blog\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1127\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"specific_page|1270\\\":{\\\"label\\\":\\\"Contact\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1270\\\",\\\"parent\\\":\\\"specific_page\\\"}},\\\"template_terms\\\":{\\\"page_title_bar\\\":\\\"1008\\\",\\\"header\\\":\\\"12\\\",\\\"footer\\\":\\\"351\\\"}}','Inner Pages','','inherit','closed','closed','','902-revision-v1','','','2023-08-22 05:13:49','2023-08-22 05:13:49','',902,'https://test-site.goodcausepartners.com/?p=1767',0,'revision','',0),(1771,1,'2023-08-22 16:04:22','2023-08-22 16:04:22','{\\\"conditions\\\":{\\\"specific_page|1127\\\":{\\\"label\\\":\\\"Blog\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1127\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"specific_page|1270\\\":{\\\"label\\\":\\\"Contact\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1270\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"children_of_page|1723\\\":{\\\"label\\\":\\\"What We Do\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"children_of_page|1723\\\",\\\"parent\\\":\\\"children_of_page\\\"}},\\\"template_terms\\\":{\\\"page_title_bar\\\":\\\"1008\\\",\\\"header\\\":\\\"12\\\",\\\"footer\\\":\\\"351\\\"}}','Inner Pages','','inherit','closed','closed','','902-revision-v1','','','2023-08-22 16:04:22','2023-08-22 16:04:22','',902,'https://test-site.goodcausepartners.com/?p=1771',0,'revision','',0),(1770,1,'2023-08-22 15:57:17','2023-08-22 15:57:17','{\\\"conditions\\\":{\\\"specific_page|1068\\\":{\\\"label\\\":\\\"About\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1068\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"specific_page|1127\\\":{\\\"label\\\":\\\"Blog\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1127\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"specific_page|1270\\\":{\\\"label\\\":\\\"Contact\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1270\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"children_of_page|1723\\\":{\\\"label\\\":\\\"What We Do\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"children_of_page|1723\\\",\\\"parent\\\":\\\"children_of_page\\\"}},\\\"template_terms\\\":{\\\"page_title_bar\\\":\\\"1008\\\",\\\"header\\\":\\\"12\\\",\\\"footer\\\":\\\"351\\\"}}','Inner Pages','','inherit','closed','closed','','902-revision-v1','','','2023-08-22 15:57:17','2023-08-22 15:57:17','',902,'https://test-site.goodcausepartners.com/?p=1770',0,'revision','',0),(1768,1,'2023-08-22 05:14:17','2023-08-22 05:14:17','{\\\"conditions\\\":{\\\"specific_page|1004\\\":{\\\"label\\\":\\\"Hosting\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1004\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"specific_page|1068\\\":{\\\"label\\\":\\\"About\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1068\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"specific_page|1127\\\":{\\\"label\\\":\\\"Blog\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1127\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"specific_page|1270\\\":{\\\"label\\\":\\\"Contact\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1270\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"children_of_page|1723\\\":{\\\"label\\\":\\\"What We Do\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"children_of_page|1723\\\",\\\"parent\\\":\\\"children_of_page\\\"}},\\\"template_terms\\\":{\\\"page_title_bar\\\":\\\"1008\\\",\\\"header\\\":\\\"12\\\",\\\"footer\\\":\\\"351\\\"}}','Inner Pages','','inherit','closed','closed','','902-revision-v1','','','2023-08-22 05:14:17','2023-08-22 05:14:17','',902,'https://test-site.goodcausepartners.com/?p=1768',0,'revision','',0),(1772,1,'2023-08-22 16:04:42','2023-08-22 16:04:42','{\\\"conditions\\\":{\\\"specific_page|1127\\\":{\\\"label\\\":\\\"Blog\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1127\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"specific_page|1270\\\":{\\\"label\\\":\\\"Contact\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1270\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"children_of_page|1723\\\":{\\\"label\\\":\\\"What We Do\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"children_of_page|1723\\\",\\\"parent\\\":\\\"children_of_page\\\"},\\\"children_of_page|1068\\\":{\\\"label\\\":\\\"Who We Are\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"children_of_page|1068\\\",\\\"parent\\\":\\\"children_of_page\\\"}},\\\"template_terms\\\":{\\\"page_title_bar\\\":\\\"1008\\\",\\\"header\\\":\\\"12\\\",\\\"footer\\\":\\\"351\\\"}}','Inner Pages','','inherit','closed','closed','','902-revision-v1','','','2023-08-22 16:04:42','2023-08-22 16:04:42','',902,'https://test-site.goodcausepartners.com/?p=1772',0,'revision','',0),(1774,1,'2023-08-22 16:09:38','2023-08-22 16:09:38','{\\\"conditions\\\":{\\\"specific_page|1127\\\":{\\\"label\\\":\\\"Blog\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1127\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"specific_page|1270\\\":{\\\"label\\\":\\\"Contact\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1270\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"children_of_page|1723\\\":{\\\"label\\\":\\\"What We Do\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"children_of_page|1723\\\",\\\"parent\\\":\\\"children_of_page\\\"},\\\"children_of_page|1068\\\":{\\\"label\\\":\\\"Who We Are\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"children_of_page|1068\\\",\\\"parent\\\":\\\"children_of_page\\\"}},\\\"template_terms\\\":{\\\"page_title_bar\\\":\\\"1008\\\",\\\"header\\\":\\\"12\\\",\\\"footer\\\":\\\"351\\\"}}','Inner Pages','','inherit','closed','closed','','902-revision-v1','','','2023-08-22 16:09:38','2023-08-22 16:09:38','',902,'https://test-site.goodcausepartners.com/?p=1774',0,'revision','',0),(1773,1,'2023-08-22 16:09:32','2023-08-22 16:09:32','{\\\"conditions\\\":{\\\"specific_page|1127\\\":{\\\"label\\\":\\\"Blog\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1127\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"specific_page|1270\\\":{\\\"label\\\":\\\"Contact\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1270\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"children_of_page|1723\\\":{\\\"label\\\":\\\"What We Do\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"children_of_page|1723\\\",\\\"parent\\\":\\\"children_of_page\\\"},\\\"children_of_page|1068\\\":{\\\"label\\\":\\\"Who We Are\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"children_of_page|1068\\\",\\\"parent\\\":\\\"children_of_page\\\"},\\\"singular_page\\\":{\\\"label\\\":\\\"All Pages\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"singular_page\\\"}},\\\"template_terms\\\":{\\\"page_title_bar\\\":\\\"1008\\\",\\\"header\\\":\\\"12\\\",\\\"footer\\\":\\\"351\\\"}}','Inner Pages','','inherit','closed','closed','','902-revision-v1','','','2023-08-22 16:09:32','2023-08-22 16:09:32','',902,'https://test-site.goodcausepartners.com/?p=1773',0,'revision','',0),(1775,1,'2023-08-22 16:11:50','2023-08-22 16:11:50','{\\\"conditions\\\":{\\\"specific_page|1127\\\":{\\\"label\\\":\\\"Blog\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1127\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"specific_page|1270\\\":{\\\"label\\\":\\\"Contact\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1270\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"children_of_page|1723\\\":{\\\"label\\\":\\\"What We Do\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"children_of_page|1723\\\",\\\"parent\\\":\\\"children_of_page\\\"},\\\"children_of_page|1068\\\":{\\\"label\\\":\\\"Who We Are\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"children_of_page|1068\\\",\\\"parent\\\":\\\"children_of_page\\\"}},\\\"template_terms\\\":{\\\"page_title_bar\\\":\\\"\\\",\\\"header\\\":\\\"12\\\",\\\"footer\\\":\\\"351\\\"}}','Inner Pages','','inherit','closed','closed','','902-revision-v1','','','2023-08-22 16:11:50','2023-08-22 16:11:50','',902,'https://test-site.goodcausepartners.com/?p=1775',0,'revision','',0),(1776,1,'2023-08-22 16:12:04','2023-08-22 16:12:04','{\\\"conditions\\\":{\\\"specific_page|1127\\\":{\\\"label\\\":\\\"Blog\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1127\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"specific_page|1270\\\":{\\\"label\\\":\\\"Contact\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1270\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"children_of_page|1723\\\":{\\\"label\\\":\\\"What We Do\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"children_of_page|1723\\\",\\\"parent\\\":\\\"children_of_page\\\"},\\\"children_of_page|1068\\\":{\\\"label\\\":\\\"Who We Are\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"children_of_page|1068\\\",\\\"parent\\\":\\\"children_of_page\\\"}},\\\"template_terms\\\":{\\\"page_title_bar\\\":\\\"1008\\\",\\\"header\\\":\\\"12\\\",\\\"footer\\\":\\\"351\\\"}}','Inner Pages','','inherit','closed','closed','','902-revision-v1','','','2023-08-22 16:12:04','2023-08-22 16:12:04','',902,'https://test-site.goodcausepartners.com/?p=1776',0,'revision','',0),(1777,1,'2023-08-22 16:13:56','2023-08-22 16:13:56','{\\\"conditions\\\":{\\\"specific_page|1127\\\":{\\\"label\\\":\\\"Blog\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1127\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"specific_page|1270\\\":{\\\"label\\\":\\\"Contact\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1270\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"children_of_page|1723\\\":{\\\"label\\\":\\\"What We Do\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"children_of_page|1723\\\",\\\"parent\\\":\\\"children_of_page\\\"},\\\"children_of_page|1068\\\":{\\\"label\\\":\\\"Who We Are\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"children_of_page|1068\\\",\\\"parent\\\":\\\"children_of_page\\\"},\\\"specific_page|1723\\\":{\\\"label\\\":\\\"What We Do\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1723\\\",\\\"parent\\\":\\\"specific_page\\\"}},\\\"template_terms\\\":{\\\"page_title_bar\\\":\\\"1008\\\",\\\"header\\\":\\\"12\\\",\\\"footer\\\":\\\"351\\\"}}','Inner Pages','','inherit','closed','closed','','902-revision-v1','','','2023-08-22 16:13:56','2023-08-22 16:13:56','',902,'https://test-site.goodcausepartners.com/?p=1777',0,'revision','',0),(1778,1,'2023-08-22 16:14:12','2023-08-22 16:14:12','{\\\"conditions\\\":{\\\"specific_page|1127\\\":{\\\"label\\\":\\\"Blog\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1127\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"specific_page|1270\\\":{\\\"label\\\":\\\"Contact\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1270\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"children_of_page|1723\\\":{\\\"label\\\":\\\"What We Do\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"children_of_page|1723\\\",\\\"parent\\\":\\\"children_of_page\\\"},\\\"children_of_page|1068\\\":{\\\"label\\\":\\\"Who We Are\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"children_of_page|1068\\\",\\\"parent\\\":\\\"children_of_page\\\"},\\\"specific_page|1723\\\":{\\\"label\\\":\\\"What We Do\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1723\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"specific_page|1068\\\":{\\\"label\\\":\\\"Who We Are\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1068\\\",\\\"parent\\\":\\\"specific_page\\\"}},\\\"template_terms\\\":{\\\"page_title_bar\\\":\\\"1008\\\",\\\"header\\\":\\\"12\\\",\\\"footer\\\":\\\"351\\\"}}','Inner Pages','','inherit','closed','closed','','902-revision-v1','','','2023-08-22 16:14:12','2023-08-22 16:14:12','',902,'https://test-site.goodcausepartners.com/?p=1778',0,'revision','',0),(1779,1,'2023-08-22 16:14:15','2023-08-22 16:14:15','{\\\"conditions\\\":{\\\"specific_page|1127\\\":{\\\"label\\\":\\\"Blog\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1127\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"specific_page|1270\\\":{\\\"label\\\":\\\"Contact\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1270\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"children_of_page|1723\\\":{\\\"label\\\":\\\"What We Do\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"exclude\\\",\\\"singular\\\":\\\"children_of_page|1723\\\",\\\"parent\\\":\\\"children_of_page\\\"},\\\"children_of_page|1068\\\":{\\\"label\\\":\\\"Who We Are\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"children_of_page|1068\\\",\\\"parent\\\":\\\"children_of_page\\\"},\\\"specific_page|1723\\\":{\\\"label\\\":\\\"What We Do\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1723\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"specific_page|1068\\\":{\\\"label\\\":\\\"Who We Are\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1068\\\",\\\"parent\\\":\\\"specific_page\\\"}},\\\"template_terms\\\":{\\\"page_title_bar\\\":\\\"1008\\\",\\\"header\\\":\\\"12\\\",\\\"footer\\\":\\\"351\\\"}}','Inner Pages','','inherit','closed','closed','','902-revision-v1','','','2023-08-22 16:14:15','2023-08-22 16:14:15','',902,'https://test-site.goodcausepartners.com/?p=1779',0,'revision','',0),(1780,1,'2023-08-22 16:14:16','2023-08-22 16:14:16','{\\\"conditions\\\":{\\\"specific_page|1127\\\":{\\\"label\\\":\\\"Blog\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1127\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"specific_page|1270\\\":{\\\"label\\\":\\\"Contact\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1270\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"children_of_page|1723\\\":{\\\"label\\\":\\\"What We Do\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"exclude\\\",\\\"singular\\\":\\\"children_of_page|1723\\\",\\\"parent\\\":\\\"children_of_page\\\"},\\\"children_of_page|1068\\\":{\\\"label\\\":\\\"Who We Are\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"exclude\\\",\\\"singular\\\":\\\"children_of_page|1068\\\",\\\"parent\\\":\\\"children_of_page\\\"},\\\"specific_page|1723\\\":{\\\"label\\\":\\\"What We Do\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1723\\\",\\\"parent\\\":\\\"specific_page\\\"},\\\"specific_page|1068\\\":{\\\"label\\\":\\\"Who We Are\\\",\\\"type\\\":\\\"singular\\\",\\\"mode\\\":\\\"include\\\",\\\"singular\\\":\\\"specific_page|1068\\\",\\\"parent\\\":\\\"specific_page\\\"}},\\\"template_terms\\\":{\\\"page_title_bar\\\":\\\"1008\\\",\\\"header\\\":\\\"12\\\",\\\"footer\\\":\\\"351\\\"}}','Inner Pages','','inherit','closed','closed','','902-revision-v1','','','2023-08-22 16:14:16','2023-08-22 16:14:16','',902,'https://test-site.goodcausepartners.com/?p=1780',0,'revision','',0),(1782,1,'2023-08-22 16:21:50','2023-08-22 16:21: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]About Good Cause Marketing Partners[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Where Passion for Effective Marketing Meets Dedication to Societal Impact</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>At Good Cause Marketing Partners, we stand proud as a leading boutique integrated marketing communications agency, tailor-made for the unique demands of both businesses and nonprofits. Our vision is crystallized in our relentless pursuit to weave compelling narratives that enhance visibility and foster growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore Our Services[/fusion_button][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"40\"]Our Expertise Spans a Range of Specialized Areas[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"24\" type=\"24\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-cloud-hosting\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Strategy &amp; Branding[/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\" content_alignment=\"center\"]\r\n<p>Shaping identities that capture attention, resonate, and linger.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"23.00\" type=\"23.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Marketing &amp; Communications[/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\" content_alignment=\"center\"]Creating campaigns that target and persuade audiences.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"23.00\" type=\"23.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-cloud-hosting\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Digital &amp; Social Media[/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\" content_alignment=\"center\"]\r\n<p> Harnessing the virtual sphere for tangible results.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"28.00\" type=\"28.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-website\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Partnerships &amp; Community Engagement[/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\" content_alignment=\"center\"]\r\n<p>Connecting and collaborating for amplified impact.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Approach at Good Cause Marketing Partners[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>Every collaboration with <b>Good Cause Marketing Partners</b> promises a holistic approach. We are not just about marketing; we are about creating a ripple effect. Through meticulous positioning and strategy, we endeavor to shape public perceptions, stir emotions, and encourage actions that resonate with your brand values.</p>\r\n<p>Our philosophy for every project is underpinned by three cardinal principles:</p>\r\n<ol>\r\n<li><b>Unified Brand Experience</b>: Enable brands to be consistent, recognizable, and memorable.</li>\r\n<li><b>Vision-Driven Community Building</b>: Construct a brand community that rallies around a shared vision.</li>\r\n<li><b>Strategic Enterprise Framework</b>: Architect a consolidated marketing framework that aligns seamlessly with a company’s ethos.</li>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>The heart of any organization lies in its mission and vision. Recognizing this, we ensure all branding, marketing, and communication endeavors are tuned to echo these sentiments. As guardians of your brand, we understand the nuances of modern consumers, who are as invested in a company\'s ethos as they are in its offerings. This understanding drives us to craft each communication piece as an ambassador of your brand\'s core messages.</p>\r\n<p>In an era dominated by information overload, we champion the art of timely and relevant messaging, reaching out to audiences precisely when and where they should be reached. Transparency, continuous learning, and unwavering accountability guide our every move, ensuring our strategies are not just efficient but progressively innovative.</p>\r\n<ol>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.png[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Let\'s Craft Your Story Together[/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\" margin_bottom=\"0\"]\r\n<p>Every brand has a unique narrative, and every cause has the power to impact. With Good Cause Marketing Partners and the expertise of seasoned professionals like Matt Midura, you’re not just getting a marketing campaign; you’re gaining a dedicated partner in sharing your story with the world. Dive into a partnership where passion, expertise, and genuine commitment come together to create waves of change.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]Connect with Us Today[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','Who We Are','','inherit','closed','closed','','1068-revision-v1','','','2023-08-22 16:21:50','2023-08-22 16:21:50','',1068,'https://test-site.goodcausepartners.com/?p=1782',0,'revision','',0),(1783,1,'2023-08-22 16:25:26','2023-08-22 16:25: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=\"74\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"0\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" background_color=\"var(--awb-color8)\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\" margin_bottom=\"0\" gradient_start_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 14%),var(--awb-color5-a))\" gradient_end_color=\"var(--awb-color8)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_sizes_top=\"5px\" border_sizes_right=\"5px\" border_sizes_bottom=\"5px\" border_sizes_left=\"5px\" border_color=\"var(--awb-color6)\" padding_top=\"20px\" padding_bottom=\"20px\" padding_right=\"60px\" padding_left=\"60px\" margin_bottom=\"80px\" border_color_hover=\"hsla(var(--awb-color6-h),var(--awb-color6-s),calc(var(--awb-color6-l) + 10%),var(--awb-color6-a))\" padding_top_medium=\"40px\" padding_bottom_medium=\"40px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"75.00\" type=\"75.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\" content_align_medium=\"center\" content_align_small=\"center\"]Empower your online presence with avada hosting[/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\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 20%))\" content_alignment_medium=\"center\" content_alignment_small=\"center\"]\r\n<p>Join our list of 10M customers &amp; get a ‘45-Days Money-Back Guarantee’</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25.00\" type=\"25.00\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\" alignment=\"right\" alignment_medium=\"center\" margin_top=\"20px\" margin_bottom=\"20px\" alignment_small=\"center\"]get started[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"35\" type=\"35\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"45\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<p>Main Menu</p>\r\n[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"var(--awb-color3)\" active_color=\"var(--awb-color4)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" icons_hover_color=\"var(--awb-color4)\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"45\" border_sizes_left=\"1\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Connect with Us[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_5\" type=\"1_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_top=\"5\" padding_right=\"5\" padding_bottom=\"5\" padding_left=\"5\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-headset fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"32\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color2)\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"4_5\" type=\"4_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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 style=\"color: rgb(255, 255, 255); font-size: 16px;\" data-fusion-font=\"true\">Call Good Cause</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_5\" type=\"1_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_top=\"5\" padding_right=\"5\" padding_bottom=\"5\" padding_left=\"5\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-envelope far\" spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"32\" iconcolor=\"var(--awb-color2)\" iconcolor_hover=\"var(--awb-color2)\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"4_5\" type=\"4_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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 style=\"color: rgb(255, 255, 255); font-size: 16px;\" data-fusion-font=\"true\">Email Good Cause</p>\r\n[/fusion_text][/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_top=\"20\"]Follow Us on Social[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"var(--awb-color1)\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 71%))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" box_border_color=\"var(--awb-color1)\" box_border_top=\"1\" box_border_right=\"1\" box_border_bottom=\"1\" box_border_left=\"1\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAyMCAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-22 16:25:26','2023-08-22 16:25:26','',351,'https://test-site.goodcausepartners.com/?p=1783',0,'revision','',0),(1784,1,'2023-08-22 16:29:52','2023-08-22 16:29:52','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"45\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Case Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"true\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n<ul>\r\n<li>Branding</li>\r\n<li>Marketing &amp; Communications</li>\r\n<li>Digital &amp; Social</li>\r\n<li>Partnerships &amp; Community Engagement </li>\r\n</ul>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn About Our Services[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"2\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" 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\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/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_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_right=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-22 16:29:52','2023-08-22 16:29:52','',1647,'https://test-site.goodcausepartners.com/?p=1784',0,'revision','',0),(1785,1,'2023-08-22 16:49:39','2023-08-22 16:49:39','','brain-400x447','','inherit','open','closed','','brain-400x447','','','2023-08-22 16:49:39','2023-08-22 16:49:39','',0,'https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/brain-400x447-1.png',0,'attachment','image/png',0),(1786,1,'2023-08-22 16:50:01','2023-08-22 16:50:01','','brain','','inherit','open','closed','','brain','','','2023-08-22 16:50:01','2023-08-22 16:50:01','',0,'https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/brain.webp',0,'attachment','image/webp',0),(1788,1,'2023-08-22 16:50:25','2023-08-22 16:50:25','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"45\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Case Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"true\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" 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=\"1786|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/brain.webp[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n<ul>\r\n<li>Branding</li>\r\n<li>Marketing &amp; Communications</li>\r\n<li>Digital &amp; Social</li>\r\n<li>Partnerships &amp; Community Engagement </li>\r\n</ul>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Learn About Our Services[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"2\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" 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\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/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\" 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\" flex_wrap=\"wrap\" 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\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"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=\"\" 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\"][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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" 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\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" 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_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" 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_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" logics=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Your Content Goes Here[/fusion_text][fusion_form form_post_id=\"1695\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_right=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-22 16:50:25','2023-08-22 16:50:25','',1647,'https://test-site.goodcausepartners.com/?p=1788',0,'revision','',0),(1801,1,'2023-08-22 17:18:52','2023-08-22 17:18:52','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"45\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Case Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"true\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1786|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/brain.webp[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n<ul>\r\n<li>Branding</li>\r\n<li>Marketing &amp; Communications</li>\r\n<li>Digital &amp; Social</li>\r\n<li>Partnerships &amp; Community Engagement </li>\r\n</ul>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Learn About Our Services[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"2\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" 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\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"80\" padding_bottom=\"80\" background_color=\"var(--awb-color2)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Elevate Your Marketing Game[/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>Subscribe to the Good Cause Marketing Partners newsletter and stay ahead with purpose-driven marketing insights tailored just for you.</p>\r\n[/fusion_text][fusion_form form_post_id=\"1695\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_right=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-22 17:18:52','2023-08-22 17:18:52','',1647,'https://test-site.goodcausepartners.com/?p=1801',0,'revision','',0),(1789,1,'2023-08-22 16:54:17','2023-08-22 16:54:17','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"45\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Case Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"true\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" 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=\"1786|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/brain.webp[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n<ul>\r\n<li>Branding</li>\r\n<li>Marketing &amp; Communications</li>\r\n<li>Digital &amp; Social</li>\r\n<li>Partnerships &amp; Community Engagement </li>\r\n</ul>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Learn About Our Services[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"2\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" 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\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" 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\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"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=\"\" 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=\"65\" padding_bottom=\"65\" background_color=\"var(--awb-color2)\"][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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" 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\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" 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_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Elevate Your Marketing Game[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" logics=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Subscribe to the Good Cause Marketing Parnters newsletter and stay ahead with purpose-driven marketing insights tailored just for you.</p>[/fusion_text][fusion_form form_post_id=\"1695\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" 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=\"283|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_right=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-22 16:54:17','2023-08-22 16:54:17','',1647,'https://test-site.goodcausepartners.com/?p=1789',0,'revision','',0),(1790,1,'2023-08-22 16:54:35','2023-08-22 16:54:35','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"45\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Case Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"true\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" 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=\"1786|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/brain.webp[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n<ul>\r\n<li>Branding</li>\r\n<li>Marketing &amp; Communications</li>\r\n<li>Digital &amp; Social</li>\r\n<li>Partnerships &amp; Community Engagement </li>\r\n</ul>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Learn About Our Services[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"2\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" 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\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" 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\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"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=\"\" 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=\"65\" padding_bottom=\"65\" background_color=\"var(--awb-color2)\"][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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" 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\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" 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_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Elevate Your Marketing Game[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" logics=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Subscribe to the Good Cause Marketing Partners newsletter and stay ahead with purpose-driven marketing insights tailored just for you.</p>[/fusion_text][fusion_form form_post_id=\"1695\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" 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=\"283|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_right=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-22 16:54:35','2023-08-22 16:54:35','',1647,'https://test-site.goodcausepartners.com/?p=1790',0,'revision','',0),(1791,1,'2023-08-22 16:56:33','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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"45\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Case Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"true\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" 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=\"1786|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/brain.webp[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n<ul>\r\n<li>Branding</li>\r\n<li>Marketing &amp; Communications</li>\r\n<li>Digital &amp; Social</li>\r\n<li>Partnerships &amp; Community Engagement </li>\r\n</ul>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Learn About Our Services[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"2\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" 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\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" 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\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"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=\"\" 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=\"65\" padding_bottom=\"65\" background_color=\"var(--awb-color2)\"][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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" 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\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" 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_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Elevate Your Marketing Game[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" logics=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]<p>Subscribe to the Good Cause Marketing Partners newsletter and stay ahead with purpose-driven marketing insights tailored just for you.</p>[/fusion_text][fusion_form form_post_id=\"1695\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" 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=\"283|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_right=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','Good Cause Marketing Partners','','draft','closed','closed','','','','','2023-08-22 16:56:33','0000-00-00 00:00:00','',0,'https://test-site.goodcausepartners.com/?page_id=1791',0,'page','',0),(1824,1,'2023-08-22 19:41:54','2023-08-22 19:41: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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\" margin_bottom=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color6-h) + 60),calc(var(--awb-color6-s) + 22%),calc(var(--awb-color6-l) - 30%),var(--awb-color6-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" background_color=\"var(--awb-color6)\"][fusion_builder_row][fusion_builder_column type=\"35\" type=\"35\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"45\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<p>Main Menu</p>\r\n[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"var(--awb-color3)\" active_color=\"var(--awb-color4)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" icons_hover_color=\"var(--awb-color4)\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"45\" border_sizes_left=\"1\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Connect with Us[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_5\" type=\"1_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_top=\"5\" padding_right=\"5\" padding_bottom=\"5\" padding_left=\"5\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-headset fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"32\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color2)\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"4_5\" type=\"4_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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 style=\"color: rgb(255, 255, 255); font-size: 16px;\" data-fusion-font=\"true\">Call Good Cause</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_5\" type=\"1_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_top=\"5\" padding_right=\"5\" padding_bottom=\"5\" padding_left=\"5\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-envelope far\" spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"32\" iconcolor=\"var(--awb-color2)\" iconcolor_hover=\"var(--awb-color2)\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"4_5\" type=\"4_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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 style=\"color: rgb(255, 255, 255); font-size: 16px;\" data-fusion-font=\"true\">Email Good Cause</p>\r\n[/fusion_text][/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_top=\"20\"]Follow Us on Social[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"var(--awb-color1)\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 71%))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" box_border_color=\"var(--awb-color1)\" box_border_top=\"1\" box_border_right=\"1\" box_border_bottom=\"1\" box_border_left=\"1\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAyMCAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-22 19:41:54','2023-08-22 19:41:54','',351,'https://test-site.goodcausepartners.com/?p=1824',0,'revision','',0),(1792,1,'2023-08-22 16:58:44','2023-08-22 16:58: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=\"98\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" background_color=\"var(--awb-color8)\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\" margin_bottom=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_sizes_top=\"5px\" border_sizes_right=\"5px\" border_sizes_bottom=\"5px\" border_sizes_left=\"5px\" border_color=\"var(--awb-color6)\" padding_top=\"20px\" padding_bottom=\"20px\" padding_right=\"60px\" padding_left=\"60px\" margin_bottom=\"80px\" border_color_hover=\"hsla(var(--awb-color6-h),var(--awb-color6-s),calc(var(--awb-color6-l) + 10%),var(--awb-color6-a))\" padding_top_medium=\"40px\" padding_bottom_medium=\"40px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"75.00\" type=\"75.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\" content_align_medium=\"center\" content_align_small=\"center\"]Empower your online presence with avada hosting[/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\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 20%))\" content_alignment_medium=\"center\" content_alignment_small=\"center\"]\r\n<p>Join our list of 10M customers &amp; get a ‘45-Days Money-Back Guarantee’</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25.00\" type=\"25.00\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\" alignment=\"right\" alignment_medium=\"center\" margin_top=\"20px\" margin_bottom=\"20px\" alignment_small=\"center\"]get started[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"35\" type=\"35\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"45\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<p>Main Menu</p>\r\n[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"var(--awb-color3)\" active_color=\"var(--awb-color4)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" icons_hover_color=\"var(--awb-color4)\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"45\" border_sizes_left=\"1\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Connect with Us[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_5\" type=\"1_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_top=\"5\" padding_right=\"5\" padding_bottom=\"5\" padding_left=\"5\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-headset fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"32\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color2)\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"4_5\" type=\"4_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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 style=\"color: rgb(255, 255, 255); font-size: 16px;\" data-fusion-font=\"true\">Call Good Cause</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_5\" type=\"1_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_top=\"5\" padding_right=\"5\" padding_bottom=\"5\" padding_left=\"5\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-envelope far\" spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"32\" iconcolor=\"var(--awb-color2)\" iconcolor_hover=\"var(--awb-color2)\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"4_5\" type=\"4_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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 style=\"color: rgb(255, 255, 255); font-size: 16px;\" data-fusion-font=\"true\">Email Good Cause</p>\r\n[/fusion_text][/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_top=\"20\"]Follow Us on Social[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"var(--awb-color1)\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 71%))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" box_border_color=\"var(--awb-color1)\" box_border_top=\"1\" box_border_right=\"1\" box_border_bottom=\"1\" box_border_left=\"1\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAyMCAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-22 16:58:44','2023-08-22 16:58:44','',351,'https://test-site.goodcausepartners.com/?p=1792',0,'revision','',0),(1793,1,'2023-08-22 16:59:04','2023-08-22 16: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=\"98\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\" margin_bottom=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_sizes_top=\"5px\" border_sizes_right=\"5px\" border_sizes_bottom=\"5px\" border_sizes_left=\"5px\" border_color=\"var(--awb-color6)\" padding_top=\"20px\" padding_bottom=\"20px\" padding_right=\"60px\" padding_left=\"60px\" margin_bottom=\"80px\" border_color_hover=\"hsla(var(--awb-color6-h),var(--awb-color6-s),calc(var(--awb-color6-l) + 10%),var(--awb-color6-a))\" padding_top_medium=\"40px\" padding_bottom_medium=\"40px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"75.00\" type=\"75.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\" content_align_medium=\"center\" content_align_small=\"center\"]Empower your online presence with avada hosting[/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\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 20%))\" content_alignment_medium=\"center\" content_alignment_small=\"center\"]\r\n<p>Join our list of 10M customers &amp; get a ‘45-Days Money-Back Guarantee’</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25.00\" type=\"25.00\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\" alignment=\"right\" alignment_medium=\"center\" margin_top=\"20px\" margin_bottom=\"20px\" alignment_small=\"center\"]get started[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"35\" type=\"35\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"45\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<p>Main Menu</p>\r\n[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"var(--awb-color3)\" active_color=\"var(--awb-color4)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" icons_hover_color=\"var(--awb-color4)\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"45\" border_sizes_left=\"1\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Connect with Us[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_5\" type=\"1_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_top=\"5\" padding_right=\"5\" padding_bottom=\"5\" padding_left=\"5\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-headset fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"32\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color2)\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"4_5\" type=\"4_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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 style=\"color: rgb(255, 255, 255); font-size: 16px;\" data-fusion-font=\"true\">Call Good Cause</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_5\" type=\"1_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_top=\"5\" padding_right=\"5\" padding_bottom=\"5\" padding_left=\"5\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-envelope far\" spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"32\" iconcolor=\"var(--awb-color2)\" iconcolor_hover=\"var(--awb-color2)\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"4_5\" type=\"4_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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 style=\"color: rgb(255, 255, 255); font-size: 16px;\" data-fusion-font=\"true\">Email Good Cause</p>\r\n[/fusion_text][/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_top=\"20\"]Follow Us on Social[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"var(--awb-color1)\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 71%))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" box_border_color=\"var(--awb-color1)\" box_border_top=\"1\" box_border_right=\"1\" box_border_bottom=\"1\" box_border_left=\"1\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAyMCAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-22 16:59:04','2023-08-22 16:59:04','',351,'https://test-site.goodcausepartners.com/?p=1793',0,'revision','',0),(1794,1,'2023-08-22 17:02:13','2023-08-22 17:02: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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\" margin_bottom=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_sizes_top=\"5px\" border_sizes_right=\"5px\" border_sizes_bottom=\"5px\" border_sizes_left=\"5px\" border_color=\"var(--awb-color6)\" padding_top=\"20px\" padding_bottom=\"20px\" padding_right=\"60px\" padding_left=\"60px\" margin_bottom=\"80px\" border_color_hover=\"hsla(var(--awb-color6-h),var(--awb-color6-s),calc(var(--awb-color6-l) + 10%),var(--awb-color6-a))\" padding_top_medium=\"40px\" padding_bottom_medium=\"40px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"75.00\" type=\"75.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\" content_align_medium=\"center\" content_align_small=\"center\"]Empower your online presence with avada hosting[/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\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 20%))\" content_alignment_medium=\"center\" content_alignment_small=\"center\"]\r\n<p>Join our list of 10M customers &amp; get a ‘45-Days Money-Back Guarantee’</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25.00\" type=\"25.00\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\" alignment=\"right\" alignment_medium=\"center\" margin_top=\"20px\" margin_bottom=\"20px\" alignment_small=\"center\"]get started[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"35\" type=\"35\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"45\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<p>Main Menu</p>\r\n[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"var(--awb-color3)\" active_color=\"var(--awb-color4)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" icons_hover_color=\"var(--awb-color4)\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"45\" border_sizes_left=\"1\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Connect with Us[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_5\" type=\"1_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_top=\"5\" padding_right=\"5\" padding_bottom=\"5\" padding_left=\"5\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-headset fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"32\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color2)\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"4_5\" type=\"4_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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 style=\"color: rgb(255, 255, 255); font-size: 16px;\" data-fusion-font=\"true\">Call Good Cause</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_5\" type=\"1_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_top=\"5\" padding_right=\"5\" padding_bottom=\"5\" padding_left=\"5\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-envelope far\" spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"32\" iconcolor=\"var(--awb-color2)\" iconcolor_hover=\"var(--awb-color2)\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"4_5\" type=\"4_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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 style=\"color: rgb(255, 255, 255); font-size: 16px;\" data-fusion-font=\"true\">Email Good Cause</p>\r\n[/fusion_text][/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_top=\"20\"]Follow Us on Social[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"var(--awb-color1)\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 71%))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" box_border_color=\"var(--awb-color1)\" box_border_top=\"1\" box_border_right=\"1\" box_border_bottom=\"1\" box_border_left=\"1\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAyMCAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-22 17:02:13','2023-08-22 17:02:13','',351,'https://test-site.goodcausepartners.com/?p=1794',0,'revision','',0);
INSERT INTO `wp_gc2023posts` VALUES (1795,1,'2023-08-22 17:03:05','2023-08-22 17:03: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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\" margin_bottom=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color6-h) + 60),calc(var(--awb-color6-s) + 22%),calc(var(--awb-color6-l) - 30%),var(--awb-color6-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" background_color=\"var(--awb-color6)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" border_sizes_top=\"5px\" border_sizes_right=\"5px\" border_sizes_bottom=\"5px\" border_sizes_left=\"5px\" border_color=\"var(--awb-color6)\" padding_top=\"20px\" padding_bottom=\"20px\" padding_right=\"60px\" padding_left=\"60px\" margin_bottom=\"80px\" border_color_hover=\"hsla(var(--awb-color6-h),var(--awb-color6-s),calc(var(--awb-color6-l) + 10%),var(--awb-color6-a))\" padding_top_medium=\"40px\" padding_bottom_medium=\"40px\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"75.00\" type=\"75.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"0\" content_align_medium=\"center\" content_align_small=\"center\"]Empower your online presence with avada hosting[/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\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 20%))\" content_alignment_medium=\"center\" content_alignment_small=\"center\"]\r\n<p>Join our list of 10M customers &amp; get a ‘45-Days Money-Back Guarantee’</p>\r\n[/fusion_text][/fusion_builder_column_inner][fusion_builder_column_inner type=\"25.00\" type=\"25.00\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_medium=\"1_1\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\" alignment=\"right\" alignment_medium=\"center\" margin_top=\"20px\" margin_bottom=\"20px\" alignment_small=\"center\"]get started[/fusion_button][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"35\" type=\"35\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"45\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<p>Main Menu</p>\r\n[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"var(--awb-color3)\" active_color=\"var(--awb-color4)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" icons_hover_color=\"var(--awb-color4)\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"45\" border_sizes_left=\"1\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Connect with Us[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_5\" type=\"1_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_top=\"5\" padding_right=\"5\" padding_bottom=\"5\" padding_left=\"5\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-headset fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"32\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color2)\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"4_5\" type=\"4_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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 style=\"color: rgb(255, 255, 255); font-size: 16px;\" data-fusion-font=\"true\">Call Good Cause</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_5\" type=\"1_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_top=\"5\" padding_right=\"5\" padding_bottom=\"5\" padding_left=\"5\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-envelope far\" spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"32\" iconcolor=\"var(--awb-color2)\" iconcolor_hover=\"var(--awb-color2)\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"4_5\" type=\"4_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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 style=\"color: rgb(255, 255, 255); font-size: 16px;\" data-fusion-font=\"true\">Email Good Cause</p>\r\n[/fusion_text][/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_top=\"20\"]Follow Us on Social[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"var(--awb-color1)\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 71%))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" box_border_color=\"var(--awb-color1)\" box_border_top=\"1\" box_border_right=\"1\" box_border_bottom=\"1\" box_border_left=\"1\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAyMCAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-22 17:03:05','2023-08-22 17:03:05','',351,'https://test-site.goodcausepartners.com/?p=1795',0,'revision','',0),(1796,1,'2023-08-22 17:06:04','2023-08-22 17:06: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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Contact Info\"][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\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" 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\" rotation_text=\"\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"1\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" 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_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" 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_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" logics=\"\" 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][fusion_builder_container type=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Contact Info\" margin_bottom=\"80px\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" padding_right_small=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"5\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\" text_color=\"var(--awb-color4)\"]contact sales[/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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" margin_bottom=\"5px\"]T: (010) 456 7890[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\"]\r\n<p>E: sales.hosting@domain.com</p>\r\n[/fusion_text][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 4%),var(--awb-color2-a))\" bottom_margin=\"30px\" top_margin=\"10px\" /][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\"]<span style=\"font-size: 17px;\" data-fusion-font=\"true\">Service Hours:</span><br />\r\nMonday to Friday : 9am - 7pm[/fusion_text][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 4%),var(--awb-color2-a))\" bottom_margin=\"30px\" top_margin=\"10px\" /][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\" margin_bottom=\"0\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\"]<span style=\"font-size: 17px;\" data-fusion-font=\"true\">Office Address:</span><br />\r\n60 Avada Site, Hill Station, CA[/fusion_text][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" margin_top_small=\"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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"30px\" margin_bottom_small=\"25px\"]\r\n<p>send a message</p>\r\n[/fusion_title][fusion_form form_post_id=\"1292\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Contact','','inherit','closed','closed','','1270-revision-v1','','','2023-08-22 17:06:04','2023-08-22 17:06:04','',1270,'https://test-site.goodcausepartners.com/?p=1796',0,'revision','',0),(1798,1,'2023-08-22 17:16:23','2023-08-22 17:16: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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Contact Info\" padding_top=\"65\" padding_bottom=\"65\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Contact Good Cause Marketing Partners[/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\" margin_bottom=\"20\"]<p>At Good Cause Marketing Partners, communication sits at the heart of what we do. Whether you have an inquiry, a suggestion, or simply wish to learn more about our services, we\'re eager to hear from you. Our team values every opportunity to connect and understand your needs better. Please feel free to reach out using the details below or the form, and we\'ll ensure to get back to you promptly.</p>[/fusion_text][fusion_separator style_type=\"single|dotted\" flex_grow=\"0\" height=\"20\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"300px\" border_size=\"3\" /][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\" margin_top=\"20\" margin_bottom=\"20\"]<p><b>Phone: </b>(805) 870 - 5050</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-hover);\"><b>Hours of Operation</b>: Monday-Friday, 8 am - 5 pm</span></p>[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" margin_top_small=\"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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"30px\" margin_bottom_small=\"25px\"]\r\n<p>send a message</p>\r\n[/fusion_title][fusion_form form_post_id=\"1292\" 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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Contact','','inherit','closed','closed','','1270-revision-v1','','','2023-08-22 17:16:23','2023-08-22 17:16:23','',1270,'https://test-site.goodcausepartners.com/?p=1798',0,'revision','',0),(1797,1,'2023-08-22 17:16:04','2023-08-22 17:16: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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" 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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Contact Info\" padding_top=\"0\" padding_bottom=\"45\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Contact Good Cause Marketing Partners[/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\" margin_bottom=\"20\"]<p>At Good Cause Marketing Partners, communication sits at the heart of what we do. Whether you have an inquiry, a suggestion, or simply wish to learn more about our services, we\'re eager to hear from you. Our team values every opportunity to connect and understand your needs better. Please feel free to reach out using the details below or the form, and we\'ll ensure to get back to you promptly.</p>[/fusion_text][fusion_separator style_type=\"single|dotted\" flex_grow=\"0\" height=\"20\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"300px\" border_size=\"3\" /][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\" margin_top=\"20\" margin_bottom=\"20\"]<p><b>Phone: </b>(805) 870 - 5050</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-hover);\"><b>Hours of Operation</b>: Monday-Friday, 8 am - 5 pm</span></p>[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" margin_top_small=\"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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"30px\" margin_bottom_small=\"25px\"]\r\n<p>send a message</p>\r\n[/fusion_title][fusion_form form_post_id=\"1292\" 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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Contact','','inherit','closed','closed','','1270-revision-v1','','','2023-08-22 17:16:04','2023-08-22 17:16:04','',1270,'https://test-site.goodcausepartners.com/?p=1797',0,'revision','',0),(1799,1,'2023-08-22 17:17:15','2023-08-22 17:17: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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Contact Info\" padding_top=\"65\" padding_bottom=\"65\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Contact Good Cause Marketing Partners[/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\" margin_bottom=\"20\"]<p>At Good Cause Marketing Partners, communication sits at the heart of what we do. Whether you have an inquiry, a suggestion, or simply wish to learn more about our services, we\'re eager to hear from you. We value every opportunity to connect and understand your needs better. </p><p>Please feel free to reach out using the details below or the form, and we\'ll ensure to get back to you promptly.</p>[/fusion_text][fusion_separator style_type=\"single|dotted\" flex_grow=\"0\" height=\"20\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"300px\" border_size=\"3\" /][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\" margin_top=\"20\" margin_bottom=\"20\"]<p><b>Phone: </b>(805) 870 - 5050</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-hover);\"><b>Hours of Operation</b>: Monday-Friday, 8 am - 5 pm</span></p>[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" margin_top_small=\"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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"30px\" margin_bottom_small=\"25px\"]\r\n<p>send a message</p>\r\n[/fusion_title][fusion_form form_post_id=\"1292\" 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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Contact','','inherit','closed','closed','','1270-revision-v1','','','2023-08-22 17:17:15','2023-08-22 17:17:15','',1270,'https://test-site.goodcausepartners.com/?p=1799',0,'revision','',0),(1800,1,'2023-08-22 17:18:13','2023-08-22 17:18: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=\"space-between\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Contact Info\" padding_top=\"65\" padding_bottom=\"65\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Contact Good Cause Marketing Partners[/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\" margin_bottom=\"20\"]<p>At Good Cause Marketing Partners, communication sits at the heart of what we do. Whether you have an inquiry, a suggestion, or simply wish to learn more about our services, we\'re eager to hear from you. We value every opportunity to connect and understand your needs better. </p><p>Please feel free to reach out using the details below or the form, and we\'ll ensure to get back to you promptly.</p>[/fusion_text][fusion_separator style_type=\"single|dotted\" flex_grow=\"0\" height=\"20\" alignment=\"left\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" width=\"300px\" border_size=\"3\" /][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\" margin_top=\"20\" margin_bottom=\"20\"]<p><b>Phone: </b>(805) 870 - 5050</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-hover);\"><b>Hours of Operation</b>: Monday-Friday, 8 am - 5 pm</span></p>[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" margin_top_small=\"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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"30px\" margin_bottom_small=\"25px\"]\r\n<p>send a message</p>\r\n[/fusion_title][fusion_form form_post_id=\"1292\" 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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Contact','','inherit','closed','closed','','1270-revision-v1','','','2023-08-22 17:18:13','2023-08-22 17:18:13','',1270,'https://test-site.goodcausepartners.com/?p=1800',0,'revision','',0),(1802,1,'2023-08-22 18:02:45','2023-08-22 18:02:45','','who-we-are','','inherit','open','closed','','who-we-are-2','','','2023-08-22 18:02:45','2023-08-22 18:02:45','',0,'https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/who-we-are.webp',0,'attachment','image/webp',0),(1803,1,'2023-08-22 18:08:22','2023-08-22 18:08:22','','what-we-do','','inherit','open','closed','','what-we-do-2','','','2023-08-22 18:08:22','2023-08-22 18:08:22','',0,'https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/what-we-do.webp',0,'attachment','image/webp',0),(1806,1,'2023-08-22 18:14:57','2023-08-22 18:14: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\" 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\" margin_top=\"60px\" admin_label=\"Hosting Plans\" margin_bottom=\"60px\" ][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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color_hover=\"var(--awb-color5)\" border_color=\"var(--awb-color1)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/who-we-are/\" first=\"true\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1802|full\" max_width=\"125px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/who-we-are.webp[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]who we are[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/what-we-do/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1803|full\" max_width=\"150px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/what-we-do.webp[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]what we do[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/contact/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1805|full\" max_width=\"125px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/contact.webp[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]Want to Talk?[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Hosting Plans - 2 Column','','inherit','closed','closed','','1017-revision-v1','','','2023-08-22 18:14:57','2023-08-22 18:14:57','',1017,'https://test-site.goodcausepartners.com/?p=1806',0,'revision','',0),(1804,1,'2023-08-22 18:09:35','2023-08-22 18:09:35','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"60px\" admin_label=\"Hosting Plans\" margin_bottom=\"60px\" ][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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color_hover=\"var(--awb-color5)\" border_color=\"var(--awb-color1)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/who-we-are/\" first=\"true\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1802|full\" margin_bottom_small=\"40px\" aspect_ratio=\"1-1\" aspect_ratio_position=\"51% 50%\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/who-we-are.webp[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]who we are[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/what-we-do/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1803|full\" max_width=\"125px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/what-we-do.webp[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]what we do[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/contact/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"168|full\" max_width=\"125px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/wordpress-hosting.png[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]Want to Talk?[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Hosting Plans - 2 Column','','inherit','closed','closed','','1017-revision-v1','','','2023-08-22 18:09:35','2023-08-22 18:09:35','',1017,'https://test-site.goodcausepartners.com/?p=1804',0,'revision','',0),(1805,1,'2023-08-22 18:14:42','2023-08-22 18:14:42','','contact','','inherit','open','closed','','contact-4','','','2023-08-22 18:14:42','2023-08-22 18:14:42','',0,'https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/contact.webp',0,'attachment','image/webp',0),(1808,1,'2023-08-22 18:39:49','2023-08-22 18:39:49','','what-we-do-intro','','inherit','open','closed','','what-we-do-intro','','','2023-08-22 18:39:49','2023-08-22 18:39:49','',0,'https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/what-we-do-intro.webp',0,'attachment','image/webp',0),(1809,1,'2023-08-22 18:56:00','2023-08-22 18:56:00','','who-we-are-intro2','','inherit','open','closed','','who-we-are-intro2','','','2023-08-22 18:56:00','2023-08-22 18:56:00','',0,'https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/who-we-are-intro2.webp',0,'attachment','image/webp',0),(1810,1,'2023-08-22 18:56:51','2023-08-22 18:56: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][fusion_builder_row][fusion_builder_column type=\"60\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" type=\"60\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]About Good Cause Marketing Partners[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Where Passion for Effective Marketing Meets Dedication to Societal Impact</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>At Good Cause Marketing Partners, we stand proud as a leading boutique integrated marketing communications agency, tailor-made for the unique demands of both businesses and nonprofits. Our vision is crystallized in our relentless pursuit to weave compelling narratives that enhance visibility and foster growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore Our Services[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"40\" type=\"40\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1809|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/who-we-are-intro2.webp[/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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\" padding_bottom=\"65\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"40\"]Our Expertise Spans a Range of Specialized Areas[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"24\" type=\"24\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" 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\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Strategy &amp; Branding[/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\" content_alignment=\"center\"]\r\n<p>Shaping identities that capture attention, resonate, and linger.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"23.00\" type=\"23.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-bullhorn fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Marketing &amp; Communications[/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\" content_alignment=\"center\"]Creating campaigns that target and persuade audiences.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"23.00\" type=\"23.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" alignment=\"center\" icon=\"fa-comment-dots fas\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Digital &amp; Social Media[/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\" content_alignment=\"center\"]\r\n<p> Harnessing the virtual sphere for tangible results.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"28.00\" type=\"28.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-handshake fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Partnerships &amp; Community Engagement[/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\" content_alignment=\"center\"]\r\n<p>Connecting and collaborating for amplified impact.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Approach at Good Cause Marketing Partners[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>Every collaboration with <b>Good Cause Marketing Partners</b> promises a holistic approach. We are not just about marketing; we are about creating a ripple effect. Through meticulous positioning and strategy, we endeavor to shape public perceptions, stir emotions, and encourage actions that resonate with your brand values.</p>\r\n<p>Our philosophy for every project is underpinned by three cardinal principles:</p>\r\n<ol>\r\n<li><b>Unified Brand Experience</b>: Enable brands to be consistent, recognizable, and memorable.</li>\r\n<li><b>Vision-Driven Community Building</b>: Construct a brand community that rallies around a shared vision.</li>\r\n<li><b>Strategic Enterprise Framework</b>: Architect a consolidated marketing framework that aligns seamlessly with a company’s ethos.</li>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>The heart of any organization lies in its mission and vision. Recognizing this, we ensure all branding, marketing, and communication endeavors are tuned to echo these sentiments. As guardians of your brand, we understand the nuances of modern consumers, who are as invested in a company\'s ethos as they are in its offerings. This understanding drives us to craft each communication piece as an ambassador of your brand\'s core messages.</p>\r\n<p>In an era dominated by information overload, we champion the art of timely and relevant messaging, reaching out to audiences precisely when and where they should be reached. Transparency, continuous learning, and unwavering accountability guide our every move, ensuring our strategies are not just efficient but progressively innovative.</p>\r\n<ol>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.png[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Let\'s Craft Your Story Together[/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\" margin_bottom=\"0\"]\r\n<p>Every brand has a unique narrative, and every cause has the power to impact. With Good Cause Marketing Partners and the expertise of seasoned professionals like Matt Midura, you’re not just getting a marketing campaign; you’re gaining a dedicated partner in sharing your story with the world. Dive into a partnership where passion, expertise, and genuine commitment come together to create waves of change.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]Connect with Us Today[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','Who We Are','','inherit','closed','closed','','1068-revision-v1','','','2023-08-22 18:56:51','2023-08-22 18:56:51','',1068,'https://test-site.goodcausepartners.com/?p=1810',0,'revision','',0),(1811,1,'2023-08-22 18:57:17','2023-08-22 18:57: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][fusion_builder_row][fusion_builder_column type=\"60\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" type=\"60\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]About Good Cause Marketing Partners[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Where Passion for Effective Marketing Meets Dedication to Societal Impact</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]<p>At Good Cause Marketing Partners, we stand proud as a leading boutique integrated marketing communications agency, tailor-made for the unique demands of both businesses and nonprofits. Our vision is crystallized in our relentless pursuit to weave compelling narratives that enhance visibility and foster growth. </p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore Our Services[/fusion_button][/fusion_builder_column][fusion_builder_column type=\"40\" type=\"40\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1809|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/who-we-are-intro2.webp[/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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\" padding_bottom=\"65\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"40\"]Our Expertise Spans a Range of Specialized Areas[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"24\" type=\"24\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" 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\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Strategy &amp; Branding[/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\" content_alignment=\"center\"]\r\n<p>Shaping identities that capture attention, resonate, and linger.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"23.00\" type=\"23.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-bullhorn fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Marketing &amp; Communications[/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\" content_alignment=\"center\"]Creating campaigns that target and persuade audiences.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"23.00\" type=\"23.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" alignment=\"center\" icon=\"fa-comment-dots fas\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Digital &amp; Social Media[/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\" content_alignment=\"center\"]\r\n<p> Harnessing the virtual sphere for tangible results.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"28.00\" type=\"28.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-handshake fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Partnerships &amp; Community Engagement[/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\" content_alignment=\"center\"]\r\n<p>Connecting and collaborating for amplified impact.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Approach at Good Cause Marketing Partners[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>Every collaboration with <b>Good Cause Marketing Partners</b> promises a holistic approach. We are not just about marketing; we are about creating a ripple effect. Through meticulous positioning and strategy, we endeavor to shape public perceptions, stir emotions, and encourage actions that resonate with your brand values.</p>\r\n<p>Our philosophy for every project is underpinned by three cardinal principles:</p>\r\n<ol>\r\n<li><b>Unified Brand Experience</b>: Enable brands to be consistent, recognizable, and memorable.</li>\r\n<li><b>Vision-Driven Community Building</b>: Construct a brand community that rallies around a shared vision.</li>\r\n<li><b>Strategic Enterprise Framework</b>: Architect a consolidated marketing framework that aligns seamlessly with a company’s ethos.</li>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>The heart of any organization lies in its mission and vision. Recognizing this, we ensure all branding, marketing, and communication endeavors are tuned to echo these sentiments. As guardians of your brand, we understand the nuances of modern consumers, who are as invested in a company\'s ethos as they are in its offerings. This understanding drives us to craft each communication piece as an ambassador of your brand\'s core messages.</p>\r\n<p>In an era dominated by information overload, we champion the art of timely and relevant messaging, reaching out to audiences precisely when and where they should be reached. Transparency, continuous learning, and unwavering accountability guide our every move, ensuring our strategies are not just efficient but progressively innovative.</p>\r\n<ol>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.png[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Let\'s Craft Your Story Together[/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\" margin_bottom=\"0\"]\r\n<p>Every brand has a unique narrative, and every cause has the power to impact. With Good Cause Marketing Partners and the expertise of seasoned professionals like Matt Midura, you’re not just getting a marketing campaign; you’re gaining a dedicated partner in sharing your story with the world. Dive into a partnership where passion, expertise, and genuine commitment come together to create waves of change.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]Connect with Us Today[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','Who We Are','','inherit','closed','closed','','1068-revision-v1','','','2023-08-22 18:57:17','2023-08-22 18:57:17','',1068,'https://test-site.goodcausepartners.com/?p=1811',0,'revision','',0),(1812,1,'2023-08-22 18:58:10','2023-08-22 18:58: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][fusion_builder_row][fusion_builder_column type=\"60\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" type=\"60\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]About Good Cause Marketing Partners[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Where Passion for Effective Marketing Meets Dedication to Societal Impact</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]<p>At Good Cause Marketing Partners, we stand proud as a leading boutique integrated marketing communications agency, tailor-made for the unique demands of both businesses and nonprofits. Our vision is crystallized in our relentless pursuit to weave compelling narratives that enhance visibility and foster growth. </p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore Our Services[/fusion_button][/fusion_builder_column][fusion_builder_column 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" first=\"false\" type=\"2_5\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1809|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/who-we-are-intro2.webp[/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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\" padding_bottom=\"65\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"40\"]Our Expertise Spans a Range of Specialized Areas[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"24\" type=\"24\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" 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\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Strategy &amp; Branding[/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\" content_alignment=\"center\"]\r\n<p>Shaping identities that capture attention, resonate, and linger.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"23.00\" type=\"23.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-bullhorn fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Marketing &amp; Communications[/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\" content_alignment=\"center\"]Creating campaigns that target and persuade audiences.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"23.00\" type=\"23.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" alignment=\"center\" icon=\"fa-comment-dots fas\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Digital &amp; Social Media[/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\" content_alignment=\"center\"]\r\n<p> Harnessing the virtual sphere for tangible results.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"28.00\" type=\"28.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-handshake fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Partnerships &amp; Community Engagement[/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\" content_alignment=\"center\"]\r\n<p>Connecting and collaborating for amplified impact.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Approach at Good Cause Marketing Partners[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>Every collaboration with <b>Good Cause Marketing Partners</b> promises a holistic approach. We are not just about marketing; we are about creating a ripple effect. Through meticulous positioning and strategy, we endeavor to shape public perceptions, stir emotions, and encourage actions that resonate with your brand values.</p>\r\n<p>Our philosophy for every project is underpinned by three cardinal principles:</p>\r\n<ol>\r\n<li><b>Unified Brand Experience</b>: Enable brands to be consistent, recognizable, and memorable.</li>\r\n<li><b>Vision-Driven Community Building</b>: Construct a brand community that rallies around a shared vision.</li>\r\n<li><b>Strategic Enterprise Framework</b>: Architect a consolidated marketing framework that aligns seamlessly with a company’s ethos.</li>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>The heart of any organization lies in its mission and vision. Recognizing this, we ensure all branding, marketing, and communication endeavors are tuned to echo these sentiments. As guardians of your brand, we understand the nuances of modern consumers, who are as invested in a company\'s ethos as they are in its offerings. This understanding drives us to craft each communication piece as an ambassador of your brand\'s core messages.</p>\r\n<p>In an era dominated by information overload, we champion the art of timely and relevant messaging, reaching out to audiences precisely when and where they should be reached. Transparency, continuous learning, and unwavering accountability guide our every move, ensuring our strategies are not just efficient but progressively innovative.</p>\r\n<ol>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.png[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Let\'s Craft Your Story Together[/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\" margin_bottom=\"0\"]\r\n<p>Every brand has a unique narrative, and every cause has the power to impact. With Good Cause Marketing Partners and the expertise of seasoned professionals like Matt Midura, you’re not just getting a marketing campaign; you’re gaining a dedicated partner in sharing your story with the world. Dive into a partnership where passion, expertise, and genuine commitment come together to create waves of change.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]Connect with Us Today[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','Who We Are','','inherit','closed','closed','','1068-revision-v1','','','2023-08-22 18:58:10','2023-08-22 18:58:10','',1068,'https://test-site.goodcausepartners.com/?p=1812',0,'revision','',0),(1813,1,'2023-08-22 18:59:17','2023-08-22 18:59: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][fusion_builder_row][fusion_builder_column type=\"60\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" type=\"60\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]About Good Cause Marketing Partners[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Where Passion for Effective Marketing Meets Dedication to Societal Impact</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]<p>At Good Cause Marketing Partners, we stand proud as a leading boutique integrated marketing communications agency, tailor-made for the unique demands of both businesses and nonprofits. Our vision is crystallized in our relentless pursuit to weave compelling narratives that enhance visibility and foster growth. </p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Explore Our Services[/fusion_button][/fusion_builder_column][fusion_builder_column 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" first=\"false\" type=\"2_5\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1809|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/who-we-are-intro2.webp[/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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\" padding_bottom=\"65\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"40\"]Our Expertise Spans a Range of Specialized Areas[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"24\" type=\"24\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" 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\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Strategy &amp; Branding[/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\" content_alignment=\"center\"]\r\n<p>Shaping identities that capture attention, resonate, and linger.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"23.00\" type=\"23.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-bullhorn fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Marketing &amp; Communications[/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\" content_alignment=\"center\"]Creating campaigns that target and persuade audiences.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"23.00\" type=\"23.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" alignment=\"center\" icon=\"fa-comment-dots fas\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Digital &amp; Social Media[/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\" content_alignment=\"center\"]\r\n<p> Harnessing the virtual sphere for tangible results.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"28.00\" type=\"28.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-handshake fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Partnerships &amp; Community Engagement[/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\" content_alignment=\"center\"]\r\n<p>Connecting and collaborating for amplified impact.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Approach at Good Cause Marketing Partners[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>Every collaboration with <b>Good Cause Marketing Partners</b> promises a holistic approach. We are not just about marketing; we are about creating a ripple effect. Through meticulous positioning and strategy, we endeavor to shape public perceptions, stir emotions, and encourage actions that resonate with your brand values.</p>\r\n<p>Our philosophy for every project is underpinned by three cardinal principles:</p>\r\n<ol>\r\n<li><b>Unified Brand Experience</b>: Enable brands to be consistent, recognizable, and memorable.</li>\r\n<li><b>Vision-Driven Community Building</b>: Construct a brand community that rallies around a shared vision.</li>\r\n<li><b>Strategic Enterprise Framework</b>: Architect a consolidated marketing framework that aligns seamlessly with a company’s ethos.</li>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>The heart of any organization lies in its mission and vision. Recognizing this, we ensure all branding, marketing, and communication endeavors are tuned to echo these sentiments. As guardians of your brand, we understand the nuances of modern consumers, who are as invested in a company\'s ethos as they are in its offerings. This understanding drives us to craft each communication piece as an ambassador of your brand\'s core messages.</p>\r\n<p>In an era dominated by information overload, we champion the art of timely and relevant messaging, reaching out to audiences precisely when and where they should be reached. Transparency, continuous learning, and unwavering accountability guide our every move, ensuring our strategies are not just efficient but progressively innovative.</p>\r\n<ol>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"683|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/efficient-avada-hosting.png[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Let\'s Craft Your Story Together[/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\" margin_bottom=\"0\"]\r\n<p>Every brand has a unique narrative, and every cause has the power to impact. With Good Cause Marketing Partners and the expertise of seasoned professionals like Matt Midura, you’re not just getting a marketing campaign; you’re gaining a dedicated partner in sharing your story with the world. Dive into a partnership where passion, expertise, and genuine commitment come together to create waves of change.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]Connect with Us Today[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','Who We Are','','inherit','closed','closed','','1068-revision-v1','','','2023-08-22 18:59:17','2023-08-22 18:59:17','',1068,'https://test-site.goodcausepartners.com/?p=1813',0,'revision','',0),(1814,1,'2023-08-22 19:08:34','2023-08-22 19:08:34','','whatwedo-comp2','','inherit','open','closed','','whatwedo-comp2','','','2023-08-22 19:08:34','2023-08-22 19:08:34','',0,'https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/whatwedo-comp2.webp',0,'attachment','image/webp',0),(1815,1,'2023-08-22 19:14:59','2023-08-22 19:14:59','','whatwedo-comp3','','inherit','open','closed','','whatwedo-comp3','','','2023-08-22 19:14:59','2023-08-22 19:14:59','',0,'https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/whatwedo-comp3.webp',0,'attachment','image/webp',0),(1816,1,'2023-08-22 19:15:31','2023-08-22 19:15: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\" 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\" margin_top=\"100px\" admin_label=\"Introduction\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" admin_toggled=\"yes\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]Our Services[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Tailored Solutions for a Digital World</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>In an ever-evolving digital age, effective marketing is both an art and a science. At Good Cause Marketing Partners, we merge creativity with data-driven strategies to bring you comprehensive services tailored for the unique contours of today\'s business and nonprofit landscapes. Whether you\'re looking to amplify your brand, connect with your audience, or catalyze social impact, our suite of services has been meticulously designed to guide you every step of the way. Dive in to discover how we can elevate your mission and transform your vision into tangible results.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"706|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/powerful-avada-hosting.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_bottom=\"55\" admin_toggled=\"yes\" admin_label=\"Service List\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_content_boxes layout=\"icon-on-side\" columns=\"2\" heading_size=\"2\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_color=\"var(--awb-color6)\" iconcolor=\"var(--awb-color6)\" icon_circle=\"no\" icon_size=\"61\"][fusion_content_box title=\"Brand Positioning &amp; Development\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-heart far\"]\r\n<p>We focus on understanding and capturing the core essence of your organization. This process helps in building and positioning a brand that is both genuine and distinct in a highly competitive market.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Creative Design\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-paint-brush fas\"]\r\n<p>Our design team works to create visuals that genuinely represent an organization\'s message and brand essence.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Market Strategy\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullseye fas\"]\r\n<p>Our approach considers the nuances of market dynamics. By crafting strategies tailored to specific needs, we aim to help organizations navigate their sector and connect with their desired audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Visual Identity Systems\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-image far\"]\r\n<p>A consistent brand image is crucial. We work on developing visual identity systems that maintain brand recognition across various platforms and touchpoints.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Research\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-book-reader fas\"]\r\n<p>Through methodical research, we gather valuable insights about market trends, competitors, and potential audience behaviors. This information forms the foundation for our decision-making processes and strategic planning.</p>\r\n[/fusion_content_box][fusion_content_box animation_direction=\"left\" animation_speed=\"0.3\" title=\"Digital Marketing\" icon=\"fa-globe fas\"]In the evolving digital age, we customize strategies in areas like SEO and PPC to help organizations maintain a strong online presence and connect with their audience.[/fusion_content_box][fusion_content_box title=\"Communications\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullhorn fas\"]\r\n<p>We prioritize clear and consistent communication, ensuring that both internal and external messages align with the brand\'s voice and values.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Traditional Advertising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-newspaper fas\"]\r\n<p>Using classic advertising mediums, such as television, print, and radio, we develop campaigns that authentically communicate an organization\'s message to a broader audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Public Relations &amp; Crisis Management\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-first-aid fas\"]\r\n<p>Our team is equipped to manage public relations, emphasizing the positive aspects of a brand. Additionally, during challenging situations, we prioritize maintaining brand integrity and reputation.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Photo / Video Production\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-camera fas\"]\r\n<p>Visual storytelling is powerful. Our team focuses on producing photo and video content that genuinely encapsulates an organization\'s narrative, helping to foster deeper connections with its audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Fundraising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-hand-holding-usd fas\"]\r\n<p>Resource acquisition is crucial for any initiative. We utilize both traditional and innovative methods to gather support, ensuring that projects and campaigns are adequately funded.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Social &amp; Mobile Marketing\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-comment fas\"]\r\n<p>Our efforts in social and mobile marketing aim to ensure organizations are actively participating in relevant digital discussions, reaching their audience on platforms they frequently use.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Strategic Partnerships\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-handshake fas\"]We believe in the value of collaboration. By identifying and managing partnerships that align with a brand\'s ethos, we aim to enrich its presence and impact.[/fusion_content_box][fusion_content_box title=\"Collateral Production &amp; Development\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-map fas\"]We oversee the production and development of various collateral items, ensuring each piece aligns with the brand\'s image and communicates its message effectively.[/fusion_content_box][fusion_content_box title=\"Community Engagement\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-user-friends fas\"]\r\n<p>Engaging with the community is essential. We focus on building strategies that allow organizations to foster meaningful relationships within their community, ensuring active and beneficial participation.</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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"6\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Our Process\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"115%\" pattern_bg_color=\"var(--awb-color1)\" admin_toggled=\"yes\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Process[/fusion_title][fusion_text columns=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<b>Good Cause Marketing Partners</b> harmoniously blends the analytical rigor of the left brain with the creative intuition of the right. This symbiotic approach enables us to deliver a suite of high-impact, integrated services that not only resonate emotionally but are also grounded in data-driven insights. It\'s where imaginative storytelling meets strategic precision, ensuring that every campaign is both evocative and effective.</p>\r\n<p>Embarking on a marketing journey requires a clear roadmap and unwavering commitment. Our five-phase approach ensures that the journey is transparent, collaborative, and always tailored to your objectives. Every step is designed with teamwork and continuous learning at the heart, assuring that our strategies are closely aligned with your aspirations.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Our Collaborations\" padding_top=\"65\" padding_bottom=\"20\" admin_toggled=\"yes\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Our Collaborations: A Spectrum of Industries &amp; Experiences[/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\" margin_bottom=\"0\"]\r\n<p>At Good Cause Marketing Partners, we believe in the power of collaboration, recognizing that our most transformative work often emerges from synergistic relationships with our esteemed partners. Over the years, we\'ve had the privilege of joining forces with diverse industries and dynamic companies, each bringing unique challenges and opportunities. Join us in celebrating these alliances that have not only shaped our journey but have also paved the way for innovative breakthroughs in the world of integrated marketing.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1814|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/whatwedo-comp2.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"30\" margin_top=\"0\" flex_column_spacing=\"0\" padding_bottom=\"75\" admin_toggled=\"yes\" admin_label=\"Collaborations - Industries\"][fusion_builder_row][fusion_builder_column type=\"30\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Commercial Products</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Education &amp; Higher Education</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Financial Planning</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"30\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Nonprofits</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Real Estate</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Sports and Entertainment</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"30\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Television &amp; Radio</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Winery &amp; Hospitality</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Services CTA\" padding_top=\"65\" padding_bottom=\"65\" admin_toggled=\"yes\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1815|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/whatwedo-comp3.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Grow Your Brand for Good[/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\" margin_bottom=\"25\"]\r\n<p>Discover the difference of a strategy that merges creativity with precision. Start your transformation journey with Good Cause Marketing Partners.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Let\'s Get Started[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','What We Do','','inherit','closed','closed','','1723-revision-v1','','','2023-08-22 19:15:31','2023-08-22 19:15:31','',1723,'https://test-site.goodcausepartners.com/?p=1816',0,'revision','',0),(1817,1,'2023-08-22 19:30:28','2023-08-22 19:30:28','','whatwedo-top','','inherit','open','closed','','whatwedo-top','','','2023-08-22 19:30:28','2023-08-22 19:30:28','',0,'https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/whatwedo-top.webp',0,'attachment','image/webp',0),(1818,1,'2023-08-22 19:31:00','2023-08-22 19:31: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\" 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\" margin_top=\"100px\" admin_label=\"Introduction\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" admin_toggled=\"yes\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]Our Services[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Tailored Solutions for a Digital World</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>In an ever-evolving digital age, effective marketing is both an art and a science. At Good Cause Marketing Partners, we merge creativity with data-driven strategies to bring you comprehensive services tailored for the unique contours of today\'s business and nonprofit landscapes. Whether you\'re looking to amplify your brand, connect with your audience, or catalyze social impact, our suite of services has been meticulously designed to guide you every step of the way. Dive in to discover how we can elevate your mission and transform your vision into tangible results.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1817|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/whatwedo-top.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_bottom=\"55\" admin_toggled=\"yes\" admin_label=\"Service List\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_content_boxes layout=\"icon-on-side\" columns=\"2\" heading_size=\"2\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_color=\"var(--awb-color6)\" iconcolor=\"var(--awb-color6)\" icon_circle=\"no\" icon_size=\"61\"][fusion_content_box title=\"Brand Positioning &amp; Development\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-heart far\"]\r\n<p>We focus on understanding and capturing the core essence of your organization. This process helps in building and positioning a brand that is both genuine and distinct in a highly competitive market.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Creative Design\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-paint-brush fas\"]\r\n<p>Our design team works to create visuals that genuinely represent an organization\'s message and brand essence.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Market Strategy\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullseye fas\"]\r\n<p>Our approach considers the nuances of market dynamics. By crafting strategies tailored to specific needs, we aim to help organizations navigate their sector and connect with their desired audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Visual Identity Systems\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-image far\"]\r\n<p>A consistent brand image is crucial. We work on developing visual identity systems that maintain brand recognition across various platforms and touchpoints.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Research\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-book-reader fas\"]\r\n<p>Through methodical research, we gather valuable insights about market trends, competitors, and potential audience behaviors. This information forms the foundation for our decision-making processes and strategic planning.</p>\r\n[/fusion_content_box][fusion_content_box animation_direction=\"left\" animation_speed=\"0.3\" title=\"Digital Marketing\" icon=\"fa-globe fas\"]In the evolving digital age, we customize strategies in areas like SEO and PPC to help organizations maintain a strong online presence and connect with their audience.[/fusion_content_box][fusion_content_box title=\"Communications\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullhorn fas\"]\r\n<p>We prioritize clear and consistent communication, ensuring that both internal and external messages align with the brand\'s voice and values.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Traditional Advertising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-newspaper fas\"]\r\n<p>Using classic advertising mediums, such as television, print, and radio, we develop campaigns that authentically communicate an organization\'s message to a broader audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Public Relations &amp; Crisis Management\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-first-aid fas\"]\r\n<p>Our team is equipped to manage public relations, emphasizing the positive aspects of a brand. Additionally, during challenging situations, we prioritize maintaining brand integrity and reputation.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Photo / Video Production\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-camera fas\"]\r\n<p>Visual storytelling is powerful. Our team focuses on producing photo and video content that genuinely encapsulates an organization\'s narrative, helping to foster deeper connections with its audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Fundraising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-hand-holding-usd fas\"]\r\n<p>Resource acquisition is crucial for any initiative. We utilize both traditional and innovative methods to gather support, ensuring that projects and campaigns are adequately funded.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Social &amp; Mobile Marketing\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-comment fas\"]\r\n<p>Our efforts in social and mobile marketing aim to ensure organizations are actively participating in relevant digital discussions, reaching their audience on platforms they frequently use.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Strategic Partnerships\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-handshake fas\"]We believe in the value of collaboration. By identifying and managing partnerships that align with a brand\'s ethos, we aim to enrich its presence and impact.[/fusion_content_box][fusion_content_box title=\"Collateral Production &amp; Development\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-map fas\"]We oversee the production and development of various collateral items, ensuring each piece aligns with the brand\'s image and communicates its message effectively.[/fusion_content_box][fusion_content_box title=\"Community Engagement\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-user-friends fas\"]\r\n<p>Engaging with the community is essential. We focus on building strategies that allow organizations to foster meaningful relationships within their community, ensuring active and beneficial participation.</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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"6\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Our Process\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"115%\" pattern_bg_color=\"var(--awb-color1)\" admin_toggled=\"yes\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Process[/fusion_title][fusion_text columns=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<b>Good Cause Marketing Partners</b> harmoniously blends the analytical rigor of the left brain with the creative intuition of the right. This symbiotic approach enables us to deliver a suite of high-impact, integrated services that not only resonate emotionally but are also grounded in data-driven insights. It\'s where imaginative storytelling meets strategic precision, ensuring that every campaign is both evocative and effective.</p>\r\n<p>Embarking on a marketing journey requires a clear roadmap and unwavering commitment. Our five-phase approach ensures that the journey is transparent, collaborative, and always tailored to your objectives. Every step is designed with teamwork and continuous learning at the heart, assuring that our strategies are closely aligned with your aspirations.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Our Collaborations\" padding_top=\"65\" padding_bottom=\"20\" admin_toggled=\"yes\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Our Collaborations: A Spectrum of Industries &amp; Experiences[/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\" margin_bottom=\"0\"]\r\n<p>At Good Cause Marketing Partners, we believe in the power of collaboration, recognizing that our most transformative work often emerges from synergistic relationships with our esteemed partners. Over the years, we\'ve had the privilege of joining forces with diverse industries and dynamic companies, each bringing unique challenges and opportunities. Join us in celebrating these alliances that have not only shaped our journey but have also paved the way for innovative breakthroughs in the world of integrated marketing.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1814|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/whatwedo-comp2.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"30\" margin_top=\"0\" flex_column_spacing=\"0\" padding_bottom=\"75\" admin_toggled=\"yes\" admin_label=\"Collaborations - Industries\"][fusion_builder_row][fusion_builder_column type=\"30\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Commercial Products</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Education &amp; Higher Education</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Financial Planning</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"30\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Nonprofits</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Real Estate</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Sports and Entertainment</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"30\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Television &amp; Radio</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Winery &amp; Hospitality</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Services CTA\" padding_top=\"65\" padding_bottom=\"65\" admin_toggled=\"yes\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1815|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/whatwedo-comp3.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Grow Your Brand for Good[/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\" margin_bottom=\"25\"]\r\n<p>Discover the difference of a strategy that merges creativity with precision. Start your transformation journey with Good Cause Marketing Partners.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Let\'s Get Started[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','What We Do','','inherit','closed','closed','','1723-revision-v1','','','2023-08-22 19:31:00','2023-08-22 19:31:00','',1723,'https://test-site.goodcausepartners.com/?p=1818',0,'revision','',0),(1819,1,'2023-08-22 19:37:20','2023-08-22 19:37:20','','whoweare-intro','','inherit','open','closed','','whoweare-intro','','','2023-08-22 19:37:20','2023-08-22 19:37:20','',0,'https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/whoweare-intro.webp',0,'attachment','image/webp',0),(1820,1,'2023-08-22 19:37:35','2023-08-22 19:37:35','[fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][fusion_builder_row][fusion_builder_column type=\"60\" type=\"60\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]About Good Cause Marketing Partners[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Where Passion for Effective Marketing Meets Dedication to Societal Impact</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>At Good Cause Marketing Partners, we stand proud as a leading boutique integrated marketing communications agency, tailor-made for the unique demands of both businesses and nonprofits. Our vision is crystallized in our relentless pursuit to weave compelling narratives that enhance visibility and foster growth. </p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Explore Our Services[/fusion_button][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1819|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/whoweare-intro.webp[/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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\" padding_bottom=\"65\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"40\"]Our Expertise Spans a Range of Specialized Areas[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"24\" type=\"24\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" 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\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Strategy &amp; Branding[/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\" content_alignment=\"center\"]\r\n<p>Shaping identities that capture attention, resonate, and linger.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"23.00\" type=\"23.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-bullhorn fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Marketing &amp; Communications[/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\" content_alignment=\"center\"]Creating campaigns that target and persuade audiences.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"23.00\" type=\"23.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" alignment=\"center\" icon=\"fa-comment-dots fas\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Digital &amp; Social Media[/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\" content_alignment=\"center\"]\r\n<p> Harnessing the virtual sphere for tangible results.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"28.00\" type=\"28.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-handshake fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Partnerships &amp; Community Engagement[/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\" content_alignment=\"center\"]\r\n<p>Connecting and collaborating for amplified impact.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Approach at Good Cause Marketing Partners[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>Every collaboration with <b>Good Cause Marketing Partners</b> promises a holistic approach. We are not just about marketing; we are about creating a ripple effect. Through meticulous positioning and strategy, we endeavor to shape public perceptions, stir emotions, and encourage actions that resonate with your brand values.</p>\r\n<p>Our philosophy for every project is underpinned by three cardinal principles:</p>\r\n<ol>\r\n<li><b>Unified Brand Experience</b>: Enable brands to be consistent, recognizable, and memorable.</li>\r\n<li><b>Vision-Driven Community Building</b>: Construct a brand community that rallies around a shared vision.</li>\r\n<li><b>Strategic Enterprise Framework</b>: Architect a consolidated marketing framework that aligns seamlessly with a company’s ethos.</li>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>The heart of any organization lies in its mission and vision. Recognizing this, we ensure all branding, marketing, and communication endeavors are tuned to echo these sentiments. As guardians of your brand, we understand the nuances of modern consumers, who are as invested in a company\'s ethos as they are in its offerings. This understanding drives us to craft each communication piece as an ambassador of your brand\'s core messages.</p>\r\n<p>In an era dominated by information overload, we champion the art of timely and relevant messaging, reaching out to audiences precisely when and where they should be reached. Transparency, continuous learning, and unwavering accountability guide our every move, ensuring our strategies are not just efficient but progressively innovative.</p>\r\n<ol>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1809|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/who-we-are-intro2.webp[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Let\'s Craft Your Story Together[/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\" margin_bottom=\"0\"]\r\n<p>Every brand has a unique narrative, and every cause has the power to impact. With Good Cause Marketing Partners and the expertise of seasoned professionals like Matt Midura, you’re not just getting a marketing campaign; you’re gaining a dedicated partner in sharing your story with the world. Dive into a partnership where passion, expertise, and genuine commitment come together to create waves of change.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]Connect with Us Today[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','Who We Are','','inherit','closed','closed','','1068-revision-v1','','','2023-08-22 19:37:35','2023-08-22 19:37:35','',1068,'https://test-site.goodcausepartners.com/?p=1820',0,'revision','',0),(1908,1,'2023-08-23 08:45:03','2023-08-23 08:45: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][fusion_builder_row][fusion_builder_column type=\"60\" type=\"60\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]About Good Cause Marketing Partners[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Where Passion for Effective Marketing Meets Dedication to Societal Impact</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>At Good Cause Marketing Partners, we stand proud as a leading boutique integrated marketing communications agency, tailor-made for the unique demands of both businesses and nonprofits. Our vision is crystallized in our relentless pursuit to weave compelling narratives that enhance visibility and foster growth. </p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Explore Our Services[/fusion_button][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1819|full\" max_width=\"600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/whoweare-intro.webp[/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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\" padding_bottom=\"65\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"40\"]Our Expertise Spans a Range of Specialized Areas[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"24\" type=\"24\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" 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\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Strategy &amp; Branding[/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\" content_alignment=\"center\"]\r\n<p>Shaping identities that capture attention, resonate, and linger.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"23.00\" type=\"23.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-bullhorn fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Marketing &amp; Communications[/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\" content_alignment=\"center\"]Creating campaigns that target and persuade audiences.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"23.00\" type=\"23.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" alignment=\"center\" icon=\"fa-comment-dots fas\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Digital &amp; Social Media[/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\" content_alignment=\"center\"]\r\n<p> Harnessing the virtual sphere for tangible results.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"28.00\" type=\"28.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-handshake fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Partnerships &amp; Community Engagement[/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\" content_alignment=\"center\"]\r\n<p>Connecting and collaborating for amplified impact.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Approach at Good Cause Marketing Partners[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>Every collaboration with <b>Good Cause Marketing Partners</b> promises a holistic approach. We are not just about marketing; we are about creating a ripple effect. Through meticulous positioning and strategy, we endeavor to shape public perceptions, stir emotions, and encourage actions that resonate with your brand values.</p>\r\n<p>Our philosophy for every project is underpinned by three cardinal principles:</p>\r\n<ol>\r\n<li><b>Unified Brand Experience</b>: Enable brands to be consistent, recognizable, and memorable.</li>\r\n<li><b>Vision-Driven Community Building</b>: Construct a brand community that rallies around a shared vision.</li>\r\n<li><b>Strategic Enterprise Framework</b>: Architect a consolidated marketing framework that aligns seamlessly with a company’s ethos.</li>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>The heart of any organization lies in its mission and vision. Recognizing this, we ensure all branding, marketing, and communication endeavors are tuned to echo these sentiments. As guardians of your brand, we understand the nuances of modern consumers, who are as invested in a company\'s ethos as they are in its offerings. This understanding drives us to craft each communication piece as an ambassador of your brand\'s core messages.</p>\r\n<p>In an era dominated by information overload, we champion the art of timely and relevant messaging, reaching out to audiences precisely when and where they should be reached. Transparency, continuous learning, and unwavering accountability guide our every move, ensuring our strategies are not just efficient but progressively innovative.</p>\r\n<ol>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1809|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/who-we-are-intro2.webp[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Let\'s Craft Your Story Together[/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\" margin_bottom=\"0\"]\r\n<p>Every brand has a unique narrative, and every cause has the power to impact. With Good Cause Marketing Partners and the expertise of seasoned professionals like Matt Midura, you’re not just getting a marketing campaign; you’re gaining a dedicated partner in sharing your story with the world. Dive into a partnership where passion, expertise, and genuine commitment come together to create waves of change.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]Connect with Us Today[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Who We Are','','inherit','closed','closed','','1068-revision-v1','','','2023-08-23 08:45:03','2023-08-23 08:45:03','',1068,'https://test-site.goodcausepartners.com/?p=1908',0,'revision','',0),(1821,1,'2023-08-22 19:38:02','2023-08-22 19:38: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][fusion_builder_row][fusion_builder_column type=\"60\" type=\"60\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]About Good Cause Marketing Partners[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Where Passion for Effective Marketing Meets Dedication to Societal Impact</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>At Good Cause Marketing Partners, we stand proud as a leading boutique integrated marketing communications agency, tailor-made for the unique demands of both businesses and nonprofits. Our vision is crystallized in our relentless pursuit to weave compelling narratives that enhance visibility and foster growth. </p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Explore Our Services[/fusion_button][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1819|full\" max_width=\"600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/whoweare-intro.webp[/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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\" padding_bottom=\"65\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"40\"]Our Expertise Spans a Range of Specialized Areas[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"24\" type=\"24\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" 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\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Strategy &amp; Branding[/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\" content_alignment=\"center\"]\r\n<p>Shaping identities that capture attention, resonate, and linger.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"23.00\" type=\"23.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-bullhorn fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Marketing &amp; Communications[/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\" content_alignment=\"center\"]Creating campaigns that target and persuade audiences.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"23.00\" type=\"23.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" alignment=\"center\" icon=\"fa-comment-dots fas\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Digital &amp; Social Media[/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\" content_alignment=\"center\"]\r\n<p> Harnessing the virtual sphere for tangible results.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"28.00\" type=\"28.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-handshake fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Partnerships &amp; Community Engagement[/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\" content_alignment=\"center\"]\r\n<p>Connecting and collaborating for amplified impact.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Approach at Good Cause Marketing Partners[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>Every collaboration with <b>Good Cause Marketing Partners</b> promises a holistic approach. We are not just about marketing; we are about creating a ripple effect. Through meticulous positioning and strategy, we endeavor to shape public perceptions, stir emotions, and encourage actions that resonate with your brand values.</p>\r\n<p>Our philosophy for every project is underpinned by three cardinal principles:</p>\r\n<ol>\r\n<li><b>Unified Brand Experience</b>: Enable brands to be consistent, recognizable, and memorable.</li>\r\n<li><b>Vision-Driven Community Building</b>: Construct a brand community that rallies around a shared vision.</li>\r\n<li><b>Strategic Enterprise Framework</b>: Architect a consolidated marketing framework that aligns seamlessly with a company’s ethos.</li>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>The heart of any organization lies in its mission and vision. Recognizing this, we ensure all branding, marketing, and communication endeavors are tuned to echo these sentiments. As guardians of your brand, we understand the nuances of modern consumers, who are as invested in a company\'s ethos as they are in its offerings. This understanding drives us to craft each communication piece as an ambassador of your brand\'s core messages.</p>\r\n<p>In an era dominated by information overload, we champion the art of timely and relevant messaging, reaching out to audiences precisely when and where they should be reached. Transparency, continuous learning, and unwavering accountability guide our every move, ensuring our strategies are not just efficient but progressively innovative.</p>\r\n<ol>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1809|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/who-we-are-intro2.webp[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Let\'s Craft Your Story Together[/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\" margin_bottom=\"0\"]\r\n<p>Every brand has a unique narrative, and every cause has the power to impact. With Good Cause Marketing Partners and the expertise of seasoned professionals like Matt Midura, you’re not just getting a marketing campaign; you’re gaining a dedicated partner in sharing your story with the world. Dive into a partnership where passion, expertise, and genuine commitment come together to create waves of change.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]Connect with Us Today[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','Who We Are','','inherit','closed','closed','','1068-revision-v1','','','2023-08-22 19:38:02','2023-08-22 19:38:02','',1068,'https://test-site.goodcausepartners.com/?p=1821',0,'revision','',0),(1822,1,'2023-08-22 19:38:41','2023-08-22 19:38: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\" 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\" margin_top=\"100px\" admin_label=\"Introduction\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" admin_toggled=\"yes\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]Our Services[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Tailored Solutions for a Digital World</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>In an ever-evolving digital age, effective marketing is both an art and a science. At Good Cause Marketing Partners, we merge creativity with data-driven strategies to bring you comprehensive services tailored for the unique contours of today\'s business and nonprofit landscapes. Whether you\'re looking to amplify your brand, connect with your audience, or catalyze social impact, our suite of services has been meticulously designed to guide you every step of the way. Dive in to discover how we can elevate your mission and transform your vision into tangible results.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1817|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/whatwedo-top.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_bottom=\"55\" admin_toggled=\"yes\" admin_label=\"Service List\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_content_boxes layout=\"icon-on-side\" columns=\"2\" heading_size=\"2\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_color=\"var(--awb-color6)\" iconcolor=\"var(--awb-color5)\" icon_circle=\"no\" icon_size=\"61\"][fusion_content_box title=\"Brand Positioning &amp; Development\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-heart far\"]\r\n<p>We focus on understanding and capturing the core essence of your organization. This process helps in building and positioning a brand that is both genuine and distinct in a highly competitive market.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Creative Design\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-paint-brush fas\"]\r\n<p>Our design team works to create visuals that genuinely represent an organization\'s message and brand essence.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Market Strategy\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullseye fas\"]\r\n<p>Our approach considers the nuances of market dynamics. By crafting strategies tailored to specific needs, we aim to help organizations navigate their sector and connect with their desired audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Visual Identity Systems\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-image far\"]\r\n<p>A consistent brand image is crucial. We work on developing visual identity systems that maintain brand recognition across various platforms and touchpoints.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Research\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-book-reader fas\"]\r\n<p>Through methodical research, we gather valuable insights about market trends, competitors, and potential audience behaviors. This information forms the foundation for our decision-making processes and strategic planning.</p>\r\n[/fusion_content_box][fusion_content_box animation_direction=\"left\" animation_speed=\"0.3\" title=\"Digital Marketing\" icon=\"fa-globe fas\"]In the evolving digital age, we customize strategies in areas like SEO and PPC to help organizations maintain a strong online presence and connect with their audience.[/fusion_content_box][fusion_content_box title=\"Communications\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullhorn fas\"]\r\n<p>We prioritize clear and consistent communication, ensuring that both internal and external messages align with the brand\'s voice and values.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Traditional Advertising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-newspaper fas\"]\r\n<p>Using classic advertising mediums, such as television, print, and radio, we develop campaigns that authentically communicate an organization\'s message to a broader audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Public Relations &amp; Crisis Management\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-first-aid fas\"]\r\n<p>Our team is equipped to manage public relations, emphasizing the positive aspects of a brand. Additionally, during challenging situations, we prioritize maintaining brand integrity and reputation.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Photo / Video Production\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-camera fas\"]\r\n<p>Visual storytelling is powerful. Our team focuses on producing photo and video content that genuinely encapsulates an organization\'s narrative, helping to foster deeper connections with its audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Fundraising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-hand-holding-usd fas\"]\r\n<p>Resource acquisition is crucial for any initiative. We utilize both traditional and innovative methods to gather support, ensuring that projects and campaigns are adequately funded.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Social &amp; Mobile Marketing\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-comment fas\"]\r\n<p>Our efforts in social and mobile marketing aim to ensure organizations are actively participating in relevant digital discussions, reaching their audience on platforms they frequently use.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Strategic Partnerships\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-handshake fas\"]We believe in the value of collaboration. By identifying and managing partnerships that align with a brand\'s ethos, we aim to enrich its presence and impact.[/fusion_content_box][fusion_content_box title=\"Collateral Production &amp; Development\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-map fas\"]We oversee the production and development of various collateral items, ensuring each piece aligns with the brand\'s image and communicates its message effectively.[/fusion_content_box][fusion_content_box title=\"Community Engagement\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-user-friends fas\"]\r\n<p>Engaging with the community is essential. We focus on building strategies that allow organizations to foster meaningful relationships within their community, ensuring active and beneficial participation.</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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"6\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Our Process\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"115%\" pattern_bg_color=\"var(--awb-color1)\" admin_toggled=\"yes\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Process[/fusion_title][fusion_text columns=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<b>Good Cause Marketing Partners</b> harmoniously blends the analytical rigor of the left brain with the creative intuition of the right. This symbiotic approach enables us to deliver a suite of high-impact, integrated services that not only resonate emotionally but are also grounded in data-driven insights. It\'s where imaginative storytelling meets strategic precision, ensuring that every campaign is both evocative and effective.</p>\r\n<p>Embarking on a marketing journey requires a clear roadmap and unwavering commitment. Our five-phase approach ensures that the journey is transparent, collaborative, and always tailored to your objectives. Every step is designed with teamwork and continuous learning at the heart, assuring that our strategies are closely aligned with your aspirations.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Our Collaborations\" padding_top=\"65\" padding_bottom=\"20\" admin_toggled=\"yes\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Our Collaborations: A Spectrum of Industries &amp; Experiences[/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\" margin_bottom=\"0\"]\r\n<p>At Good Cause Marketing Partners, we believe in the power of collaboration, recognizing that our most transformative work often emerges from synergistic relationships with our esteemed partners. Over the years, we\'ve had the privilege of joining forces with diverse industries and dynamic companies, each bringing unique challenges and opportunities. Join us in celebrating these alliances that have not only shaped our journey but have also paved the way for innovative breakthroughs in the world of integrated marketing.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1814|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/whatwedo-comp2.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"30\" margin_top=\"0\" flex_column_spacing=\"0\" padding_bottom=\"75\" admin_toggled=\"yes\" admin_label=\"Collaborations - Industries\"][fusion_builder_row][fusion_builder_column type=\"30\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Commercial Products</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Education &amp; Higher Education</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Financial Planning</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"30\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Nonprofits</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Real Estate</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Sports and Entertainment</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"30\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Television &amp; Radio</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Winery &amp; Hospitality</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Services CTA\" padding_top=\"65\" padding_bottom=\"65\" admin_toggled=\"yes\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1815|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/whatwedo-comp3.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Grow Your Brand for Good[/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\" margin_bottom=\"25\"]\r\n<p>Discover the difference of a strategy that merges creativity with precision. Start your transformation journey with Good Cause Marketing Partners.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Let\'s Get Started[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','What We Do','','inherit','closed','closed','','1723-revision-v1','','','2023-08-22 19:38:41','2023-08-22 19:38:41','',1723,'https://test-site.goodcausepartners.com/?p=1822',0,'revision','',0),(1825,1,'2023-08-22 19:44:36','2023-08-22 19:44: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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\" margin_bottom=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color6-h) + 60),calc(var(--awb-color6-s) + 22%),calc(var(--awb-color6-l) - 30%),var(--awb-color6-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" background_color=\"var(--awb-color6)\"][fusion_builder_row][fusion_builder_column type=\"35\" type=\"35\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" alt=\"Good Cause Marketing Partners\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"45\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<p>Main Menu</p>\r\n[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"var(--awb-color3)\" active_color=\"var(--awb-color4)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" icons_hover_color=\"var(--awb-color4)\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"45\" border_sizes_left=\"1\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Connect with Us[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_5\" type=\"1_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_top=\"5\" padding_right=\"5\" padding_bottom=\"5\" padding_left=\"5\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-headset fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"32\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color2)\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"4_5\" type=\"4_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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 style=\"color: rgb(255, 255, 255); font-size: 16px;\" data-fusion-font=\"true\">Call Good Cause</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_5\" type=\"1_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_top=\"5\" padding_right=\"5\" padding_bottom=\"5\" padding_left=\"5\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-envelope far\" spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"32\" iconcolor=\"var(--awb-color2)\" iconcolor_hover=\"var(--awb-color2)\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"4_5\" type=\"4_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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 style=\"color: rgb(255, 255, 255); font-size: 16px;\" data-fusion-font=\"true\">Email Good Cause</p>\r\n[/fusion_text][/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_top=\"20\"]Follow Us on Social[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"var(--awb-color1)\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 71%))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" box_border_color=\"var(--awb-color1)\" box_border_top=\"1\" box_border_right=\"1\" box_border_bottom=\"1\" box_border_left=\"1\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAyMCAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-22 19:44:36','2023-08-22 19:44:36','',351,'https://test-site.goodcausepartners.com/?p=1825',0,'revision','',0),(1826,1,'2023-08-22 20:52:52','2023-08-22 20:52:52','','FB #1826','','trash','open','open','','__trashed','','','2023-08-22 20:52:52','2023-08-22 20:52:52','',0,'https://test-site.goodcausepartners.com/?p=1826',0,'post','',0),(1827,1,'2023-08-22 20:22:53','2023-08-22 20:22: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\" 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\" admin_label=\"Post Content\" link_color=\"var(--awb-color4)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" spacing_left=\"0\" spacing_right=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" first=\"true\" min_height=\"\" link=\"\"][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\"][fusion_dropcap color=\"var(--awb-color4)\" text_color=\"\" boxed=\"yes\" boxed_radius=\"5px\" class=\"\" id=\"\"]W[/fusion_dropcap]hen most people think of branding, they instantly jump to iconic logos. Yet, in today\'s intricate marketplace, branding extends well beyond a catchy logo or appealing color scheme. For those interested in the evolution and importance of logos, <a href=\"https://www.logodesignlove.com/\" target=\"_blank\" rel=\"noopener noreferrer\">Logo Design Love</a> offers deep dives into world-renowned brands. For small businesses seeking to make a mark, it\'s crucial to understand the multi-dimensional nature of branding. Let\'s delve a little deeper.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Understanding the Essence of Branding[/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\r\nBranding, at its core, is an embodiment of a business\'s identity. It\'s not just a visual marker but a narrative, a story that a company shares with its audience. Historically, branding began as mere symbols or labels on products, showcasing origin or authenticity. Fast forward to today, and it\'s evolved into an amalgamation of values, voice, visuals, and experience.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]The Visual Identity: More than Just a Logo[/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\r\nUndeniably, a logo serves as the frontline soldier of your brand, often offering the first impression. However, other visual elements play equally compelling roles. The color schemes chosen can psychologically resonate with your audience. For a deeper understanding of how colors influence emotions, <a href=\"https://www.canva.com/colors/color-meanings/\" target=\"_blank\" rel=\"noopener noreferrer\">Canva’s Color Wheel and Color Meaning Article</a> is an invaluable resource. Blues, for instance, often instill trust, while reds evoke passion and urgency. When it comes to typography, a site like Typography.com showcases its profound influence on branding. A playful font might appeal to a younger demographic, whereas a more formal one could resonate with a corporate audience. Furthermore, consistent imagery paints a broader picture of what a brand represents.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\nThe Power of Brand Voice and Messaging\r\n\r\n[/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\r\nHave you ever stumbled upon a brand\'s social media post or advertisement and instantly recognized it without even seeing the logo? That\'s brand voice in action. <a href=\"https://sproutsocial.com/insights/?s=brand+voice\" target=\"_blank\" rel=\"noopener noreferrer\">Sprout Social</a> frequently emphasizes the significance of a consistent brand voice on social platforms. Whether quirky, professional, or empathetic, the voice should reflect the brand\'s essence and resonate with its target audience.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Aligning Branding with Business Values and Goals[/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\r\nEvery brand carries a promise, often rooted in its mission and values. Authenticity in branding emerges when there\'s alignment between the brand\'s narrative and its actions. Customers are astute; they can sense discrepancies and quickly call out brands whose actions don\'t match their promises. A business projecting eco-friendliness through branding but found to be using non-sustainable practices might face backlash, affecting its reputation.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Branding Touchpoints: Beyond the Obvious[/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\r\nBranding isn\'t a one-off effort focused solely on external promotions. It\'s intricately woven into multiple touchpoints. Think about the unboxing experience offered by product packaging or the tone used in customer service interactions. Even a brand\'s social media engagements or the ambiance of its physical store plays a role in branding. These touchpoints craft a cohesive customer experience, magnifying the brand\'s impact.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Conclusion[/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\r\nEmbracing a holistic approach to branding, especially for small businesses, is no longer optional—it\'s imperative. It\'s about creating a 360-degree experience, ensuring consistency across every interaction, and genuinely reflecting the brand\'s values. As you reassess your branding efforts, remember: it\'s an orchestra where every instrument, from logo to voice, plays a vital role in producing a harmonious brand symphony.\r\n\r\n[/fusion_text][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\r\nIf you have questions or would like to discuss your business or organization\'s branding further, don\'t hesitate to contact us at Good Cause Marketing Partners. We\'re here to help guide, support and elevate your branding to its fullest potential. Let\'s create a resonant brand story together!\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Beyond Just a Logo: The Holistic Approach to Small Business Branding','Cursus in id ut congue commodo. Arcu nullam nibh elit elementum dictumst ultricies turpis cras. Mattis elementum.','publish','open','open','','branding-beyond-just-a-logo','','','2023-08-22 20:50:15','2023-08-22 20:50:15','',0,'https://test-site.goodcausepartners.com/?p=1827',0,'post','',0),(1829,1,'2023-08-22 20:40:37','2023-08-22 20:40: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\" 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\" admin_label=\"Post Content\" link_color=\"var(--awb-color4)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" spacing_left=\"0\" spacing_right=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" first=\"true\" min_height=\"\" link=\"\"][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>[fusion_dropcap color=\"var(--awb-color4)\" text_color=\"\" boxed=\"yes\" boxed_radius=\"5px\" class=\"\" id=\"\"]W[/fusion_dropcap]hen most people think of branding, they instantly jump to iconic logos. Yet, in today\'s intricate marketplace, branding extends well beyond a catchy logo or appealing color scheme. For those interested in the evolution and importance of logos, <a href=\"https://www.logodesignlove.com/\" target=\"_blank\" rel=\"noopener noreferrer\">Logo Design Love</a> offers deep dives into world-renowned brands. For small businesses seeking to make a mark, it\'s crucial to understand the multi-dimensional nature of branding. Let\'s delve a little deeper.<br></p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Understanding the Essence of Branding[/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>Branding, at its core, is an embodiment of a business\'s identity. It\'s not just a visual marker but a narrative, a story that a company shares with its audience. Historically, branding began as mere symbols or labels on products, showcasing origin or authenticity. Fast forward to today, and it\'s evolved into an amalgamation of values, voice, visuals, and experience.<br></p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]The Visual Identity: More than Just a Logo[/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>Undeniably, a logo serves as the frontline soldier of your brand, often offering the first impression. However, other visual elements play equally compelling roles. The color schemes chosen can psychologically resonate with your audience. For a deeper understanding of how colors influence emotions, <a href=\"https://www.canva.com/colors/color-meanings/\" target=\"_blank\" rel=\"noopener noreferrer\">Canva’s Color Wheel and Color Meaning Article</a> is an invaluable resource. Blues, for instance, often instill trust, while reds evoke passion and urgency. When it comes to typography, a site like Typography.com showcases its profound influence on branding. A playful font might appeal to a younger demographic, whereas a more formal one could resonate with a corporate audience. Furthermore, consistent imagery paints a broader picture of what a brand represents.</p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]<p>The Power of Brand Voice and Messaging</p>[/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>Have you ever stumbled upon a brand\'s social media post or advertisement and instantly recognized it without even seeing the logo? That\'s brand voice in action. <a href=\"https://sproutsocial.com/insights/?s=brand+voice\" target=\"_blank\" rel=\"noopener noreferrer\">Sprout Social</a> frequently emphasizes the significance of a consistent brand voice on social platforms. Whether quirky, professional, or empathetic, the voice should reflect the brand\'s essence and resonate with its target audience.</p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Aligning Branding with Business Values and Goals[/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>Every brand carries a promise, often rooted in its mission and values. Authenticity in branding emerges when there\'s alignment between the brand\'s narrative and its actions. Customers are astute; they can sense discrepancies and quickly call out brands whose actions don\'t match their promises. A business projecting eco-friendliness through branding but found to be using non-sustainable practices might face backlash, affecting its reputation.</p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Branding Touchpoints: Beyond the Obvious[/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>Branding isn\'t a one-off effort focused solely on external promotions. It\'s intricately woven into multiple touchpoints. Think about the unboxing experience offered by product packaging or the tone used in customer service interactions. Even a brand\'s social media engagements or the ambiance of its physical store plays a role in branding. These touchpoints craft a cohesive customer experience, magnifying the brand\'s impact.</p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Conclusion[/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>Embracing a holistic approach to branding, especially for small businesses, is no longer optional—it\'s imperative. It\'s about creating a 360-degree experience, ensuring consistency across every interaction, and genuinely reflecting the brand\'s values. As you reassess your branding efforts, remember: it\'s an orchestra where every instrument, from logo to voice, plays a vital role in producing a harmonious brand symphony.</p>[/fusion_text][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>If you have questions or would like to discuss your business or organization\'s branding further, don\'t hesitate to contact us at Good Cause Marketing Partners. We\'re here to help guide, support and elevate your branding to its fullest potential. Let\'s create a resonant brand story together!</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Beyond Just a Logo: The Holistic Approach to Small Business Branding','Cursus in id ut congue commodo. Arcu nullam nibh elit elementum dictumst ultricies turpis cras. Mattis elementum.','inherit','closed','closed','','1827-revision-v1','','','2023-08-22 20:40:37','2023-08-22 20:40:37','',1827,'https://test-site.goodcausepartners.com/?p=1829',0,'revision','',0),(1828,1,'2023-08-22 20:22:53','2023-08-22 20:22: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\" 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\" admin_label=\"Post Content\" link_color=\"var(--awb-color4)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" spacing_left=\"0\" spacing_right=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\nunlocking the secrets of server uptime\r\n\r\n[/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[fusion_dropcap color=\"var(--awb-color4)\" text_color=\"\" boxed=\"yes\" boxed_radius=\"5px\" class=\"\" id=\"\"]B[/fusion_dropcap]aulpa voluptatem et dolorem rerum aut necessitatibus provident sed eligendi dolor rem nulla eveniet. Non voluptatem nisi et natus incidunt et dolores rerum qui nihil corporis. Qui quos asperiores et sint sequi dolor iste emst provident Quis. Ad excepturi esse et beatae molestiae ut natus molestiae ut officiis officia.\r\n\r\nIn dolor labore 33 rerum rerum cum galisum tempore ut architecto quam sit eror saepe. Ex minus quis est nesciu nt autem et molestiae internos At harum dolorem ex modi tempore?\r\n\r\n[/fusion_text][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color5)\" margin_bottom=\"25px\"][fusion_li_item]\r\n\r\n<strong>Maximize your website\'s potential</strong>\r\n\r\n[/fusion_li_item][fusion_li_item]\r\n\r\n<strong>Get the speed and performance you need</strong>\r\n\r\n[/fusion_li_item][fusion_li_item]\r\n\r\n<strong>Future-proof your website with hosting technology</strong>\r\n\r\n[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\nensuring your website is always accessible\r\n\r\n[/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\" margin_bottom=\"40px\"]Vel corrupti omnis non reprehenderit omnis et rerum consequuntur vel aspernatur vitae nam itaque error hic minima voluptas. Et placeat quae id iure natus qui doloribus voluptatem est rerum neque aut internos enim qui provident consequatur! In autem provident non sequi pariatur est maiores culpa est velit recusandae non ipsum ipsum.\r\n\r\nNam unde galisum sed sunt veritatis <span style=\"color: var(--awb-color4);\"><a href=\"#\">non asperiores quia id excepturi</a></span> repudiandae qui odit iusto. Ut blanditiis incidunt et molestiae laudantium qui dolores ducimus non sint corporis aut quae galisum et nisi recusandae. Et odio galisum qui dolore soluta et voluptatem magni.\r\n\r\nQui error unde est possimus repellat qui ipsa rerum! Et eaque nihil ex voluptatem dolorem ut nulla incidunt id inventore animi aut repellendus dolorem quo omnis neque et dolore rerum?[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"110\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"120\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1030|full\" borderradius=\"5px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-image-1.jpg[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"40px\" last=\"true\" border_position=\"all\" padding_top_small=\"40px\" padding_left_medium=\"20px\" padding_right_small=\"40px\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\njump to a similar post\r\n\r\n[/fusion_title][fusion_post_cards post_card=\"814\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"1\" 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\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"1\" columns_small=\"0\" columns=\"1\" column_spacing=\"40\" row_spacing=\"0\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][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\" margin_bottom=\"40px\" margin_top=\"40px\"]\r\n\r\nEst omnis accusamus sed dolorum veniam qui dolores quae est ratione reprehenderit. Es temporibus sunt quo quos nihil ea quibusdam rerum non sunt placeat. Sit nulla eius sit tempore quam et tempora ratione sed porred molestiae non odio sed ipsum consequuntur voluptatem omnis ea quisquam.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\nart of website migration: the seamless transition\r\n\r\n[/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\r\nAd esse quos est eaque libero et dignissimos dolores et dolor aperiam non adipisci possimus sed fugiat assumenda eos ipsa quas. Et soluta maiores est quia internos eos eius quidem qui nemo quibusdam sit nostrum consequuntur ut laudantium magni. Qui numquam fuga quo facilis similique sed odit iusto sit molestiae accusamus.\r\n\r\n[/fusion_text][fusion_progress percentage=\"70\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"yes\" animated_stripes=\"yes\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\"]Website Speed Optimization[/fusion_progress][fusion_progress percentage=\"90\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"yes\" animated_stripes=\"no\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\" margin_bottom=\"10px\" filledcolor=\"var(--awb-color4)\"]Managed WordPress Hosting[/fusion_progress][fusion_progress percentage=\"80\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"no\" animated_stripes=\"no\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\" margin_bottom=\"10px\"]Generate Leads &amp; Earn Money[/fusion_progress][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\" margin_bottom=\"60px\" margin_top=\"40px\" columns=\"2\"]\r\n\r\nEst omnis accusamus sed dolorum veniam qui dolores quae est ratione reprehenderit. Es temporibus sunt quo quos nihil ea quibusdam rerum non sunt placeat. Sit nulla eius sit tempore quam et tempora ratione sed porred molestiae non odio sed ipsum consequuntur volupta em omnis quisquam repellendus consequuntur est facere sequi et temporibus nobis. Eum labore mollitia cum delectus quia ut rerum accusantium. Qui quod enim aut illo error aut laboriosam.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Beyond Just a Logo: The Holistic Approach to Small Business Branding','Cursus in id ut congue commodo. Arcu nullam nibh elit elementum dictumst ultricies turpis cras. Mattis elementum.','inherit','closed','closed','','1827-revision-v1','','','2023-08-22 20:22:53','2023-08-22 20:22:53','',1827,'https://test-site.goodcausepartners.com/?p=1828',0,'revision','',0),(1830,1,'2023-08-22 20:48:13','2023-08-22 20:48:13','','brand-blog1-feature','','inherit','open','closed','','brand-blog1-feature','','','2023-08-22 20:48:13','2023-08-22 20:48:13','',1827,'https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/brand-blog1-feature.webp',0,'attachment','image/webp',0),(1831,1,'2023-08-22 20:49:06','2023-08-22 20:49: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\" 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\" admin_label=\"Post Content\" link_color=\"var(--awb-color4)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" spacing_left=\"0\" spacing_right=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" first=\"true\" min_height=\"\" link=\"\"][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\"][fusion_dropcap color=\"var(--awb-color4)\" text_color=\"\" boxed=\"yes\" boxed_radius=\"5px\" class=\"\" id=\"\"]W[/fusion_dropcap]hen most people think of branding, they instantly jump to iconic logos. Yet, in today\'s intricate marketplace, branding extends well beyond a catchy logo or appealing color scheme. For those interested in the evolution and importance of logos, <a href=\"https://www.logodesignlove.com/\" target=\"_blank\" rel=\"noopener noreferrer\">Logo Design Love</a> offers deep dives into world-renowned brands. For small businesses seeking to make a mark, it\'s crucial to understand the multi-dimensional nature of branding. Let\'s delve a little deeper.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Understanding the Essence of Branding[/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\r\nBranding, at its core, is an embodiment of a business\'s identity. It\'s not just a visual marker but a narrative, a story that a company shares with its audience. Historically, branding began as mere symbols or labels on products, showcasing origin or authenticity. Fast forward to today, and it\'s evolved into an amalgamation of values, voice, visuals, and experience.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]The Visual Identity: More than Just a Logo[/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\r\nUndeniably, a logo serves as the frontline soldier of your brand, often offering the first impression. However, other visual elements play equally compelling roles. The color schemes chosen can psychologically resonate with your audience. For a deeper understanding of how colors influence emotions, <a href=\"https://www.canva.com/colors/color-meanings/\" target=\"_blank\" rel=\"noopener noreferrer\">Canva’s Color Wheel and Color Meaning Article</a> is an invaluable resource. Blues, for instance, often instill trust, while reds evoke passion and urgency. When it comes to typography, a site like Typography.com showcases its profound influence on branding. A playful font might appeal to a younger demographic, whereas a more formal one could resonate with a corporate audience. Furthermore, consistent imagery paints a broader picture of what a brand represents.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\nThe Power of Brand Voice and Messaging\r\n\r\n[/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\r\nHave you ever stumbled upon a brand\'s social media post or advertisement and instantly recognized it without even seeing the logo? That\'s brand voice in action. <a href=\"https://sproutsocial.com/insights/?s=brand+voice\" target=\"_blank\" rel=\"noopener noreferrer\">Sprout Social</a> frequently emphasizes the significance of a consistent brand voice on social platforms. Whether quirky, professional, or empathetic, the voice should reflect the brand\'s essence and resonate with its target audience.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Aligning Branding with Business Values and Goals[/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\r\nEvery brand carries a promise, often rooted in its mission and values. Authenticity in branding emerges when there\'s alignment between the brand\'s narrative and its actions. Customers are astute; they can sense discrepancies and quickly call out brands whose actions don\'t match their promises. A business projecting eco-friendliness through branding but found to be using non-sustainable practices might face backlash, affecting its reputation.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Branding Touchpoints: Beyond the Obvious[/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\r\nBranding isn\'t a one-off effort focused solely on external promotions. It\'s intricately woven into multiple touchpoints. Think about the unboxing experience offered by product packaging or the tone used in customer service interactions. Even a brand\'s social media engagements or the ambiance of its physical store plays a role in branding. These touchpoints craft a cohesive customer experience, magnifying the brand\'s impact.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Conclusion[/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\r\nEmbracing a holistic approach to branding, especially for small businesses, is no longer optional—it\'s imperative. It\'s about creating a 360-degree experience, ensuring consistency across every interaction, and genuinely reflecting the brand\'s values. As you reassess your branding efforts, remember: it\'s an orchestra where every instrument, from logo to voice, plays a vital role in producing a harmonious brand symphony.\r\n\r\n[/fusion_text][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\r\nIf you have questions or would like to discuss your business or organization\'s branding further, don\'t hesitate to contact us at Good Cause Marketing Partners. We\'re here to help guide, support and elevate your branding to its fullest potential. Let\'s create a resonant brand story together!\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Beyond Just a Logo: The Holistic Approach to Small Business Branding','Cursus in id ut congue commodo. Arcu nullam nibh elit elementum dictumst ultricies turpis cras. Mattis elementum.','inherit','closed','closed','','1827-revision-v1','','','2023-08-22 20:49:06','2023-08-22 20:49:06','',1827,'https://test-site.goodcausepartners.com/?p=1831',0,'revision','',0),(1832,1,'2023-08-22 20:52:52','2023-08-22 20:52:52','','FB #1826','','inherit','closed','closed','','1826-revision-v1','','','2023-08-22 20:52:52','2023-08-22 20:52:52','',1826,'https://test-site.goodcausepartners.com/?p=1832',0,'revision','',0),(1833,1,'2023-08-22 20:52:52','2023-08-22 20:52:52','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','inherit','closed','closed','','1-revision-v1','','','2023-08-22 20:52:52','2023-08-22 20:52:52','',1,'https://test-site.goodcausepartners.com/?p=1833',0,'revision','',0),(1834,1,'2023-08-22 20:53:38','2023-08-22 20:53: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\" 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\" admin_label=\"Post Content\" link_color=\"var(--awb-color4)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" spacing_left=\"0\" spacing_right=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n<p>unlocking the secrets of server uptime</p>\r\n[/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[fusion_dropcap color=\"var(--awb-color4)\" text_color=\"\" boxed=\"yes\" boxed_radius=\"5px\" class=\"\" id=\"\"]B[/fusion_dropcap]aulpa voluptatem et dolorem rerum aut necessitatibus provident sed eligendi dolor rem nulla eveniet. Non voluptatem nisi et natus incidunt et dolores rerum qui nihil corporis. Qui quos asperiores et sint sequi dolor iste emst provident Quis. Ad excepturi esse et beatae molestiae ut natus molestiae ut officiis officia.</p>\r\n<p>In dolor labore 33 rerum rerum cum galisum tempore ut architecto quam sit eror saepe. Ex minus quis est nesciu nt autem et molestiae internos At harum dolorem ex modi tempore?</p>\r\n[/fusion_text][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color5)\" margin_bottom=\"25px\"][fusion_li_item]\r\n<p><strong>Maximize your website\'s potential</strong></p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p><strong>Get the speed and performance you need</strong></p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p><strong>Future-proof your website with hosting technology</strong></p>\r\n[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n<p>ensuring your website is always accessible</p>\r\n[/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\" margin_bottom=\"40px\"]Vel corrupti omnis non reprehenderit omnis et rerum consequuntur vel aspernatur vitae nam itaque error hic minima voluptas. Et placeat quae id iure natus qui doloribus voluptatem est rerum neque aut internos enim qui provident consequatur! In autem provident non sequi pariatur est maiores culpa est velit recusandae non ipsum ipsum.</p>\r\n<p>Nam unde galisum sed sunt veritatis <span style=\"color: var(--awb-color4);\"><a href=\"#\">non asperiores quia id excepturi</a></span> repudiandae qui odit iusto. Ut blanditiis incidunt et molestiae laudantium qui dolores ducimus non sint corporis aut quae galisum et nisi recusandae. Et odio galisum qui dolore soluta et voluptatem magni.</p>\r\n<p>Qui error unde est possimus repellat qui ipsa rerum! Et eaque nihil ex voluptatem dolorem ut nulla incidunt id inventore animi aut repellendus dolorem quo omnis neque et dolore rerum?[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"110\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"120\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1030|full\" borderradius=\"5px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-image-1.jpg[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"40px\" last=\"true\" border_position=\"all\" padding_top_small=\"40px\" padding_left_medium=\"20px\" padding_right_small=\"40px\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n<p>jump to a similar post</p>\r\n[/fusion_title][fusion_post_cards post_card=\"814\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"1\" 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\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"1\" columns_small=\"0\" columns=\"1\" column_spacing=\"40\" row_spacing=\"0\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][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\" margin_bottom=\"40px\" margin_top=\"40px\"]\r\n<p>Est omnis accusamus sed dolorum veniam qui dolores quae est ratione reprehenderit. Es temporibus sunt quo quos nihil ea quibusdam rerum non sunt placeat. Sit nulla eius sit tempore quam et tempora ratione sed porred molestiae non odio sed ipsum consequuntur voluptatem omnis ea quisquam.</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=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n<p>art of website migration: the seamless transition</p>\r\n[/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>Ad esse quos est eaque libero et dignissimos dolores et dolor aperiam non adipisci possimus sed fugiat assumenda eos ipsa quas. Et soluta maiores est quia internos eos eius quidem qui nemo quibusdam sit nostrum consequuntur ut laudantium magni. Qui numquam fuga quo facilis similique sed odit iusto sit molestiae accusamus.</p>\r\n[/fusion_text][fusion_progress percentage=\"70\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"yes\" animated_stripes=\"yes\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\"]Website Speed Optimization[/fusion_progress][fusion_progress percentage=\"90\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"yes\" animated_stripes=\"no\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\" margin_bottom=\"10px\" filledcolor=\"var(--awb-color4)\"]Managed WordPress Hosting[/fusion_progress][fusion_progress percentage=\"80\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"no\" animated_stripes=\"no\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\" margin_bottom=\"10px\"]Generate Leads &amp; Earn Money[/fusion_progress][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\" margin_bottom=\"60px\" margin_top=\"40px\" columns=\"2\"]\r\n<p>Est omnis accusamus sed dolorum veniam qui dolores quae est ratione reprehenderit. Es temporibus sunt quo quos nihil ea quibusdam rerum non sunt placeat. Sit nulla eius sit tempore quam et tempora ratione sed porred molestiae non odio sed ipsum consequuntur volupta em omnis quisquam repellendus consequuntur est facere sequi et temporibus nobis. Eum labore mollitia cum delectus quia ut rerum accusantium. Qui quod enim aut illo error aut laboriosam.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Maximizing Uptime: How reliable hosting ensures your website stays online','Cursus in id ut congue commodo. Arcu nullam nibh elit elementum dictumst ultricies turpis cras. Mattis elementum.','inherit','closed','closed','','1256-revision-v1','','','2023-08-22 20:53:38','2023-08-22 20:53:38','',1256,'https://test-site.goodcausepartners.com/?p=1834',0,'revision','',0),(1835,1,'2023-08-22 20:53:38','2023-08-22 20:53: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\" 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\" admin_label=\"Post Content\" link_color=\"var(--awb-color4)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" spacing_left=\"0\" spacing_right=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\nunlocking the secrets of server uptime\r\n\r\n[/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[fusion_dropcap color=\"var(--awb-color4)\" text_color=\"\" boxed=\"yes\" boxed_radius=\"5px\" class=\"\" id=\"\"]B[/fusion_dropcap]aulpa voluptatem et dolorem rerum aut necessitatibus provident sed eligendi dolor rem nulla eveniet. Non voluptatem nisi et natus incidunt et dolores rerum qui nihil corporis. Qui quos asperiores et sint sequi dolor iste emst provident Quis. Ad excepturi esse et beatae molestiae ut natus molestiae ut officiis officia.\r\n\r\nIn dolor labore 33 rerum rerum cum galisum tempore ut architecto quam sit eror saepe. Ex minus quis est nesciu nt autem et molestiae internos At harum dolorem ex modi tempore?\r\n\r\n[/fusion_text][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color5)\" margin_bottom=\"25px\"][fusion_li_item]\r\n\r\n<strong>Maximize your website\'s potential</strong>\r\n\r\n[/fusion_li_item][fusion_li_item]\r\n\r\n<strong>Get the speed and performance you need</strong>\r\n\r\n[/fusion_li_item][fusion_li_item]\r\n\r\n<strong>Future-proof your website with hosting technology</strong>\r\n\r\n[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\nensuring your website is always accessible\r\n\r\n[/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\" margin_bottom=\"40px\"]Vel corrupti omnis non reprehenderit omnis et rerum consequuntur vel aspernatur vitae nam itaque error hic minima voluptas. Et placeat quae id iure natus qui doloribus voluptatem est rerum neque aut internos enim qui provident consequatur! In autem provident non sequi pariatur est maiores culpa est velit recusandae non ipsum ipsum.\r\n\r\nNam unde galisum sed sunt veritatis <span style=\"color: var(--awb-color4);\"><a href=\"#\">non asperiores quia id excepturi</a></span> repudiandae qui odit iusto. Ut blanditiis incidunt et molestiae laudantium qui dolores ducimus non sint corporis aut quae galisum et nisi recusandae. Et odio galisum qui dolore soluta et voluptatem magni.\r\n\r\nQui error unde est possimus repellat qui ipsa rerum! Et eaque nihil ex voluptatem dolorem ut nulla incidunt id inventore animi aut repellendus dolorem quo omnis neque et dolore rerum?[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"110\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"120\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1030|full\" borderradius=\"5px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-image-1.jpg[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"40px\" last=\"true\" border_position=\"all\" padding_top_small=\"40px\" padding_left_medium=\"20px\" padding_right_small=\"40px\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\njump to a similar post\r\n\r\n[/fusion_title][fusion_post_cards post_card=\"814\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"1\" 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\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"1\" columns_small=\"0\" columns=\"1\" column_spacing=\"40\" row_spacing=\"0\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][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\" margin_bottom=\"40px\" margin_top=\"40px\"]\r\n\r\nEst omnis accusamus sed dolorum veniam qui dolores quae est ratione reprehenderit. Es temporibus sunt quo quos nihil ea quibusdam rerum non sunt placeat. Sit nulla eius sit tempore quam et tempora ratione sed porred molestiae non odio sed ipsum consequuntur voluptatem omnis ea quisquam.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\nart of website migration: the seamless transition\r\n\r\n[/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\r\nAd esse quos est eaque libero et dignissimos dolores et dolor aperiam non adipisci possimus sed fugiat assumenda eos ipsa quas. Et soluta maiores est quia internos eos eius quidem qui nemo quibusdam sit nostrum consequuntur ut laudantium magni. Qui numquam fuga quo facilis similique sed odit iusto sit molestiae accusamus.\r\n\r\n[/fusion_text][fusion_progress percentage=\"70\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"yes\" animated_stripes=\"yes\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\"]Website Speed Optimization[/fusion_progress][fusion_progress percentage=\"90\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"yes\" animated_stripes=\"no\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\" margin_bottom=\"10px\" filledcolor=\"var(--awb-color4)\"]Managed WordPress Hosting[/fusion_progress][fusion_progress percentage=\"80\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"no\" animated_stripes=\"no\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\" margin_bottom=\"10px\"]Generate Leads &amp; Earn Money[/fusion_progress][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\" margin_bottom=\"60px\" margin_top=\"40px\" columns=\"2\"]\r\n\r\nEst omnis accusamus sed dolorum veniam qui dolores quae est ratione reprehenderit. Es temporibus sunt quo quos nihil ea quibusdam rerum non sunt placeat. Sit nulla eius sit tempore quam et tempora ratione sed porred molestiae non odio sed ipsum consequuntur volupta em omnis quisquam repellendus consequuntur est facere sequi et temporibus nobis. Eum labore mollitia cum delectus quia ut rerum accusantium. Qui quod enim aut illo error aut laboriosam.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','From shared to dedicated hosting: Which service is right for You and why?','Rhoncus tellus pretium urna turpis sed vitae sit. Fringilla euismod quis amet suspendise tempus. Mauris quis vulputate.','inherit','closed','closed','','776-revision-v1','','','2023-08-22 20:53:38','2023-08-22 20:53:38','',776,'https://test-site.goodcausepartners.com/?p=1835',0,'revision','',0),(1836,1,'2023-08-22 20:53:38','2023-08-22 20:53: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\" 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\" admin_label=\"Post Content\" link_color=\"var(--awb-color4)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" spacing_left=\"0\" spacing_right=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\nunlocking the secrets of server uptime\r\n\r\n[/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[fusion_dropcap color=\"var(--awb-color4)\" text_color=\"\" boxed=\"yes\" boxed_radius=\"5px\" class=\"\" id=\"\"]B[/fusion_dropcap]aulpa voluptatem et dolorem rerum aut necessitatibus provident sed eligendi dolor rem nulla eveniet. Non voluptatem nisi et natus incidunt et dolores rerum qui nihil corporis. Qui quos asperiores et sint sequi dolor iste emst provident Quis. Ad excepturi esse et beatae molestiae ut natus molestiae ut officiis officia.\r\n\r\nIn dolor labore 33 rerum rerum cum galisum tempore ut architecto quam sit eror saepe. Ex minus quis est nesciu nt autem et molestiae internos At harum dolorem ex modi tempore?\r\n\r\n[/fusion_text][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color5)\" margin_bottom=\"25px\"][fusion_li_item]\r\n\r\n<strong>Maximize your website\'s potential</strong>\r\n\r\n[/fusion_li_item][fusion_li_item]\r\n\r\n<strong>Get the speed and performance you need</strong>\r\n\r\n[/fusion_li_item][fusion_li_item]\r\n\r\n<strong>Future-proof your website with hosting technology</strong>\r\n\r\n[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\nensuring your website is always accessible\r\n\r\n[/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\" margin_bottom=\"40px\"]Vel corrupti omnis non reprehenderit omnis et rerum consequuntur vel aspernatur vitae nam itaque error hic minima voluptas. Et placeat quae id iure natus qui doloribus voluptatem est rerum neque aut internos enim qui provident consequatur! In autem provident non sequi pariatur est maiores culpa est velit recusandae non ipsum ipsum.\r\n\r\nNam unde galisum sed sunt veritatis <span style=\"color: var(--awb-color4);\"><a href=\"#\">non asperiores quia id excepturi</a></span> repudiandae qui odit iusto. Ut blanditiis incidunt et molestiae laudantium qui dolores ducimus non sint corporis aut quae galisum et nisi recusandae. Et odio galisum qui dolore soluta et voluptatem magni.\r\n\r\nQui error unde est possimus repellat qui ipsa rerum! Et eaque nihil ex voluptatem dolorem ut nulla incidunt id inventore animi aut repellendus dolorem quo omnis neque et dolore rerum?[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"110\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"120\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1030|full\" borderradius=\"5px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-image-1.jpg[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"40px\" last=\"true\" border_position=\"all\" padding_top_small=\"40px\" padding_left_medium=\"20px\" padding_right_small=\"40px\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\njump to a similar post\r\n\r\n[/fusion_title][fusion_post_cards post_card=\"814\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"1\" 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\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"1\" columns_small=\"0\" columns=\"1\" column_spacing=\"40\" row_spacing=\"0\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][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\" margin_bottom=\"40px\" margin_top=\"40px\"]\r\n\r\nEst omnis accusamus sed dolorum veniam qui dolores quae est ratione reprehenderit. Es temporibus sunt quo quos nihil ea quibusdam rerum non sunt placeat. Sit nulla eius sit tempore quam et tempora ratione sed porred molestiae non odio sed ipsum consequuntur voluptatem omnis ea quisquam.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\nart of website migration: the seamless transition\r\n\r\n[/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\r\nAd esse quos est eaque libero et dignissimos dolores et dolor aperiam non adipisci possimus sed fugiat assumenda eos ipsa quas. Et soluta maiores est quia internos eos eius quidem qui nemo quibusdam sit nostrum consequuntur ut laudantium magni. Qui numquam fuga quo facilis similique sed odit iusto sit molestiae accusamus.\r\n\r\n[/fusion_text][fusion_progress percentage=\"70\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"yes\" animated_stripes=\"yes\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\"]Website Speed Optimization[/fusion_progress][fusion_progress percentage=\"90\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"yes\" animated_stripes=\"no\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\" margin_bottom=\"10px\" filledcolor=\"var(--awb-color4)\"]Managed WordPress Hosting[/fusion_progress][fusion_progress percentage=\"80\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"no\" animated_stripes=\"no\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\" margin_bottom=\"10px\"]Generate Leads &amp; Earn Money[/fusion_progress][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\" margin_bottom=\"60px\" margin_top=\"40px\" columns=\"2\"]\r\n\r\nEst omnis accusamus sed dolorum veniam qui dolores quae est ratione reprehenderit. Es temporibus sunt quo quos nihil ea quibusdam rerum non sunt placeat. Sit nulla eius sit tempore quam et tempora ratione sed porred molestiae non odio sed ipsum consequuntur volupta em omnis quisquam repellendus consequuntur est facere sequi et temporibus nobis. Eum labore mollitia cum delectus quia ut rerum accusantium. Qui quod enim aut illo error aut laboriosam.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','How our hosting service can improve your website\'s speed and performance','Cursus in id ut congue commodo. Arcu nullam nibh elit elementum dictumst ultricies turpis cras. Mattis elementum.','inherit','closed','closed','','774-revision-v1','','','2023-08-22 20:53:38','2023-08-22 20:53:38','',774,'https://test-site.goodcausepartners.com/?p=1836',0,'revision','',0),(1837,1,'2023-08-22 20:53:38','2023-08-22 20:53: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\" 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\" admin_label=\"Post Content\" link_color=\"var(--awb-color4)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" spacing_left=\"0\" spacing_right=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\ncertain hosting plans have resource limitations\r\n\r\n[/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[fusion_dropcap color=\"var(--awb-color4)\" text_color=\"\" boxed=\"yes\" boxed_radius=\"5px\" class=\"\" id=\"\"]B[/fusion_dropcap]aulpa voluptatem et dolorem rerum aut necessitatibus provident sed eligendi dolor rem nulla eveniet. Non voluptatem nisi et natus incidunt et dolores rerum qui nihil corporis. Qui quos asperiores et sint sequi dolor iste emst provident Quis. Ad excepturi esse et beatae molestiae ut natus molestiae ut officiis officia.\r\n\r\nIn dolor labore 33 rerum rerum cum galisum tempore ut architecto quam sit eror saepe. Ex minus quis est nesciu nt autem et molestiae internos At harum dolorem ex modi tempore?\r\n\r\n[/fusion_text][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color5)\" margin_bottom=\"25px\"][fusion_li_item]\r\n\r\n<strong>Maximize your website\'s potential</strong>\r\n\r\n[/fusion_li_item][fusion_li_item]\r\n\r\n<strong>Get the speed and performance you need</strong>\r\n\r\n[/fusion_li_item][fusion_li_item]\r\n\r\n<strong>Future-proof your website with hosting technology</strong>\r\n\r\n[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\nensuring your website is always accessible\r\n\r\n[/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\" margin_bottom=\"40px\"]Vel corrupti omnis non reprehenderit omnis et rerum consequuntur vel aspernatur vitae nam itaque error hic minima voluptas. Et placeat quae id iure natus qui doloribus voluptatem est rerum neque aut internos enim qui provident consequatur! In autem provident non sequi pariatur est maiores culpa est velit recusandae non ipsum ipsum.\r\n\r\nNam unde galisum sed sunt veritatis <span style=\"color: var(--awb-color4);\"><a href=\"#\">non asperiores quia id excepturi</a></span> repudiandae qui odit iusto. Ut blanditiis incidunt et molestiae laudantium qui dolores ducimus non sint corporis aut quae galisum et nisi recusandae. Et odio galisum qui dolore soluta et voluptatem magni.\r\n\r\nQui error unde est possimus repellat qui ipsa rerum! Et eaque nihil ex voluptatem dolorem ut nulla incidunt id inventore animi aut repellendus dolorem quo omnis neque et dolore rerum?[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"110\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"120\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1030|full\" borderradius=\"5px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-image-1.jpg[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"40px\" last=\"true\" border_position=\"all\" padding_top_small=\"40px\" padding_left_medium=\"20px\" padding_right_small=\"40px\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\njump to a similar post\r\n\r\n[/fusion_title][fusion_post_cards post_card=\"814\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"1\" 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\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"1\" columns_small=\"0\" columns=\"1\" column_spacing=\"40\" row_spacing=\"0\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][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\" margin_bottom=\"40px\" margin_top=\"40px\"]\r\n\r\nEst omnis accusamus sed dolorum veniam qui dolores quae est ratione reprehenderit. Es temporibus sunt quo quos nihil ea quibusdam rerum non sunt placeat. Sit nulla eius sit tempore quam et tempora ratione sed porred molestiae non odio sed ipsum consequuntur voluptatem omnis ea quisquam.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\nart of website migration: the seamless transition\r\n\r\n[/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\r\nAd esse quos est eaque libero et dignissimos dolores et dolor aperiam non adipisci possimus sed fugiat assumenda eos ipsa quas. Et soluta maiores est quia internos eos eius quidem qui nemo quibusdam sit nostrum consequuntur ut laudantium magni. Qui numquam fuga quo facilis similique sed odit iusto sit molestiae accusamus.\r\n\r\n[/fusion_text][fusion_progress percentage=\"70\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"yes\" animated_stripes=\"yes\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\"]Website Speed Optimization[/fusion_progress][fusion_progress percentage=\"90\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"yes\" animated_stripes=\"no\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\" margin_bottom=\"10px\" filledcolor=\"var(--awb-color4)\"]Managed WordPress Hosting[/fusion_progress][fusion_progress percentage=\"80\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"no\" animated_stripes=\"no\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\" margin_bottom=\"10px\"]Generate Leads &amp; Earn Money[/fusion_progress][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\" margin_bottom=\"60px\" margin_top=\"40px\" columns=\"2\"]\r\n\r\nEst omnis accusamus sed dolorum veniam qui dolores quae est ratione reprehenderit. Es temporibus sunt quo quos nihil ea quibusdam rerum non sunt placeat. Sit nulla eius sit tempore quam et tempora ratione sed porred molestiae non odio sed ipsum consequuntur volupta em omnis quisquam repellendus consequuntur est facere sequi et temporibus nobis. Eum labore mollitia cum delectus quia ut rerum accusantium. Qui quod enim aut illo error aut laboriosam.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','The pros and cons of free hosting services: Why you get what you pay for','Rhoncus tellus pretium urna turpis sed vitae sit. Fringilla euismod quis amet suspendise tempus. Mauris quis vulputate.','inherit','closed','closed','','772-revision-v1','','','2023-08-22 20:53:38','2023-08-22 20:53:38','',772,'https://test-site.goodcausepartners.com/?p=1837',0,'revision','',0),(1838,1,'2023-08-22 20:53:38','2023-08-22 20:53: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\" 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\" admin_label=\"Post Content\" link_color=\"var(--awb-color4)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" spacing_left=\"0\" spacing_right=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\nsecure your website, protect your online presence\r\n\r\n[/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[fusion_dropcap color=\"var(--awb-color4)\" text_color=\"\" boxed=\"yes\" boxed_radius=\"5px\" class=\"\" id=\"\"]B[/fusion_dropcap]aulpa voluptatem et dolorem rerum aut necessitatibus provident sed eligendi dolor rem nulla eveniet. Non voluptatem nisi et natus incidunt et dolores rerum qui nihil corporis. Qui quos asperiores et sint sequi dolor iste emst provident Quis. Ad excepturi esse et beatae molestiae ut natus molestiae ut officiis officia.\r\n\r\nIn dolor labore 33 rerum rerum cum galisum tempore ut architecto quam sit eror saepe. Ex minus quis est nesciu nt autem et molestiae internos At harum dolorem ex modi tempore?\r\n\r\n[/fusion_text][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color5)\" margin_bottom=\"25px\"][fusion_li_item]\r\n\r\n<strong>Maximize your website\'s potential</strong>\r\n\r\n[/fusion_li_item][fusion_li_item]\r\n\r\n<strong>Get the speed and performance you need</strong>\r\n\r\n[/fusion_li_item][fusion_li_item]\r\n\r\n<strong>Future-proof your website with hosting technology</strong>\r\n\r\n[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\nensuring your website is always accessible\r\n\r\n[/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\" margin_bottom=\"40px\"]Vel corrupti omnis non reprehenderit omnis et rerum consequuntur vel aspernatur vitae nam itaque error hic minima voluptas. Et placeat quae id iure natus qui doloribus voluptatem est rerum neque aut internos enim qui provident consequatur! In autem provident non sequi pariatur est maiores culpa est velit recusandae non ipsum ipsum.\r\n\r\nNam unde galisum sed sunt veritatis <span style=\"color: var(--awb-color4);\"><a href=\"#\">non asperiores quia id excepturi</a></span> repudiandae qui odit iusto. Ut blanditiis incidunt et molestiae laudantium qui dolores ducimus non sint corporis aut quae galisum et nisi recusandae. Et odio galisum qui dolore soluta et voluptatem magni.\r\n\r\nQui error unde est possimus repellat qui ipsa rerum! Et eaque nihil ex voluptatem dolorem ut nulla incidunt id inventore animi aut repellendus dolorem quo omnis neque et dolore rerum?[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"110\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"120\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1030|full\" borderradius=\"5px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-image-1.jpg[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"40px\" last=\"true\" border_position=\"all\" padding_top_small=\"40px\" padding_left_medium=\"20px\" padding_right_small=\"40px\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\njump to a similar post\r\n\r\n[/fusion_title][fusion_post_cards post_card=\"814\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"1\" 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\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"1\" columns_small=\"0\" columns=\"1\" column_spacing=\"40\" row_spacing=\"0\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][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\" margin_bottom=\"40px\" margin_top=\"40px\"]\r\n\r\nEst omnis accusamus sed dolorum veniam qui dolores quae est ratione reprehenderit. Es temporibus sunt quo quos nihil ea quibusdam rerum non sunt placeat. Sit nulla eius sit tempore quam et tempora ratione sed porred molestiae non odio sed ipsum consequuntur voluptatem omnis ea quisquam.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\nart of website migration: the seamless transition\r\n\r\n[/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\r\nAd esse quos est eaque libero et dignissimos dolores et dolor aperiam non adipisci possimus sed fugiat assumenda eos ipsa quas. Et soluta maiores est quia internos eos eius quidem qui nemo quibusdam sit nostrum consequuntur ut laudantium magni. Qui numquam fuga quo facilis similique sed odit iusto sit molestiae accusamus.\r\n\r\n[/fusion_text][fusion_progress percentage=\"70\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"yes\" animated_stripes=\"yes\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\"]Website Speed Optimization[/fusion_progress][fusion_progress percentage=\"90\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"yes\" animated_stripes=\"no\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\" margin_bottom=\"10px\" filledcolor=\"var(--awb-color4)\"]Managed WordPress Hosting[/fusion_progress][fusion_progress percentage=\"80\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"no\" animated_stripes=\"no\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\" margin_bottom=\"10px\"]Generate Leads &amp; Earn Money[/fusion_progress][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\" margin_bottom=\"60px\" margin_top=\"40px\" columns=\"2\"]\r\n\r\nEst omnis accusamus sed dolorum veniam qui dolores quae est ratione reprehenderit. Es temporibus sunt quo quos nihil ea quibusdam rerum non sunt placeat. Sit nulla eius sit tempore quam et tempora ratione sed porred molestiae non odio sed ipsum consequuntur volupta em omnis quisquam repellendus consequuntur est facere sequi et temporibus nobis. Eum labore mollitia cum delectus quia ut rerum accusantium. Qui quod enim aut illo error aut laboriosam.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Why security should be a top priority when choosing a hosting service','Cursus in id ut congue commodo. Arcu nullam nibh elit elementum dictumst ultricies turpis cras. Mattis elementum.','inherit','closed','closed','','769-revision-v1','','','2023-08-22 20:53:38','2023-08-22 20:53:38','',769,'https://test-site.goodcausepartners.com/?p=1838',0,'revision','',0),(1839,1,'2023-08-22 20:53:38','2023-08-22 20:53: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\" 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\" admin_label=\"Post Content\" link_color=\"var(--awb-color4)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" spacing_left=\"0\" spacing_right=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\nunlocking the secrets of server uptime\r\n\r\n[/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[fusion_dropcap color=\"var(--awb-color4)\" text_color=\"\" boxed=\"yes\" boxed_radius=\"5px\" class=\"\" id=\"\"]B[/fusion_dropcap]aulpa voluptatem et dolorem rerum aut necessitatibus provident sed eligendi dolor rem nulla eveniet. Non voluptatem nisi et natus incidunt et dolores rerum qui nihil corporis. Qui quos asperiores et sint sequi dolor iste emst provident Quis. Ad excepturi esse et beatae molestiae ut natus molestiae ut officiis officia.\r\n\r\nIn dolor labore 33 rerum rerum cum galisum tempore ut architecto quam sit eror saepe. Ex minus quis est nesciu nt autem et molestiae internos At harum dolorem ex modi tempore?\r\n\r\n[/fusion_text][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" iconcolor=\"var(--awb-color5)\" margin_bottom=\"25px\"][fusion_li_item]\r\n\r\n<strong>Maximize your website\'s potential</strong>\r\n\r\n[/fusion_li_item][fusion_li_item]\r\n\r\n<strong>Get the speed and performance you need</strong>\r\n\r\n[/fusion_li_item][fusion_li_item]\r\n\r\n<strong>Future-proof your website with hosting technology</strong>\r\n\r\n[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\nensuring your website is always accessible\r\n\r\n[/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\" margin_bottom=\"40px\"]Vel corrupti omnis non reprehenderit omnis et rerum consequuntur vel aspernatur vitae nam itaque error hic minima voluptas. Et placeat quae id iure natus qui doloribus voluptatem est rerum neque aut internos enim qui provident consequatur! In autem provident non sequi pariatur est maiores culpa est velit recusandae non ipsum ipsum.\r\n\r\nNam unde galisum sed sunt veritatis <span style=\"color: var(--awb-color4);\"><a href=\"#\">non asperiores quia id excepturi</a></span> repudiandae qui odit iusto. Ut blanditiis incidunt et molestiae laudantium qui dolores ducimus non sint corporis aut quae galisum et nisi recusandae. Et odio galisum qui dolore soluta et voluptatem magni.\r\n\r\nQui error unde est possimus repellat qui ipsa rerum! Et eaque nihil ex voluptatem dolorem ut nulla incidunt id inventore animi aut repellendus dolorem quo omnis neque et dolore rerum?[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_2\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"110\" filter_contrast=\"100\" filter_invert=\"0\" filter_sepia=\"0\" filter_opacity=\"100\" filter_blur=\"0\" filter_hue_hover=\"0\" filter_saturation_hover=\"100\" filter_brightness_hover=\"120\" filter_contrast_hover=\"100\" filter_invert_hover=\"0\" filter_sepia_hover=\"0\" filter_opacity_hover=\"100\" filter_blur_hover=\"0\" image_id=\"1030|full\" borderradius=\"5px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-image-1.jpg[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"40px\" last=\"true\" border_position=\"all\" padding_top_small=\"40px\" padding_left_medium=\"20px\" padding_right_small=\"40px\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]\r\n\r\njump to a similar post\r\n\r\n[/fusion_title][fusion_post_cards post_card=\"814\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"1\" 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\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"1\" columns_small=\"0\" columns=\"1\" column_spacing=\"40\" row_spacing=\"0\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][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\" margin_bottom=\"40px\" margin_top=\"40px\"]\r\n\r\nEst omnis accusamus sed dolorum veniam qui dolores quae est ratione reprehenderit. Es temporibus sunt quo quos nihil ea quibusdam rerum non sunt placeat. Sit nulla eius sit tempore quam et tempora ratione sed porred molestiae non odio sed ipsum consequuntur voluptatem omnis ea quisquam.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\nart of website migration: the seamless transition\r\n\r\n[/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\r\nAd esse quos est eaque libero et dignissimos dolores et dolor aperiam non adipisci possimus sed fugiat assumenda eos ipsa quas. Et soluta maiores est quia internos eos eius quidem qui nemo quibusdam sit nostrum consequuntur ut laudantium magni. Qui numquam fuga quo facilis similique sed odit iusto sit molestiae accusamus.\r\n\r\n[/fusion_text][fusion_progress percentage=\"70\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"yes\" animated_stripes=\"yes\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\"]Website Speed Optimization[/fusion_progress][fusion_progress percentage=\"90\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"yes\" animated_stripes=\"no\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\" margin_bottom=\"10px\" filledcolor=\"var(--awb-color4)\"]Managed WordPress Hosting[/fusion_progress][fusion_progress percentage=\"80\" show_percentage=\"yes\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" striped=\"no\" animated_stripes=\"no\" unit=\"%\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" text_font_size=\"var(--awb-typography5-font-size)\" text_line_height=\"var(--awb-typography5-line-height)\" text_letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_text_transform=\"var(--awb-typography5-text-transform)\" height=\"40px\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" filledbordersize=\"0\" margin_top=\"20px\" margin_bottom=\"10px\"]Generate Leads &amp; Earn Money[/fusion_progress][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\" margin_bottom=\"60px\" margin_top=\"40px\" columns=\"2\"]\r\n\r\nEst omnis accusamus sed dolorum veniam qui dolores quae est ratione reprehenderit. Es temporibus sunt quo quos nihil ea quibusdam rerum non sunt placeat. Sit nulla eius sit tempore quam et tempora ratione sed porred molestiae non odio sed ipsum consequuntur volupta em omnis quisquam repellendus consequuntur est facere sequi et temporibus nobis. Eum labore mollitia cum delectus quia ut rerum accusantium. Qui quod enim aut illo error aut laboriosam.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','10 questions to ask before choosing a hosting service for your website','Rhoncus tellus pretium urna turpis sed vitae sit. Fringilla euismod quis amet suspendise tempus. Mauris quis vulputate.','inherit','closed','closed','','766-revision-v1','','','2023-08-22 20:53:38','2023-08-22 20:53:38','',766,'https://test-site.goodcausepartners.com/?p=1839',0,'revision','',0),(1840,1,'2023-08-22 21:13:34','2023-08-22 21:13: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\" 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\" admin_label=\"Post Content\" link_color=\"var(--awb-color4)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" spacing_left=\"0\" spacing_right=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" first=\"true\" min_height=\"\" link=\"\"][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>[fusion_dropcap color=\"var(--awb-color4)\" text_color=\"\" boxed=\"yes\" boxed_radius=\"5px\" class=\"\" id=\"\"]I[/fusion_dropcap]n the dynamic world of digital communication, the power of email remains undeniable. For nonprofit organizations, email marketing has become a critical tool for fostering connections, driving donations, and amplifying missions. With nearly half of nonprofit donors noting email as their preferred communication method, it\'s vital to understand and employ email marketing best practices.<br></p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Crafting Compelling Subject Lines[/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>The first point of contact in any email is the subject line. Its significance? It can make or break your email\'s open rate. A compelling subject line should be a fusion of relevance, conciseness, and intrigue. For instance, instead of \"Monthly Newsletter,\" opt for \"See the Impact of Your Donation Last Month!\" It directly addresses the recipient\'s involvement and piques curiosity.</p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Segmentation Strategies for Targeted Outreach[/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>Every subscriber on your list has a unique relationship with your organization. You can tailor your messaging by segmenting your audience based on donor status, event attendance, or volunteering history. A first-time donor might appreciate a heartfelt thank you, while a recurring supporter might resonate more with updates on ongoing projects. Segmentation ensures relevancy, which in turn boosts engagement.<br></p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Integrating Donation Buttons and Calls-to-Action (CTA)[/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>Within the email\'s body, your CTA is your compass. It directs your readers where you want them to go. A well-placed, visually distinct \"Donate Now\" button can significantly increase contribution rates for nonprofits. The key is clarity and immediacy; encourage action without sounding demanding. Phrases like \"Join Us in Making a Difference\" can work wonders.<br></p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Using Analytics for Continuous Campaign Improvement[/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>Every email sent is a goldmine of data. Platforms like <b>Mailchimp</b> or <b>Constant</b> <b>Contact</b> provide insightful metrics such as open rates, click-through rates, and conversion rates. These numbers aren\'t just statistics; they\'re narratives. A dip in open rates might suggest a need to revisit your subject lines, while low conversion rates could point to a less-than-compelling CTA.</p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]GDPR Considerations and Respecting Donor Privacy[/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>In the age of data breaches, respecting privacy isn\'t just courteous—it\'s crucial. The <b><a href=\"https://en.wikipedia.org/wiki/General_Data_Protection_Regulation\" target=\"_blank\" rel=\"noopener noreferrer\">General Data Protection Regulation (GDPR)</a></b> mandates strict data collection and usage rules for entities dealing with European Union residents. Ensure you\'re compliant by only emailing those who\'ve consented. Transparency isn\'t just a legal requirement; it\'s a trust-building tool.</p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Best Practices and Pro Tips[/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></p><ul><li><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-medium);\"><b>Frequency matters</b>. Bombarding your subscribers can lead to list fatigue or, worse, unsubscribes. </span><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-medium);\">Find a balance</span><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-medium);\">, opting for bi-weekly or monthly emails. </span></li><li><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-medium);\"><b>Enhance your emails with impactful visuals</b>—a picture speaks a thousand words. </span></li><li><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-medium);\"><b>Never underestimate personalization</b>—a simple \"Thank you, [Name]\" can amplify donor loyalty.</span><br></li></ul><p></p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Conclusion[/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>Email marketing for nonprofits is an art, blending strategy with sincerity. As digital inboxes become more crowded, the need to stand out becomes paramount. Yet, with purpose-driven content, genuine appreciation, and a dash of data-driven insights, your nonprofit can harness email marketing to forge deeper connections, inspire action, and further your mission. </p><p>If navigating these waters seems daunting, remember you don\'t have to journey alone. <b>Good Cause Marketing Partners</b> is here to help you craft impactful email campaigns that resonate and inspire. Every email sent is an opportunity—not just for donations, but to make a difference.</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Email Marketing for Nonprofits: Building Trust and Driving Action','Cursus in id ut congue commodo. Arcu nullam nibh elit elementum dictumst ultricies turpis cras. Mattis elementum.','publish','open','open','','email-marketing-for-nonprofits-building-trust-and-driving-action','','','2023-08-22 21:28:45','2023-08-22 21:28:45','',0,'https://test-site.goodcausepartners.com/?p=1840',0,'post','',0),(1841,1,'2023-08-22 21:13:20','2023-08-22 21:13:20','','email1-blog-feature','','inherit','open','closed','','email1-blog-feature','','','2023-08-22 21:13:20','2023-08-22 21:13:20','',1840,'https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/email1-blog-feature.webp',0,'attachment','image/webp',0),(1842,1,'2023-08-22 21:13:34','2023-08-22 21:13: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\" 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\" admin_label=\"Post Content\" link_color=\"var(--awb-color4)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" spacing_left=\"0\" spacing_right=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" first=\"true\" min_height=\"\" link=\"\"][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\"][fusion_dropcap color=\"var(--awb-color4)\" text_color=\"\" boxed=\"yes\" boxed_radius=\"5px\" class=\"\" id=\"\"]W[/fusion_dropcap]hen most people think of branding, they instantly jump to iconic logos. Yet, in today\'s intricate marketplace, branding extends well beyond a catchy logo or appealing color scheme. For those interested in the evolution and importance of logos, <a href=\"https://www.logodesignlove.com/\" target=\"_blank\" rel=\"noopener noreferrer\">Logo Design Love</a> offers deep dives into world-renowned brands. For small businesses seeking to make a mark, it\'s crucial to understand the multi-dimensional nature of branding. Let\'s delve a little deeper.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Understanding the Essence of Branding[/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\r\nBranding, at its core, is an embodiment of a business\'s identity. It\'s not just a visual marker but a narrative, a story that a company shares with its audience. Historically, branding began as mere symbols or labels on products, showcasing origin or authenticity. Fast forward to today, and it\'s evolved into an amalgamation of values, voice, visuals, and experience.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]The Visual Identity: More than Just a Logo[/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\r\nUndeniably, a logo serves as the frontline soldier of your brand, often offering the first impression. However, other visual elements play equally compelling roles. The color schemes chosen can psychologically resonate with your audience. For a deeper understanding of how colors influence emotions, <a href=\"https://www.canva.com/colors/color-meanings/\" target=\"_blank\" rel=\"noopener noreferrer\">Canva’s Color Wheel and Color Meaning Article</a> is an invaluable resource. Blues, for instance, often instill trust, while reds evoke passion and urgency. When it comes to typography, a site like Typography.com showcases its profound influence on branding. A playful font might appeal to a younger demographic, whereas a more formal one could resonate with a corporate audience. Furthermore, consistent imagery paints a broader picture of what a brand represents.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]\r\n\r\nThe Power of Brand Voice and Messaging\r\n\r\n[/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\r\nHave you ever stumbled upon a brand\'s social media post or advertisement and instantly recognized it without even seeing the logo? That\'s brand voice in action. <a href=\"https://sproutsocial.com/insights/?s=brand+voice\" target=\"_blank\" rel=\"noopener noreferrer\">Sprout Social</a> frequently emphasizes the significance of a consistent brand voice on social platforms. Whether quirky, professional, or empathetic, the voice should reflect the brand\'s essence and resonate with its target audience.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Aligning Branding with Business Values and Goals[/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\r\nEvery brand carries a promise, often rooted in its mission and values. Authenticity in branding emerges when there\'s alignment between the brand\'s narrative and its actions. Customers are astute; they can sense discrepancies and quickly call out brands whose actions don\'t match their promises. A business projecting eco-friendliness through branding but found to be using non-sustainable practices might face backlash, affecting its reputation.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Branding Touchpoints: Beyond the Obvious[/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\r\nBranding isn\'t a one-off effort focused solely on external promotions. It\'s intricately woven into multiple touchpoints. Think about the unboxing experience offered by product packaging or the tone used in customer service interactions. Even a brand\'s social media engagements or the ambiance of its physical store plays a role in branding. These touchpoints craft a cohesive customer experience, magnifying the brand\'s impact.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Conclusion[/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\r\nEmbracing a holistic approach to branding, especially for small businesses, is no longer optional—it\'s imperative. It\'s about creating a 360-degree experience, ensuring consistency across every interaction, and genuinely reflecting the brand\'s values. As you reassess your branding efforts, remember: it\'s an orchestra where every instrument, from logo to voice, plays a vital role in producing a harmonious brand symphony.\r\n\r\n[/fusion_text][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\r\nIf you have questions or would like to discuss your business or organization\'s branding further, don\'t hesitate to contact us at Good Cause Marketing Partners. We\'re here to help guide, support and elevate your branding to its fullest potential. Let\'s create a resonant brand story together!\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Email Marketing for Nonprofits: Building Trust and Driving Action','Cursus in id ut congue commodo. Arcu nullam nibh elit elementum dictumst ultricies turpis cras. Mattis elementum.','inherit','closed','closed','','1840-revision-v1','','','2023-08-22 21:13:34','2023-08-22 21:13:34','',1840,'https://test-site.goodcausepartners.com/?p=1842',0,'revision','',0),(1843,1,'2023-08-22 21:27:00','2023-08-22 21:27: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\" 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\" admin_label=\"Post Content\" link_color=\"var(--awb-color4)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" spacing_left=\"0\" spacing_right=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" first=\"true\" min_height=\"\" link=\"\"][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>[fusion_dropcap color=\"var(--awb-color4)\" text_color=\"\" boxed=\"yes\" boxed_radius=\"5px\" class=\"\" id=\"\"]I[/fusion_dropcap]n the dynamic world of digital communication, the power of email remains undeniable. For nonprofit organizations, email marketing has become a critical tool for fostering connections, driving donations, and amplifying missions. With nearly half of nonprofit donors noting email as their preferred communication method, it\'s vital to understand and employ email marketing best practices.<br></p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Crafting Compelling Subject Lines[/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>The first point of contact in any email is the subject line. Its significance? It can make or break your email\'s open rate. A compelling subject line should be a fusion of relevance, conciseness, and intrigue. For instance, instead of \"Monthly Newsletter,\" opt for \"See the Impact of Your Donation Last Month!\" It directly addresses the recipient\'s involvement and piques curiosity.</p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Segmentation Strategies for Targeted Outreach[/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>Every subscriber on your list has a unique relationship with your organization. You can tailor your messaging by segmenting your audience based on donor status, event attendance, or volunteering history. A first-time donor might appreciate a heartfelt thank you, while a recurring supporter might resonate more with updates on ongoing projects. Segmentation ensures relevancy, which in turn boosts engagement.<br></p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Integrating Donation Buttons and Calls-to-Action (CTA)[/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>Within the email\'s body, your CTA is your compass. It directs your readers where you want them to go. A well-placed, visually distinct \"Donate Now\" button can significantly increase contribution rates for nonprofits. The key is clarity and immediacy; encourage action without sounding demanding. Phrases like \"Join Us in Making a Difference\" can work wonders.<br></p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Using Analytics for Continuous Campaign Improvement[/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>Every email sent is a goldmine of data. Platforms like <b>Mailchimp</b> or <b>Constant</b> <b>Contact</b> provide insightful metrics such as open rates, click-through rates, and conversion rates. These numbers aren\'t just statistics; they\'re narratives. A dip in open rates might suggest a need to revisit your subject lines, while low conversion rates could point to a less-than-compelling CTA.</p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]GDPR Considerations and Respecting Donor Privacy[/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>In the age of data breaches, respecting privacy isn\'t just courteous—it\'s crucial. The <b>General Data Protection Regulation (GDPR)</b> mandates strict data collection and usage rules for entities dealing with European Union residents. Ensure you\'re compliant by only emailing those who\'ve consented. Transparency isn\'t just a legal requirement; it\'s a trust-building tool.</p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Best Practices and Pro Tips[/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></p><ul><li><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-medium);\"><b>Frequency matters</b>. Bombarding your subscribers can lead to list fatigue or, worse, unsubscribes. </span><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-medium);\">Find a balance</span><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-medium);\">, opting for bi-weekly or monthly emails. </span></li><li><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-medium);\"><b>Enhance your emails with impactful visuals</b>—a picture speaks a thousand words. </span></li><li><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-medium);\"><b>Never underestimate personalization</b>—a simple \"Thank you, [Name]\" can amplify donor loyalty.</span><br></li></ul><p></p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Conclusion[/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>Email marketing for nonprofits is an art, blending strategy with sincerity. As digital inboxes become more crowded, the need to stand out becomes paramount. Yet, with purpose-driven content, genuine appreciation, and a dash of data-driven insights, your nonprofit can harness email marketing to forge deeper connections, inspire action, and further your mission. </p><p>If navigating these waters seems daunting, remember you don\'t have to journey alone. <b>Good Cause Marketing Partners</b> is here to help you craft impactful email campaigns that resonate and inspire. Every email sent is an opportunity—not just for donations, but to make a difference.</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Email Marketing for Nonprofits: Building Trust and Driving Action','Cursus in id ut congue commodo. Arcu nullam nibh elit elementum dictumst ultricies turpis cras. Mattis elementum.','inherit','closed','closed','','1840-revision-v1','','','2023-08-22 21:27:00','2023-08-22 21:27:00','',1840,'https://test-site.goodcausepartners.com/?p=1843',0,'revision','',0),(1844,1,'2023-08-22 21:28:45','2023-08-22 21:28: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\" 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\" admin_label=\"Post Content\" link_color=\"var(--awb-color4)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" spacing_left=\"0\" spacing_right=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" first=\"true\" min_height=\"\" link=\"\"][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>[fusion_dropcap color=\"var(--awb-color4)\" text_color=\"\" boxed=\"yes\" boxed_radius=\"5px\" class=\"\" id=\"\"]I[/fusion_dropcap]n the dynamic world of digital communication, the power of email remains undeniable. For nonprofit organizations, email marketing has become a critical tool for fostering connections, driving donations, and amplifying missions. With nearly half of nonprofit donors noting email as their preferred communication method, it\'s vital to understand and employ email marketing best practices.<br></p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Crafting Compelling Subject Lines[/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>The first point of contact in any email is the subject line. Its significance? It can make or break your email\'s open rate. A compelling subject line should be a fusion of relevance, conciseness, and intrigue. For instance, instead of \"Monthly Newsletter,\" opt for \"See the Impact of Your Donation Last Month!\" It directly addresses the recipient\'s involvement and piques curiosity.</p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Segmentation Strategies for Targeted Outreach[/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>Every subscriber on your list has a unique relationship with your organization. You can tailor your messaging by segmenting your audience based on donor status, event attendance, or volunteering history. A first-time donor might appreciate a heartfelt thank you, while a recurring supporter might resonate more with updates on ongoing projects. Segmentation ensures relevancy, which in turn boosts engagement.<br></p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Integrating Donation Buttons and Calls-to-Action (CTA)[/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>Within the email\'s body, your CTA is your compass. It directs your readers where you want them to go. A well-placed, visually distinct \"Donate Now\" button can significantly increase contribution rates for nonprofits. The key is clarity and immediacy; encourage action without sounding demanding. Phrases like \"Join Us in Making a Difference\" can work wonders.<br></p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Using Analytics for Continuous Campaign Improvement[/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>Every email sent is a goldmine of data. Platforms like <b>Mailchimp</b> or <b>Constant</b> <b>Contact</b> provide insightful metrics such as open rates, click-through rates, and conversion rates. These numbers aren\'t just statistics; they\'re narratives. A dip in open rates might suggest a need to revisit your subject lines, while low conversion rates could point to a less-than-compelling CTA.</p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]GDPR Considerations and Respecting Donor Privacy[/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>In the age of data breaches, respecting privacy isn\'t just courteous—it\'s crucial. The <b><a href=\"https://en.wikipedia.org/wiki/General_Data_Protection_Regulation\" target=\"_blank\" rel=\"noopener noreferrer\">General Data Protection Regulation (GDPR)</a></b> mandates strict data collection and usage rules for entities dealing with European Union residents. Ensure you\'re compliant by only emailing those who\'ve consented. Transparency isn\'t just a legal requirement; it\'s a trust-building tool.</p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Best Practices and Pro Tips[/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></p><ul><li><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-medium);\"><b>Frequency matters</b>. Bombarding your subscribers can lead to list fatigue or, worse, unsubscribes. </span><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-medium);\">Find a balance</span><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-medium);\">, opting for bi-weekly or monthly emails. </span></li><li><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-medium);\"><b>Enhance your emails with impactful visuals</b>—a picture speaks a thousand words. </span></li><li><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-medium);\"><b>Never underestimate personalization</b>—a simple \"Thank you, [Name]\" can amplify donor loyalty.</span><br></li></ul><p></p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Conclusion[/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>Email marketing for nonprofits is an art, blending strategy with sincerity. As digital inboxes become more crowded, the need to stand out becomes paramount. Yet, with purpose-driven content, genuine appreciation, and a dash of data-driven insights, your nonprofit can harness email marketing to forge deeper connections, inspire action, and further your mission. </p><p>If navigating these waters seems daunting, remember you don\'t have to journey alone. <b>Good Cause Marketing Partners</b> is here to help you craft impactful email campaigns that resonate and inspire. Every email sent is an opportunity—not just for donations, but to make a difference.</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Email Marketing for Nonprofits: Building Trust and Driving Action','Cursus in id ut congue commodo. Arcu nullam nibh elit elementum dictumst ultricies turpis cras. Mattis elementum.','inherit','closed','closed','','1840-revision-v1','','','2023-08-22 21:28:45','2023-08-22 21:28:45','',1840,'https://test-site.goodcausepartners.com/?p=1844',0,'revision','',0),(1845,1,'2023-08-23 07:14:32','2023-08-22 21:31:35',' ','','','publish','closed','closed','','1845','','','2023-08-23 07:14:32','2023-08-23 07:14:32','',0,'https://test-site.goodcausepartners.com/?p=1845',3,'nav_menu_item','',0),(1846,1,'2023-08-23 07:14:32','2023-08-22 21:31:35',' ','','','publish','closed','closed','','1846','','','2023-08-23 07:14:32','2023-08-23 07:14:32','',0,'https://test-site.goodcausepartners.com/?p=1846',4,'nav_menu_item','',0);
INSERT INTO `wp_gc2023posts` VALUES (1848,1,'2023-08-23 00:04:04','2023-08-23 00:04:04','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"45\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Case Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"true\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1786|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/brain.webp[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n<ul>\r\n<li>Branding</li>\r\n<li>Marketing &amp; Communications</li>\r\n<li>Digital &amp; Social</li>\r\n<li>Partnerships &amp; Community Engagement </li>\r\n</ul>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Learn About Our Services[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"2\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" orderby_term=\"name\" order=\"ASC\" upcoming_events_only=\"yes\" featured_events_only=\"no\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"80\" padding_bottom=\"80\" background_color=\"var(--awb-color2)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Elevate Your Marketing Game[/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>Subscribe to the Good Cause Marketing Partners newsletter and stay ahead with purpose-driven marketing insights tailored just for you.</p>\r\n[/fusion_text][fusion_form form_post_id=\"1695\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_right=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-23 00:04:04','2023-08-23 00:04:04','',1647,'https://test-site.goodcausepartners.com/?p=1848',0,'revision','',0),(1850,1,'2023-08-23 00:10:40','2023-08-23 00:10:40','[fusion_builder_column type=\"1_1\" type=\"1_1\" layout=\"1_1\" background_blend_mode=\"overlay\" first=\"true\" last=\"true\" hover_type=\"none\" border_position=\"all\" element_content=\"\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" min_height=\"\" link=\"\"][fusion_post_card_image layout=\"static\" custom_aspect_ratio=\"100\" show_title=\"no\" show_cats=\"no\" show_price=\"no\" show_rating=\"no\" show_sale=\"no\" show_outofstock=\"no\" show_buttons=\"no\" image_link=\"no\" image_link_target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" /][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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"30px\" padding_right=\"40px\" padding_left=\"10px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_title 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6InBvc3RfdGl0bGUiLCJpbmNsdWRlX2NvbnRleHQiOiJubyJ9fQ==\" margin_top=\"10px\" margin_bottom_small=\"20px\" margin_top_small=\"12px\"]Your Content Goes Here[/fusion_title][fusion_tb_meta meta=\"published_date\" layout=\"floated\" display_element_labels=\"yes\" separator=\"\" read_time=\"200\" reading_time_decimal=\"yes\" alignment_medium=\"flex-start\" alignment_small=\"flex-start\" alignment=\"flex-start\" stacked_vertical_align=\"flex-start\" stacked_horizontal_align=\"flex-start\" height=\"36\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" /][fusion_tb_meta meta=\"categories\" layout=\"floated\" read_time=\"200\" reading_time_decimal=\"yes\" alignment_medium=\"flex-start\" alignment_small=\"flex-start\" alignment=\"flex-start\" stacked_vertical_align=\"flex-start\" stacked_horizontal_align=\"flex-start\" height=\"36\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" font_size=\"15px\" border_top=\"0\" border_bottom=\"0\" link_color=\"var(--awb-color4)\" /][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column]','News Style 1','','inherit','closed','closed','','763-revision-v1','','','2023-08-23 00:10:40','2023-08-23 00:10:40','',763,'https://test-site.goodcausepartners.com/?p=1850',0,'revision','',0),(1851,1,'2023-08-23 00:13:31','2023-08-23 00:13:31','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"45\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Case Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"true\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1786|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/brain.webp[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n<ul>\r\n<li>Branding</li>\r\n<li>Marketing &amp; Communications</li>\r\n<li>Digital &amp; Social</li>\r\n<li>Partnerships &amp; Community Engagement </li>\r\n</ul>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Learn About Our Services[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" orderby_term=\"name\" order=\"ASC\" upcoming_events_only=\"yes\" featured_events_only=\"no\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"80\" padding_bottom=\"80\" background_color=\"var(--awb-color2)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Elevate Your Marketing Game[/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>Subscribe to the Good Cause Marketing Partners newsletter and stay ahead with purpose-driven marketing insights tailored just for you.</p>\r\n[/fusion_text][fusion_form form_post_id=\"1695\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_right=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-23 00:13:31','2023-08-23 00:13:31','',1647,'https://test-site.goodcausepartners.com/?p=1851',0,'revision','',0),(1852,1,'2023-08-23 03:30:42','2023-08-23 03:30: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\" 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\" admin_label=\"Post Content\" link_color=\"var(--awb-color4)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" spacing_left=\"0\" spacing_right=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" first=\"true\" min_height=\"\" link=\"\"][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>[fusion_dropcap color=\"var(--awb-color4)\" text_color=\"\" boxed=\"yes\" boxed_radius=\"5px\" class=\"\" id=\"\"]R[/fusion_dropcap]ecently, we had the privilege of presenting on Corporate Social Responsibility (CSR) at the Spark Networking Group for the <a href=\"https://conejochamber.org\" target=\"_blank\" rel=\"noopener noreferrer\">Greater Conejo Valley Chamber of Commerce</a>. The discussions illuminated how deeply today\'s business fabric intertwines with CSR. We thought sharing some of those discussions and insights with a broader audience would be valuable. At its heart, CSR signifies a business\'s endeavor to weave social and environmental concerns into its operations and decision-making fabric. Global giants receive praise for their massive CSR drives, but small companies also seize opportunities and often make a more localized impact by embracing these practices.</p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]The Different Facets of Corporate Social Responsibility (CSR)[/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 small businesses, these CSR initiatives translate into tangible activities such as reducing their carbon footprint, championing ethical labor practices, or even uplifting local community ventures. The importance of these practices in the modern business landscape can\'t be understated, as detailed studies from sources like the <a href=\"https://hbr.org/topic/subject/corporate-social-responsibility\">Harvard Business Review</a> have highlighted. Let\'s explore the different types of CSR initiatives:</p><ul><li><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);\"><b>Philanthropy</b>: This often involves giving back to society. Small businesses can sponsor local events, support charities, or even pledge a fraction of their profits to social causes that resonate with their ethos.</span></li><li><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);\"><b>Environmental Sustainability</b>: Amid the escalating climate crisis, businesses big and small need to introspect their ecological impact. Small businesses could get involved by adopting sustainable energy sources, minimizing waste, or endorsing eco-friendly products.</span></li><li><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);\"><b>Ethical Labor Practices</b>: At the core of every business are its employees. Ensuring they work in a safe environment, are compensated fairly, and are treated with respect is paramount. Small companies can strengthen their brands while championing diversity and strictly adhering to labor laws.</span></li><li><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);\"><b>Economic Development</b>: This is about fueling growth within the community. By backing initiatives such as local job training programs or infrastructure advancements, businesses can sow seeds for future prosperity.</span></li></ul>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Why CSR Matters to Small, Local Businesses[/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>Adopting CSR is a conscientious decision and a strategic business move. Here\'s how:</p><p></p><ul><li><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);\"><b>Customer Loyalty</b>: Today\'s consumers are more discerning, often aligning with brands that have a conscience. CSR initiatives can enhance trust and foster deeper connections with them.</span><br></li><li><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);\"><b>Employee Satisfaction</b>: Employees are likely to be more engaged and motivated when they know they work for a purpose-driven company.</span><br></li><li><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);\"><b>New Market Opportunities</b>: CSR can be a gateway to new partnerships, expanding the business\'s horizons and footprint.</span><br></li><li><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);\"><b>Operational Efficiency</b>: Sustainable practices often lead to reduced costs and increased efficiency in the long run.</span><br></li></ul><p></p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Rotary Clubs: A Bridge to Effective CSR for Small Businesses[/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>One of the most impactful ways small businesses can drive their CSR initiatives is by collaborating with established organizations like<a href=\"https://rotary.org\" target=\"_blank\" rel=\"noopener noreferrer\"> Rotary International</a>. With a rich legacy dating back to 1905, Rotary International, with its 1.4 million members across 200+ countries, is a powerhouse driving positive change across various spheres.</p><p>Rotary focuses on critical areas of change, including combating diseases, advocating for peace, and boosting local economies. Their remarkable success in reducing global polio cases by 99.9% since 1985 showcases their commitment.</p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]So, why should a small business consider partnering with a local Rotary club?[/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></p><ul><li><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);\"><b>Community Engagement</b>: Participating in community projects bolsters the business\'s reputation and fosters goodwill.</span><br></li><li><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);\"><b>Networking</b>: Rotary clubs are melting pots of professionals, leaders, and entrepreneurs. These clubs present an unmatched opportunity for business expansion and collaboration.</span><br></li><li><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);\"><b>Skill Development</b>: The wealth of knowledge within Rotary can be instrumental in imparting fresh skills and insights, propelling business growth.</span><br></li><li><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);\"><b>Shared Values</b>: Rotary clubs and small businesses thrive on creating palpable change within their communities. This alignment can amplify their collective impact.</span><br></li><li><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);\"><b>Boosted Visibility</b>: An association with a globally recognized brand like Rotary can significantly heighten a small business\'s profile.</span><br></li></ul><p></p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Conclusion[/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>CSR is not just a buzzword; it\'s a tangible, actionable strategy that can catapult a small business into increased profitability, reputation, and impact. By bridging with organizations like Rotary, small businesses can supercharge their CSR efforts, creating ripples of positive change. As the current President of the <a href=\"https://wlvrotary.org/\" target=\"_blank\" rel=\"noopener noreferrer\">Rotary Club of Westlake Village Sunrise</a>, I\'ve witnessed such collaborations\' transformative impact. And in this journey, every step, no matter how small, counts.<br></p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Embracing Corporate Social Responsibility (CSR) with Service Clubs','Cursus in id ut congue commodo. Arcu nullam nibh elit elementum dictumst ultricies turpis cras. Mattis elementum.','publish','open','open','','embracing-csr-with-service-clubs','','','2023-08-23 03:55:57','2023-08-23 03:55:57','',0,'https://test-site.goodcausepartners.com/?p=1852',0,'post','',0),(1853,1,'2023-08-23 03:15:51','2023-08-23 03:15: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\" 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\" admin_label=\"Post Content\" link_color=\"var(--awb-color4)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" spacing_left=\"0\" spacing_right=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" first=\"true\" min_height=\"\" link=\"\"][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>[fusion_dropcap color=\"var(--awb-color4)\" text_color=\"\" boxed=\"yes\" boxed_radius=\"5px\" class=\"\" id=\"\"]I[/fusion_dropcap]n the dynamic world of digital communication, the power of email remains undeniable. For nonprofit organizations, email marketing has become a critical tool for fostering connections, driving donations, and amplifying missions. With nearly half of nonprofit donors noting email as their preferred communication method, it\'s vital to understand and employ email marketing best practices.<br></p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Crafting Compelling Subject Lines[/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>The first point of contact in any email is the subject line. Its significance? It can make or break your email\'s open rate. A compelling subject line should be a fusion of relevance, conciseness, and intrigue. For instance, instead of \"Monthly Newsletter,\" opt for \"See the Impact of Your Donation Last Month!\" It directly addresses the recipient\'s involvement and piques curiosity.</p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Segmentation Strategies for Targeted Outreach[/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>Every subscriber on your list has a unique relationship with your organization. You can tailor your messaging by segmenting your audience based on donor status, event attendance, or volunteering history. A first-time donor might appreciate a heartfelt thank you, while a recurring supporter might resonate more with updates on ongoing projects. Segmentation ensures relevancy, which in turn boosts engagement.<br></p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Integrating Donation Buttons and Calls-to-Action (CTA)[/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>Within the email\'s body, your CTA is your compass. It directs your readers where you want them to go. A well-placed, visually distinct \"Donate Now\" button can significantly increase contribution rates for nonprofits. The key is clarity and immediacy; encourage action without sounding demanding. Phrases like \"Join Us in Making a Difference\" can work wonders.<br></p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Using Analytics for Continuous Campaign Improvement[/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>Every email sent is a goldmine of data. Platforms like <b>Mailchimp</b> or <b>Constant</b> <b>Contact</b> provide insightful metrics such as open rates, click-through rates, and conversion rates. These numbers aren\'t just statistics; they\'re narratives. A dip in open rates might suggest a need to revisit your subject lines, while low conversion rates could point to a less-than-compelling CTA.</p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]GDPR Considerations and Respecting Donor Privacy[/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>In the age of data breaches, respecting privacy isn\'t just courteous—it\'s crucial. The <b><a href=\"https://en.wikipedia.org/wiki/General_Data_Protection_Regulation\" target=\"_blank\" rel=\"noopener noreferrer\">General Data Protection Regulation (GDPR)</a></b> mandates strict data collection and usage rules for entities dealing with European Union residents. Ensure you\'re compliant by only emailing those who\'ve consented. Transparency isn\'t just a legal requirement; it\'s a trust-building tool.</p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Best Practices and Pro Tips[/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></p><ul><li><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-medium);\"><b>Frequency matters</b>. Bombarding your subscribers can lead to list fatigue or, worse, unsubscribes. </span><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-medium);\">Find a balance</span><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-medium);\">, opting for bi-weekly or monthly emails. </span></li><li><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-medium);\"><b>Enhance your emails with impactful visuals</b>—a picture speaks a thousand words. </span></li><li><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-medium);\"><b>Never underestimate personalization</b>—a simple \"Thank you, [Name]\" can amplify donor loyalty.</span><br></li></ul><p></p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Conclusion[/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>Email marketing for nonprofits is an art, blending strategy with sincerity. As digital inboxes become more crowded, the need to stand out becomes paramount. Yet, with purpose-driven content, genuine appreciation, and a dash of data-driven insights, your nonprofit can harness email marketing to forge deeper connections, inspire action, and further your mission. </p><p>If navigating these waters seems daunting, remember you don\'t have to journey alone. <b>Good Cause Marketing Partners</b> is here to help you craft impactful email campaigns that resonate and inspire. Every email sent is an opportunity—not just for donations, but to make a difference.</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Email Marketing for Nonprofits: Building Trust and Driving Action','Cursus in id ut congue commodo. Arcu nullam nibh elit elementum dictumst ultricies turpis cras. Mattis elementum.','trash','open','open','','__trashed-2','','','2023-08-23 03:15:51','2023-08-23 03:15:51','',0,'https://test-site.goodcausepartners.com/?p=1853',0,'post','',0),(1854,1,'2023-08-23 03:15:51','2023-08-23 03:15: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\" 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\" admin_label=\"Post Content\" link_color=\"var(--awb-color4)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" spacing_left=\"0\" spacing_right=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" first=\"true\" min_height=\"\" link=\"\"][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>[fusion_dropcap color=\"var(--awb-color4)\" text_color=\"\" boxed=\"yes\" boxed_radius=\"5px\" class=\"\" id=\"\"]I[/fusion_dropcap]n the dynamic world of digital communication, the power of email remains undeniable. For nonprofit organizations, email marketing has become a critical tool for fostering connections, driving donations, and amplifying missions. With nearly half of nonprofit donors noting email as their preferred communication method, it\'s vital to understand and employ email marketing best practices.<br></p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Crafting Compelling Subject Lines[/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>The first point of contact in any email is the subject line. Its significance? It can make or break your email\'s open rate. A compelling subject line should be a fusion of relevance, conciseness, and intrigue. For instance, instead of \"Monthly Newsletter,\" opt for \"See the Impact of Your Donation Last Month!\" It directly addresses the recipient\'s involvement and piques curiosity.</p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Segmentation Strategies for Targeted Outreach[/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>Every subscriber on your list has a unique relationship with your organization. You can tailor your messaging by segmenting your audience based on donor status, event attendance, or volunteering history. A first-time donor might appreciate a heartfelt thank you, while a recurring supporter might resonate more with updates on ongoing projects. Segmentation ensures relevancy, which in turn boosts engagement.<br></p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Integrating Donation Buttons and Calls-to-Action (CTA)[/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>Within the email\'s body, your CTA is your compass. It directs your readers where you want them to go. A well-placed, visually distinct \"Donate Now\" button can significantly increase contribution rates for nonprofits. The key is clarity and immediacy; encourage action without sounding demanding. Phrases like \"Join Us in Making a Difference\" can work wonders.<br></p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Using Analytics for Continuous Campaign Improvement[/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>Every email sent is a goldmine of data. Platforms like <b>Mailchimp</b> or <b>Constant</b> <b>Contact</b> provide insightful metrics such as open rates, click-through rates, and conversion rates. These numbers aren\'t just statistics; they\'re narratives. A dip in open rates might suggest a need to revisit your subject lines, while low conversion rates could point to a less-than-compelling CTA.</p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]GDPR Considerations and Respecting Donor Privacy[/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>In the age of data breaches, respecting privacy isn\'t just courteous—it\'s crucial. The <b><a href=\"https://en.wikipedia.org/wiki/General_Data_Protection_Regulation\" target=\"_blank\" rel=\"noopener noreferrer\">General Data Protection Regulation (GDPR)</a></b> mandates strict data collection and usage rules for entities dealing with European Union residents. Ensure you\'re compliant by only emailing those who\'ve consented. Transparency isn\'t just a legal requirement; it\'s a trust-building tool.</p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Best Practices and Pro Tips[/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></p><ul><li><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-medium);\"><b>Frequency matters</b>. Bombarding your subscribers can lead to list fatigue or, worse, unsubscribes. </span><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-medium);\">Find a balance</span><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-medium);\">, opting for bi-weekly or monthly emails. </span></li><li><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-medium);\"><b>Enhance your emails with impactful visuals</b>—a picture speaks a thousand words. </span></li><li><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-medium);\"><b>Never underestimate personalization</b>—a simple \"Thank you, [Name]\" can amplify donor loyalty.</span><br></li></ul><p></p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Conclusion[/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>Email marketing for nonprofits is an art, blending strategy with sincerity. As digital inboxes become more crowded, the need to stand out becomes paramount. Yet, with purpose-driven content, genuine appreciation, and a dash of data-driven insights, your nonprofit can harness email marketing to forge deeper connections, inspire action, and further your mission. </p><p>If navigating these waters seems daunting, remember you don\'t have to journey alone. <b>Good Cause Marketing Partners</b> is here to help you craft impactful email campaigns that resonate and inspire. Every email sent is an opportunity—not just for donations, but to make a difference.</p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Email Marketing for Nonprofits: Building Trust and Driving Action','Cursus in id ut congue commodo. Arcu nullam nibh elit elementum dictumst ultricies turpis cras. Mattis elementum.','inherit','closed','closed','','1853-revision-v1','','','2023-08-23 03:15:51','2023-08-23 03:15:51','',1853,'https://test-site.goodcausepartners.com/?p=1854',0,'revision','',0),(1855,1,'2023-08-23 03:30:30','2023-08-23 03:30:30','','csr-blog-service','','inherit','open','closed','','csr-blog-service','','','2023-08-23 03:30:30','2023-08-23 03:30:30','',1852,'https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/csr-blog-service.webp',0,'attachment','image/webp',0),(1858,1,'2023-08-23 03:36:34','2023-08-23 03:36: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\" 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\" admin_label=\"Post Content\" link_color=\"var(--awb-color4)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" spacing_left=\"0\" spacing_right=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" first=\"true\" min_height=\"\" link=\"\"][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\"][fusion_dropcap color=\"var(--awb-color4)\" text_color=\"\" boxed=\"yes\" boxed_radius=\"5px\" class=\"\" id=\"\"]I[/fusion_dropcap]n the dynamic world of digital communication, the power of email remains undeniable. For nonprofit organizations, email marketing has become a critical tool for fostering connections, driving donations, and amplifying missions. With nearly half of nonprofit donors noting email as their preferred communication method, it\'s vital to understand and employ email marketing best practices.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Crafting Compelling Subject Lines[/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\r\nThe first point of contact in any email is the subject line. Its significance? It can make or break your email\'s open rate. A compelling subject line should be a fusion of relevance, conciseness, and intrigue. For instance, instead of \"Monthly Newsletter,\" opt for \"See the Impact of Your Donation Last Month!\" It directly addresses the recipient\'s involvement and piques curiosity.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Segmentation Strategies for Targeted Outreach[/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\r\nEvery subscriber on your list has a unique relationship with your organization. You can tailor your messaging by segmenting your audience based on donor status, event attendance, or volunteering history. A first-time donor might appreciate a heartfelt thank you, while a recurring supporter might resonate more with updates on ongoing projects. Segmentation ensures relevancy, which in turn boosts engagement.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Integrating Donation Buttons and Calls-to-Action (CTA)[/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\r\nWithin the email\'s body, your CTA is your compass. It directs your readers where you want them to go. A well-placed, visually distinct \"Donate Now\" button can significantly increase contribution rates for nonprofits. The key is clarity and immediacy; encourage action without sounding demanding. Phrases like \"Join Us in Making a Difference\" can work wonders.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Using Analytics for Continuous Campaign Improvement[/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\r\nEvery email sent is a goldmine of data. Platforms like <b>Mailchimp</b> or <b>Constant</b> <b>Contact</b> provide insightful metrics such as open rates, click-through rates, and conversion rates. These numbers aren\'t just statistics; they\'re narratives. A dip in open rates might suggest a need to revisit your subject lines, while low conversion rates could point to a less-than-compelling CTA.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]GDPR Considerations and Respecting Donor Privacy[/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\r\nIn the age of data breaches, respecting privacy isn\'t just courteous—it\'s crucial. The <b><a href=\"https://en.wikipedia.org/wiki/General_Data_Protection_Regulation\" target=\"_blank\" rel=\"noopener noreferrer\">General Data Protection Regulation (GDPR)</a></b> mandates strict data collection and usage rules for entities dealing with European Union residents. Ensure you\'re compliant by only emailing those who\'ve consented. Transparency isn\'t just a legal requirement; it\'s a trust-building tool.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Best Practices and Pro Tips[/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<ul>\r\n 	<li><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-medium);\"><b>Frequency matters</b>. Bombarding your subscribers can lead to list fatigue or, worse, unsubscribes. </span><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-medium);\">Find a balance</span><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-medium);\">, opting for bi-weekly or monthly emails. </span></li>\r\n 	<li><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-medium);\"><b>Enhance your emails with impactful visuals</b>—a picture speaks a thousand words. </span></li>\r\n 	<li><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-medium);\"><b>Never underestimate personalization</b>—a simple \"Thank you, [Name]\" can amplify donor loyalty.</span></li>\r\n</ul>\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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Conclusion[/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\r\nEmail marketing for nonprofits is an art, blending strategy with sincerity. As digital inboxes become more crowded, the need to stand out becomes paramount. Yet, with purpose-driven content, genuine appreciation, and a dash of data-driven insights, your nonprofit can harness email marketing to forge deeper connections, inspire action, and further your mission.\r\n\r\nIf navigating these waters seems daunting, remember you don\'t have to journey alone. <b>Good Cause Marketing Partners</b> is here to help you craft impactful email campaigns that resonate and inspire. Every email sent is an opportunity—not just for donations, but to make a difference.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Embracing Corporate Social Responsibility (CSR) with Service Clubs','Cursus in id ut congue commodo. Arcu nullam nibh elit elementum dictumst ultricies turpis cras. Mattis elementum.','inherit','closed','closed','','1852-revision-v1','','','2023-08-23 03:36:34','2023-08-23 03:36:34','',1852,'https://test-site.goodcausepartners.com/?p=1858',0,'revision','',0),(1856,1,'2023-08-23 03:30:42','2023-08-23 03:30: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\" 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\" admin_label=\"Post Content\" link_color=\"var(--awb-color4)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" spacing_left=\"0\" spacing_right=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" first=\"true\" min_height=\"\" link=\"\"][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\"][fusion_dropcap color=\"var(--awb-color4)\" text_color=\"\" boxed=\"yes\" boxed_radius=\"5px\" class=\"\" id=\"\"]I[/fusion_dropcap]n the dynamic world of digital communication, the power of email remains undeniable. For nonprofit organizations, email marketing has become a critical tool for fostering connections, driving donations, and amplifying missions. With nearly half of nonprofit donors noting email as their preferred communication method, it\'s vital to understand and employ email marketing best practices.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Crafting Compelling Subject Lines[/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\r\nThe first point of contact in any email is the subject line. Its significance? It can make or break your email\'s open rate. A compelling subject line should be a fusion of relevance, conciseness, and intrigue. For instance, instead of \"Monthly Newsletter,\" opt for \"See the Impact of Your Donation Last Month!\" It directly addresses the recipient\'s involvement and piques curiosity.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Segmentation Strategies for Targeted Outreach[/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\r\nEvery subscriber on your list has a unique relationship with your organization. You can tailor your messaging by segmenting your audience based on donor status, event attendance, or volunteering history. A first-time donor might appreciate a heartfelt thank you, while a recurring supporter might resonate more with updates on ongoing projects. Segmentation ensures relevancy, which in turn boosts engagement.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Integrating Donation Buttons and Calls-to-Action (CTA)[/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\r\nWithin the email\'s body, your CTA is your compass. It directs your readers where you want them to go. A well-placed, visually distinct \"Donate Now\" button can significantly increase contribution rates for nonprofits. The key is clarity and immediacy; encourage action without sounding demanding. Phrases like \"Join Us in Making a Difference\" can work wonders.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Using Analytics for Continuous Campaign Improvement[/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\r\nEvery email sent is a goldmine of data. Platforms like <b>Mailchimp</b> or <b>Constant</b> <b>Contact</b> provide insightful metrics such as open rates, click-through rates, and conversion rates. These numbers aren\'t just statistics; they\'re narratives. A dip in open rates might suggest a need to revisit your subject lines, while low conversion rates could point to a less-than-compelling CTA.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]GDPR Considerations and Respecting Donor Privacy[/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\r\nIn the age of data breaches, respecting privacy isn\'t just courteous—it\'s crucial. The <b><a href=\"https://en.wikipedia.org/wiki/General_Data_Protection_Regulation\" target=\"_blank\" rel=\"noopener noreferrer\">General Data Protection Regulation (GDPR)</a></b> mandates strict data collection and usage rules for entities dealing with European Union residents. Ensure you\'re compliant by only emailing those who\'ve consented. Transparency isn\'t just a legal requirement; it\'s a trust-building tool.\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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Best Practices and Pro Tips[/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<ul>\r\n 	<li><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-medium);\"><b>Frequency matters</b>. Bombarding your subscribers can lead to list fatigue or, worse, unsubscribes. </span><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-medium);\">Find a balance</span><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-medium);\">, opting for bi-weekly or monthly emails. </span></li>\r\n 	<li><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-medium);\"><b>Enhance your emails with impactful visuals</b>—a picture speaks a thousand words. </span></li>\r\n 	<li><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-medium);\"><b>Never underestimate personalization</b>—a simple \"Thank you, [Name]\" can amplify donor loyalty.</span></li>\r\n</ul>\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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Conclusion[/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\r\nEmail marketing for nonprofits is an art, blending strategy with sincerity. As digital inboxes become more crowded, the need to stand out becomes paramount. Yet, with purpose-driven content, genuine appreciation, and a dash of data-driven insights, your nonprofit can harness email marketing to forge deeper connections, inspire action, and further your mission.\r\n\r\nIf navigating these waters seems daunting, remember you don\'t have to journey alone. <b>Good Cause Marketing Partners</b> is here to help you craft impactful email campaigns that resonate and inspire. Every email sent is an opportunity—not just for donations, but to make a difference.\r\n\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Embracing Corporate Social Responsibility (CSR) with Service Clubs: How Rotary Can Elevate Small Businesses','Cursus in id ut congue commodo. Arcu nullam nibh elit elementum dictumst ultricies turpis cras. Mattis elementum.','inherit','closed','closed','','1852-revision-v1','','','2023-08-23 03:30:42','2023-08-23 03:30:42','',1852,'https://test-site.goodcausepartners.com/?p=1856',0,'revision','',0),(1857,1,'2023-08-23 03:32:55','2023-08-23 03:32:55','','csr-blog-service','','inherit','open','closed','','csr-blog-service-2','','','2023-08-23 03:32:55','2023-08-23 03:32:55','',1852,'https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/csr-blog-service-1.webp',0,'attachment','image/webp',0),(1859,1,'2023-08-23 03:54:21','2023-08-23 03:54: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\" 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\" admin_label=\"Post Content\" link_color=\"var(--awb-color4)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" spacing_left=\"0\" spacing_right=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" first=\"true\" min_height=\"\" link=\"\"][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>[fusion_dropcap color=\"var(--awb-color4)\" text_color=\"\" boxed=\"yes\" boxed_radius=\"5px\" class=\"\" id=\"\"]R[/fusion_dropcap]ecently, we had the privilege of presenting on Corporate Social Responsibility (CSR) at the Spark Networking Group for the <a href=\"https://conejochamber.org\" target=\"_blank\" rel=\"noopener noreferrer\">Greater Conejo Valley Chamber of Commerce</a>. The discussions illuminated how deeply today\'s business fabric intertwines with CSR. We thought sharing some of those discussions and insights with a broader audience would be valuable. At its heart, CSR signifies a business\'s endeavor to weave social and environmental concerns into its operations and decision-making fabric. Global giants receive praise for their massive CSR drives, but small companies also seize opportunities and often make a more localized impact by embracing these practices.</p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]The Different Facets of Corporate Social Responsibility (CSR)[/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 small businesses, these CSR initiatives translate into tangible activities such as reducing their carbon footprint, championing ethical labor practices, or even uplifting local community ventures. The importance of these practices in the modern business landscape can\'t be understated, as detailed studies from sources like the <a href=\"https://hbr.org/topic/subject/corporate-social-responsibility\">Harvard Business Review</a> have highlighted. Let\'s explore the different types of CSR initiatives</p>\n<ul>\n<li><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);\"><b>Philanthropy</b>: This often involves giving back to society. Small businesses can sponsor local events, support charities, or even pledge a fraction of their profits to social causes that resonate with their ethos.</span></li>\n<li><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);\"><b>Environmental Sustainability</b>: Amid the escalating climate crisis, businesses big and small need to introspect their ecological impact. Small businesses could get involved by adopting sustainable energy sources, minimizing waste, or endorsing eco-friendly products.</span></li>\n<li><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);\"><b>Ethical Labor Practices</b>: At the core of every business are its employees. Ensuring they work in a safe environment, are compensated fairly, and are treated with respect is paramount. Small companies can strengthen their brands while championing diversity and strictly adhering to labor laws.</span></li>\n<li><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);\"><b>Economic Development</b>: This is about fueling growth within the community. By backing initiatives such as local job training programs or infrastructure advancements, businesses can sow seeds for future prosperity.</span></li>\n</ul>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Why CSR Matters to Small, Local Businesses[/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>Adopting CSR is a conscientious decision and a strategic business move. Here\'s how:</p><p></p><ul><li><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);\"><b>Customer Loyalty</b>: Today\'s consumers are more discerning, often aligning with brands that have a conscience. CSR initiatives can enhance trust and foster deeper connections with them.</span><br></li><li><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);\"><b>Employee Satisfaction</b>: Employees are likely to be more engaged and motivated when they know they work for a purpose-driven company.</span><br></li><li><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);\"><b>New Market Opportunities</b>: CSR can be a gateway to new partnerships, expanding the business\'s horizons and footprint.</span><br></li><li><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);\"><b>Operational Efficiency</b>: Sustainable practices often lead to reduced costs and increased efficiency in the long run.</span><br></li></ul><p></p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Rotary Clubs: A Bridge to Effective CSR for Small Businesses[/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>One of the most impactful ways small businesses can drive their CSR initiatives is by collaborating with established organizations like<a href=\"https://rotary.org\" target=\"_blank\" rel=\"noopener noreferrer\"> Rotary International</a>. With a rich legacy dating back to 1905, Rotary International, with its 1.4 million members across 200+ countries, is a powerhouse driving positive change across various spheres.</p><p>Rotary focuses on critical areas of change, including combating diseases, advocating for peace, and boosting local economies. Their remarkable success in reducing global polio cases by 99.9% since 1985 showcases their commitment.</p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]So, why should a small business consider partnering with a local Rotary club?[/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></p><ul><li><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);\"><b>Community Engagement</b>: Participating in community projects bolsters the business\'s reputation and fosters goodwill.</span><br></li><li><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);\"><b>Networking</b>: Rotary clubs are melting pots of professionals, leaders, and entrepreneurs. These clubs present an unmatched opportunity for business expansion and collaboration.</span><br></li><li><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);\"><b>Skill Development</b>: The wealth of knowledge within Rotary can be instrumental in imparting fresh skills and insights, propelling business growth.</span><br></li><li><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);\"><b>Shared Values</b>: Rotary clubs and small businesses thrive on creating palpable change within their communities. This alignment can amplify their collective impact.</span><br></li><li><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);\"><b>Boosted Visibility</b>: An association with a globally recognized brand like Rotary can significantly heighten a small business\'s profile.</span><br></li></ul><p></p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Conclusion[/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>CSR is not just a buzzword; it\'s a tangible, actionable strategy that can catapult a small business into increased profitability, reputation, and impact. By bridging with organizations like Rotary, small businesses can supercharge their CSR efforts, creating ripples of positive change. As the current President of the <a href=\"https://wlvrotary.org/\" target=\"_blank\" rel=\"noopener noreferrer\">Rotary Club of Westlake Village Sunrise</a>, I\'ve witnessed such collaborations\' transformative impact. And in this journey, every step, no matter how small, counts.<br></p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Embracing Corporate Social Responsibility (CSR) with Service Clubs','Cursus in id ut congue commodo. Arcu nullam nibh elit elementum dictumst ultricies turpis cras. Mattis elementum.','inherit','closed','closed','','1852-revision-v1','','','2023-08-23 03:54:21','2023-08-23 03:54:21','',1852,'https://test-site.goodcausepartners.com/?p=1859',0,'revision','',0),(1860,1,'2023-08-23 03:55:57','2023-08-23 03:55: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\" 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\" admin_label=\"Post Content\" link_color=\"var(--awb-color4)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" spacing_left=\"0\" spacing_right=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" border_sizes_bottom=\"1px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" first=\"true\" min_height=\"\" link=\"\"][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>[fusion_dropcap color=\"var(--awb-color4)\" text_color=\"\" boxed=\"yes\" boxed_radius=\"5px\" class=\"\" id=\"\"]R[/fusion_dropcap]ecently, we had the privilege of presenting on Corporate Social Responsibility (CSR) at the Spark Networking Group for the <a href=\"https://conejochamber.org\" target=\"_blank\" rel=\"noopener noreferrer\">Greater Conejo Valley Chamber of Commerce</a>. The discussions illuminated how deeply today\'s business fabric intertwines with CSR. We thought sharing some of those discussions and insights with a broader audience would be valuable. At its heart, CSR signifies a business\'s endeavor to weave social and environmental concerns into its operations and decision-making fabric. Global giants receive praise for their massive CSR drives, but small companies also seize opportunities and often make a more localized impact by embracing these practices.</p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]The Different Facets of Corporate Social Responsibility (CSR)[/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 small businesses, these CSR initiatives translate into tangible activities such as reducing their carbon footprint, championing ethical labor practices, or even uplifting local community ventures. The importance of these practices in the modern business landscape can\'t be understated, as detailed studies from sources like the <a href=\"https://hbr.org/topic/subject/corporate-social-responsibility\">Harvard Business Review</a> have highlighted. Let\'s explore the different types of CSR initiatives:</p><ul><li><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);\"><b>Philanthropy</b>: This often involves giving back to society. Small businesses can sponsor local events, support charities, or even pledge a fraction of their profits to social causes that resonate with their ethos.</span></li><li><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);\"><b>Environmental Sustainability</b>: Amid the escalating climate crisis, businesses big and small need to introspect their ecological impact. Small businesses could get involved by adopting sustainable energy sources, minimizing waste, or endorsing eco-friendly products.</span></li><li><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);\"><b>Ethical Labor Practices</b>: At the core of every business are its employees. Ensuring they work in a safe environment, are compensated fairly, and are treated with respect is paramount. Small companies can strengthen their brands while championing diversity and strictly adhering to labor laws.</span></li><li><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);\"><b>Economic Development</b>: This is about fueling growth within the community. By backing initiatives such as local job training programs or infrastructure advancements, businesses can sow seeds for future prosperity.</span></li></ul>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Why CSR Matters to Small, Local Businesses[/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>Adopting CSR is a conscientious decision and a strategic business move. Here\'s how:</p><p></p><ul><li><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);\"><b>Customer Loyalty</b>: Today\'s consumers are more discerning, often aligning with brands that have a conscience. CSR initiatives can enhance trust and foster deeper connections with them.</span><br></li><li><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);\"><b>Employee Satisfaction</b>: Employees are likely to be more engaged and motivated when they know they work for a purpose-driven company.</span><br></li><li><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);\"><b>New Market Opportunities</b>: CSR can be a gateway to new partnerships, expanding the business\'s horizons and footprint.</span><br></li><li><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);\"><b>Operational Efficiency</b>: Sustainable practices often lead to reduced costs and increased efficiency in the long run.</span><br></li></ul><p></p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Rotary Clubs: A Bridge to Effective CSR for Small Businesses[/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>One of the most impactful ways small businesses can drive their CSR initiatives is by collaborating with established organizations like<a href=\"https://rotary.org\" target=\"_blank\" rel=\"noopener noreferrer\"> Rotary International</a>. With a rich legacy dating back to 1905, Rotary International, with its 1.4 million members across 200+ countries, is a powerhouse driving positive change across various spheres.</p><p>Rotary focuses on critical areas of change, including combating diseases, advocating for peace, and boosting local economies. Their remarkable success in reducing global polio cases by 99.9% since 1985 showcases their commitment.</p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]So, why should a small business consider partnering with a local Rotary club?[/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></p><ul><li><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);\"><b>Community Engagement</b>: Participating in community projects bolsters the business\'s reputation and fosters goodwill.</span><br></li><li><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);\"><b>Networking</b>: Rotary clubs are melting pots of professionals, leaders, and entrepreneurs. These clubs present an unmatched opportunity for business expansion and collaboration.</span><br></li><li><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);\"><b>Skill Development</b>: The wealth of knowledge within Rotary can be instrumental in imparting fresh skills and insights, propelling business growth.</span><br></li><li><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);\"><b>Shared Values</b>: Rotary clubs and small businesses thrive on creating palpable change within their communities. This alignment can amplify their collective impact.</span><br></li><li><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);\"><b>Boosted Visibility</b>: An association with a globally recognized brand like Rotary can significantly heighten a small business\'s profile.</span><br></li></ul><p></p>[/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=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"25px\" margin_bottom_small=\"30px\"]Conclusion[/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>CSR is not just a buzzword; it\'s a tangible, actionable strategy that can catapult a small business into increased profitability, reputation, and impact. By bridging with organizations like Rotary, small businesses can supercharge their CSR efforts, creating ripples of positive change. As the current President of the <a href=\"https://wlvrotary.org/\" target=\"_blank\" rel=\"noopener noreferrer\">Rotary Club of Westlake Village Sunrise</a>, I\'ve witnessed such collaborations\' transformative impact. And in this journey, every step, no matter how small, counts.<br></p>[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Embracing Corporate Social Responsibility (CSR) with Service Clubs','Cursus in id ut congue commodo. Arcu nullam nibh elit elementum dictumst ultricies turpis cras. Mattis elementum.','inherit','closed','closed','','1852-revision-v1','','','2023-08-23 03:55:57','2023-08-23 03:55:57','',1852,'https://test-site.goodcausepartners.com/?p=1860',0,'revision','',0),(1861,1,'2023-08-23 04:20:52','2023-08-23 04:20:52','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"45\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Cause Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"true\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1786|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/brain.webp[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n<ul>\r\n<li>Branding</li>\r\n<li>Marketing &amp; Communications</li>\r\n<li>Digital &amp; Social</li>\r\n<li>Partnerships &amp; Community Engagement </li>\r\n</ul>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Learn About Our Services[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" orderby_term=\"name\" order=\"ASC\" upcoming_events_only=\"yes\" featured_events_only=\"no\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"80\" padding_bottom=\"80\" background_color=\"var(--awb-color2)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Elevate Your Marketing Game[/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>Subscribe to the Good Cause Marketing Partners newsletter and stay ahead with purpose-driven marketing insights tailored just for you.</p>\r\n[/fusion_text][fusion_form form_post_id=\"1695\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_right=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-23 04:20:52','2023-08-23 04:20:52','',1647,'https://test-site.goodcausepartners.com/?p=1861',0,'revision','',0),(1862,1,'2023-08-23 05:54:11','2023-08-23 05:54:11','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"35\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Cause Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"true\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1786|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/brain.webp[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n<ul>\r\n<li>Branding</li>\r\n<li>Marketing &amp; Communications</li>\r\n<li>Digital &amp; Social</li>\r\n<li>Partnerships &amp; Community Engagement </li>\r\n</ul>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Learn About Our Services[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" orderby_term=\"name\" order=\"ASC\" upcoming_events_only=\"yes\" featured_events_only=\"no\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"80\" padding_bottom=\"80\" background_color=\"var(--awb-color2)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Elevate Your Marketing Game[/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>Subscribe to the Good Cause Marketing Partners newsletter and stay ahead with purpose-driven marketing insights tailored just for you.</p>\r\n[/fusion_text][fusion_form form_post_id=\"1695\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_right=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-23 05:54:11','2023-08-23 05:54:11','',1647,'https://test-site.goodcausepartners.com/?p=1862',0,'revision','',0),(1863,1,'2023-08-23 05:55:21','2023-08-23 05:55: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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"25\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Cause Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"true\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1786|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/brain.webp[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n<ul>\r\n<li>Branding</li>\r\n<li>Marketing &amp; Communications</li>\r\n<li>Digital &amp; Social</li>\r\n<li>Partnerships &amp; Community Engagement </li>\r\n</ul>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Learn About Our Services[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" orderby_term=\"name\" order=\"ASC\" upcoming_events_only=\"yes\" featured_events_only=\"no\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"80\" padding_bottom=\"80\" background_color=\"var(--awb-color2)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Elevate Your Marketing Game[/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>Subscribe to the Good Cause Marketing Partners newsletter and stay ahead with purpose-driven marketing insights tailored just for you.</p>\r\n[/fusion_text][fusion_form form_post_id=\"1695\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_right=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-23 05:55:21','2023-08-23 05:55:21','',1647,'https://test-site.goodcausepartners.com/?p=1863',0,'revision','',0),(1864,1,'2023-08-23 05:56:13','2023-08-23 05:56: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\" 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\" margin_top=\"30px\" admin_label=\"Hosting Plans\" margin_bottom=\"60px\" ][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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color_hover=\"var(--awb-color5)\" border_color=\"var(--awb-color1)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/who-we-are/\" first=\"true\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1802|full\" max_width=\"125px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/who-we-are.webp[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]who we are[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/what-we-do/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1803|full\" max_width=\"150px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/what-we-do.webp[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]what we do[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/contact/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1805|full\" max_width=\"125px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/contact.webp[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]Want to Talk?[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Hosting Plans - 2 Column','','inherit','closed','closed','','1017-revision-v1','','','2023-08-23 05:56:13','2023-08-23 05:56:13','',1017,'https://test-site.goodcausepartners.com/?p=1864',0,'revision','',0),(1877,1,'2023-08-23 06:33:33','2023-08-23 06:33: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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/who-we-are/\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"25\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Cause Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1786|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/brain.webp[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n<ul>\r\n<li>Branding</li>\r\n<li>Marketing &amp; Communications</li>\r\n<li>Digital &amp; Social</li>\r\n<li>Partnerships &amp; Community Engagement </li>\r\n</ul>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Discover What We Offer[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" orderby_term=\"name\" order=\"ASC\" upcoming_events_only=\"yes\" featured_events_only=\"no\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"80\" padding_bottom=\"80\" background_color=\"var(--awb-color2)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Elevate Your Marketing Game[/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>Subscribe to the Good Cause Marketing Partners newsletter and stay ahead with purpose-driven marketing insights tailored just for you.</p>\r\n[/fusion_text][fusion_form form_post_id=\"1695\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_right=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-23 06:33:33','2023-08-23 06:33:33','',1647,'https://test-site.goodcausepartners.com/?p=1877',0,'revision','',0),(1865,1,'2023-08-23 05:57:58','2023-08-23 05:57:58','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/who-we-are/\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"25\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Cause Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"true\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1786|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/brain.webp[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n<ul>\r\n<li>Branding</li>\r\n<li>Marketing &amp; Communications</li>\r\n<li>Digital &amp; Social</li>\r\n<li>Partnerships &amp; Community Engagement </li>\r\n</ul>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Learn About Our Services[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" orderby_term=\"name\" order=\"ASC\" upcoming_events_only=\"yes\" featured_events_only=\"no\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"80\" padding_bottom=\"80\" background_color=\"var(--awb-color2)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Elevate Your Marketing Game[/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>Subscribe to the Good Cause Marketing Partners newsletter and stay ahead with purpose-driven marketing insights tailored just for you.</p>\r\n[/fusion_text][fusion_form form_post_id=\"1695\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_right=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-23 05:57:58','2023-08-23 05:57:58','',1647,'https://test-site.goodcausepartners.com/?p=1865',0,'revision','',0),(1866,1,'2023-08-23 06:01:12','2023-08-23 06:01:12','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/who-we-are/\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"25\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Cause Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoibm90LWVxdWFsIiwiZmllbGQiOiJkZXZpY2VfdHlwZSIsInZhbHVlIjoiZGVza3RvcCJ9XQ==\"][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=\"1\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" type_medium=\"1_1\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\" circle=\"no\" textcolor=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" iconcolor=\"var(--awb-color4)\"][fusion_li_item]Free Domain + Free SSL + Free CDN[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\"]secure, reliable and blazing fast – hosting solutions[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\" margin_top=\"10px\"]\r\n<p>Affordable hosting without compromising on quality – makes us apart from other hosting providers</p>\r\n[/fusion_text][fusion_builder_row_inner][fusion_builder_column_inner type=\"45.00\" type=\"45.00\" layout=\"45.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_medium=\"1_3\" type_small=\"1_2\" first=\"true\" min_height=\"\" link=\"\"][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"right\" icon_divider=\"no\" hover_transition=\"icon_slide\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"#\" fusion_font_variant_button_font=\"400\" icon=\"fusion-prefix-hosting-template-angle-double-right-solid\" padding_top=\"20px\" padding_bottom=\"22px\"]view our plans[/fusion_button][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"10px\" last=\"true\" border_position=\"all\" spacing_left=\"0\" type_small=\"1_2\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography3)\" fusion_font_family_text_font=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" text_color=\"var(--awb-color1)\" line_height=\"var(--awb-typography3-line-height)\"]\r\n<p>starting at $1.80 / mo*</p>\r\n[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" line_height=\"0\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color1)\"]<span style=\"text-decoration: line-through;\">Normally 3.50 / Mo</span>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" type_medium=\"1_1\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"center\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"458|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/05/avada-hosting-hero-mobile.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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1786|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/brain.webp[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n<ul>\r\n<li>Branding</li>\r\n<li>Marketing &amp; Communications</li>\r\n<li>Digital &amp; Social</li>\r\n<li>Partnerships &amp; Community Engagement </li>\r\n</ul>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Discover What We Offer[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" orderby_term=\"name\" order=\"ASC\" upcoming_events_only=\"yes\" featured_events_only=\"no\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"80\" padding_bottom=\"80\" background_color=\"var(--awb-color2)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Elevate Your Marketing Game[/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>Subscribe to the Good Cause Marketing Partners newsletter and stay ahead with purpose-driven marketing insights tailored just for you.</p>\r\n[/fusion_text][fusion_form form_post_id=\"1695\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_right=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1097\"]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-23 06:01:12','2023-08-23 06:01:12','',1647,'https://test-site.goodcausepartners.com/?p=1866',0,'revision','',0),(1867,1,'2023-08-23 06:03:17','2023-08-23 06:03: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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\" margin_bottom=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color6-h) + 60),calc(var(--awb-color6-s) + 22%),calc(var(--awb-color6-l) - 30%),var(--awb-color6-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" background_color=\"var(--awb-color6)\"][fusion_builder_row][fusion_builder_column type=\"35\" type=\"35\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" alt=\"Good Cause Marketing Partners\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<p>Main Menu</p>\r\n[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"var(--awb-color3)\" active_color=\"var(--awb-color4)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" icons_hover_color=\"var(--awb-color4)\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"50\" border_sizes_left=\"1\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Connect with Us[/fusion_title][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_5\" type=\"1_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_top=\"5\" padding_right=\"5\" padding_bottom=\"5\" padding_left=\"5\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-headset fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"32\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color2)\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"4_5\" type=\"4_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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 style=\"color: rgb(255, 255, 255); font-size: 16px;\" data-fusion-font=\"true\">Call Good Cause</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_5\" type=\"1_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_top=\"5\" padding_right=\"5\" padding_bottom=\"5\" padding_left=\"5\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-envelope far\" spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"32\" iconcolor=\"var(--awb-color2)\" iconcolor_hover=\"var(--awb-color2)\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"4_5\" type=\"4_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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 style=\"color: rgb(255, 255, 255); font-size: 16px;\" data-fusion-font=\"true\">Email Good Cause</p>\r\n[/fusion_text][/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_top=\"20\"]Follow Us on Social[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"var(--awb-color1)\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 71%))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" box_border_color=\"var(--awb-color1)\" box_border_top=\"1\" box_border_right=\"1\" box_border_bottom=\"1\" box_border_left=\"1\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAyMCAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-23 06:03:17','2023-08-23 06:03:17','',351,'https://test-site.goodcausepartners.com/?p=1867',0,'revision','',0),(1869,1,'2023-08-23 06:12:44','2023-08-23 06:12: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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\" margin_bottom=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color6-h) + 60),calc(var(--awb-color6-s) + 22%),calc(var(--awb-color6-l) - 30%),var(--awb-color6-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" background_color=\"var(--awb-color6)\"][fusion_builder_row][fusion_builder_column type=\"35\" type=\"35\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" alt=\"Good Cause Marketing Partners\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<p>Main Menu</p>\r\n[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"var(--awb-color3)\" active_color=\"var(--awb-color4)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" icons_hover_color=\"var(--awb-color4)\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"50\" border_sizes_left=\"1\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Connect with Us[/fusion_title][fusion_checklist parent_dynamic_content=\"\" type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" size=\"17\" textcolor=\"var(--awb-color1)\"][fusion_li_item icon=\"fa-headset fas\"]<p>Call Us <br></p>[/fusion_li_item][fusion_li_item icon=\"fa-envelope fas\"]<p>Email Us<br></p>[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_top=\"20\"]Follow Us on Social[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"var(--awb-color1)\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 71%))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" box_border_color=\"var(--awb-color1)\" box_border_top=\"1\" box_border_right=\"1\" box_border_bottom=\"1\" box_border_left=\"1\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAyMCAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-23 06:12:44','2023-08-23 06:12:44','',351,'https://test-site.goodcausepartners.com/?p=1869',0,'revision','',0),(1868,1,'2023-08-23 06:09:41','2023-08-23 06:09: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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\" margin_bottom=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color6-h) + 60),calc(var(--awb-color6-s) + 22%),calc(var(--awb-color6-l) - 30%),var(--awb-color6-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" background_color=\"var(--awb-color6)\"][fusion_builder_row][fusion_builder_column type=\"35\" type=\"35\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" alt=\"Good Cause Marketing Partners\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<p>Main Menu</p>\r\n[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"var(--awb-color3)\" active_color=\"var(--awb-color4)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" icons_hover_color=\"var(--awb-color4)\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"50\" border_sizes_left=\"1\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Connect with Us[/fusion_title][fusion_checklist parent_dynamic_content=\"\" type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item icon=\"fa-headset fas\"]<p>(805) 870 - 5050</p>[/fusion_li_item][fusion_li_item]Your Content Goes Here[/fusion_li_item][/fusion_checklist][fusion_content_boxes parent_dynamic_content=\"\" layout=\"icon-on-side\" columns=\"1\" heading_size=\"5\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" iconspin=\"no\" image_max_width=\"\" icon_align=\"left\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_color=\"var(--awb-color2)\" icon_circle=\"no\" title_size=\"18\" margin_top=\"0\" margin_bottom=\"0\" item_margin_top=\"0\" item_margin_bottom=\"0\"][fusion_content_box linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" title=\"(<span style=\"font-weight: normal;\">805) 870-5050</span>\" icon=\"fa-headset fas\"]<br>[/fusion_content_box][/fusion_content_boxes][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_5\" type=\"1_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_top=\"5\" padding_right=\"5\" padding_bottom=\"5\" padding_left=\"5\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-headset fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"32\" iconcolor=\"var(--awb-color1)\" iconcolor_hover=\"var(--awb-color2)\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"4_5\" type=\"4_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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 style=\"color: rgb(255, 255, 255); font-size: 16px;\" data-fusion-font=\"true\">Call Good Cause</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_5\" type=\"1_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" padding_top=\"5\" padding_right=\"5\" padding_bottom=\"5\" padding_left=\"5\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-envelope far\" spin=\"no\" linktarget=\"_self\" bg_size=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" size=\"32\" iconcolor=\"var(--awb-color2)\" iconcolor_hover=\"var(--awb-color2)\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\" /][/fusion_builder_column_inner][fusion_builder_column_inner type=\"4_5\" type=\"4_5\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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 style=\"color: rgb(255, 255, 255); font-size: 16px;\" data-fusion-font=\"true\">Email Good Cause</p>\r\n[/fusion_text][/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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_top=\"20\"]Follow Us on Social[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"var(--awb-color1)\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 71%))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" box_border_color=\"var(--awb-color1)\" box_border_top=\"1\" box_border_right=\"1\" box_border_bottom=\"1\" box_border_left=\"1\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAyMCAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-23 06:09:41','2023-08-23 06:09:41','',351,'https://test-site.goodcausepartners.com/?p=1868',0,'revision','',0),(1870,1,'2023-08-23 06:16:10','2023-08-23 06:16: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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\" margin_bottom=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color6-h) + 60),calc(var(--awb-color6-s) + 22%),calc(var(--awb-color6-l) - 30%),var(--awb-color6-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" background_color=\"var(--awb-color6)\"][fusion_builder_row][fusion_builder_column type=\"35\" type=\"35\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_small=\"1_2\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" alt=\"Good Cause Marketing Partners\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<p>Main Menu</p>\r\n[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"var(--awb-color3)\" active_color=\"var(--awb-color4)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" icons_hover_color=\"var(--awb-color4)\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"50\" border_sizes_left=\"1\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" type_small=\"1_2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Connect with Us[/fusion_title][fusion_checklist parent_dynamic_content=\"\" type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" size=\"17\" textcolor=\"var(--awb-color1)\" divider=\"no\"][fusion_li_item icon=\"fa-headset fas\"]<p>Call Us <br></p>[/fusion_li_item][fusion_li_item icon=\"fa-envelope fas\"]<p>Email Us<br></p>[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_top=\"20\"]Follow Us on Social[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"var(--awb-color1)\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 71%))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" box_border_color=\"var(--awb-color1)\" box_border_top=\"1\" box_border_right=\"1\" box_border_bottom=\"1\" box_border_left=\"1\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAyMCAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-23 06:16:10','2023-08-23 06:16:10','',351,'https://test-site.goodcausepartners.com/?p=1870',0,'revision','',0),(1871,1,'2023-08-23 06:16:38','2023-08-23 06:16: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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\" margin_bottom=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color6-h) + 60),calc(var(--awb-color6-s) + 22%),calc(var(--awb-color6-l) - 30%),var(--awb-color6-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" background_color=\"var(--awb-color6)\"][fusion_builder_row][fusion_builder_column type=\"35\" type=\"35\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_small=\"2_5\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" alt=\"Good Cause Marketing Partners\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<p>Main Menu</p>\r\n[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"var(--awb-color3)\" active_color=\"var(--awb-color4)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" icons_hover_color=\"var(--awb-color4)\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"50\" border_sizes_left=\"1\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" type_small=\"1_2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]Connect with Us[/fusion_title][fusion_checklist parent_dynamic_content=\"\" type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" size=\"17\" textcolor=\"var(--awb-color1)\" divider=\"no\"][fusion_li_item icon=\"fa-headset fas\"]<p>Call Us <br></p>[/fusion_li_item][fusion_li_item icon=\"fa-envelope fas\"]<p>Email Us<br></p>[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_top=\"20\"]Follow Us on Social[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"var(--awb-color1)\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 71%))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" box_border_color=\"var(--awb-color1)\" box_border_top=\"1\" box_border_right=\"1\" box_border_bottom=\"1\" box_border_left=\"1\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAyMCAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-23 06:16:38','2023-08-23 06:16:38','',351,'https://test-site.goodcausepartners.com/?p=1871',0,'revision','',0),(1872,1,'2023-08-23 06:24:26','2023-08-23 06: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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\" margin_bottom=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color6-h) + 60),calc(var(--awb-color6-s) + 22%),calc(var(--awb-color6-l) - 30%),var(--awb-color6-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" background_color=\"var(--awb-color6)\"][fusion_builder_row][fusion_builder_column type=\"35\" type=\"35\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_small=\"1_1\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" alt=\"Good Cause Marketing Partners\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<p>Main Menu</p>\r\n[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"var(--awb-color3)\" active_color=\"var(--awb-color4)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" icons_hover_color=\"var(--awb-color4)\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"50\" border_sizes_left=\"0\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" type_small=\"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\" 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\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" content_align_small=\"center\"]Connect with Us[/fusion_title][fusion_checklist type=\"icons\" hide_on_mobile=\"medium-visibility,large-visibility\" size=\"17\" textcolor=\"var(--awb-color1)\" divider=\"no\"][fusion_li_item icon=\"fa-headset fas\"]\r\n<p>Call Us </p>\r\n[/fusion_li_item][fusion_li_item icon=\"fa-envelope fas\"]\r\n<p>Email Us</p>\r\n[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_top=\"20\" content_align_small=\"center\"]Follow Us on Social[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"var(--awb-color1)\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 71%))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" box_border_color=\"var(--awb-color1)\" box_border_top=\"1\" box_border_right=\"1\" box_border_bottom=\"1\" box_border_left=\"1\" alignment_small=\"center\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAyMCAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-23 06:24:26','2023-08-23 06:24:26','',351,'https://test-site.goodcausepartners.com/?p=1872',0,'revision','',0),(1874,1,'2023-08-23 06:28:04','2023-08-23 06:28:04','[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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Header Content\" flex_column_spacing=\"2%\" padding_right=\"5%\" padding_left=\"5%\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" z_index=\"9999\"][fusion_builder_row][fusion_builder_column type=\"25\" type=\"25\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"60.00\" type_small=\"2_3\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1638|fusion-600\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-horiz-logo-600x175.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"50\" type=\"50\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_menu menu=\"gcmp-main\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" transition_time=\"300\" align_items=\"stretch\" justify_content=\"center\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"left\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"medium\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" fusion_font_variant_typography=\"var(--awb-typography3)\" fusion_font_family_typography=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" gap=\"34px\" active_color=\"var(--awb-color4)\" active_border_color=\"var(--awb-color5)\" collapsed_nav_text=\"Menu\" mobile_trigger_background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 90%))\" trigger_padding_top=\"15px\" /][/fusion_builder_column][fusion_builder_column type=\"24.00\" type=\"24.00\" align_self=\"auto\" 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=\"large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-headphones\" spin=\"no\" linktarget=\"_self\" bg_size=\"56\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"24\" /][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color4)\" margin_bottom=\"0px\"]Need help? Call Us[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"22px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" margin_top=\"-5px\" line_height=\"0\"]\r\n<p><strong style=\"font-size: 19px;\" data-fusion-font=\"true\">(805) 870-5050</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"30.00\" padding_top_medium=\"5px\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color4)\" margin_bottom=\"0px\" content_alignment_medium=\"right\"]Need help? Call Us[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"22px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" margin_top=\"-5px\" line_height=\"0\" content_alignment_medium=\"right\"]\r\n<p><strong>(010) 456 7890</strong></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"10.00\" type_small=\"1_3\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-bars fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"58\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"28\" alignment_medium=\"right\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJvcGVuX29mZl9jYW52YXMiLCJvZmZfY2FudmFzX2lkIjoiMTA1MCJ9fQ==\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Header','','inherit','closed','closed','','12-revision-v1','','','2023-08-23 06:28:04','2023-08-23 06:28:04','',12,'https://test-site.goodcausepartners.com/?p=1874',0,'revision','',0),(1875,1,'2023-08-23 06:28:41','2023-08-23 06:28:41','[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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Header Content\" flex_column_spacing=\"2%\" padding_right=\"5%\" padding_left=\"5%\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" z_index=\"9999\"][fusion_builder_row][fusion_builder_column type=\"25\" type=\"25\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"60.00\" type_small=\"3_4\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1638|fusion-600\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-horiz-logo-600x175.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"50\" type=\"50\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_menu menu=\"gcmp-main\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" transition_time=\"300\" align_items=\"stretch\" justify_content=\"center\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"left\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"medium\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" fusion_font_variant_typography=\"var(--awb-typography3)\" fusion_font_family_typography=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" gap=\"34px\" active_color=\"var(--awb-color4)\" active_border_color=\"var(--awb-color5)\" collapsed_nav_text=\"Menu\" mobile_trigger_background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 90%))\" trigger_padding_top=\"15px\" /][/fusion_builder_column][fusion_builder_column type=\"24.00\" type=\"24.00\" align_self=\"auto\" 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=\"large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-headphones\" spin=\"no\" linktarget=\"_self\" bg_size=\"56\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"24\" /][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color4)\" margin_bottom=\"0px\"]Need help? Call Us[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"22px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" margin_top=\"-5px\" line_height=\"0\"]\r\n<p><strong style=\"font-size: 19px;\" data-fusion-font=\"true\">(805) 870-5050</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"30.00\" padding_top_medium=\"5px\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color4)\" margin_bottom=\"0px\" content_alignment_medium=\"right\"]Need help? Call Us[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"22px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" margin_top=\"-5px\" line_height=\"0\" content_alignment_medium=\"right\"]\r\n<p><strong>(010) 456 7890</strong></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"10.00\" type_small=\"1_4\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-bars fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"58\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"28\" alignment_medium=\"right\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJvcGVuX29mZl9jYW52YXMiLCJvZmZfY2FudmFzX2lkIjoiMTA1MCJ9fQ==\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Header','','inherit','closed','closed','','12-revision-v1','','','2023-08-23 06:28:41','2023-08-23 06:28:41','',12,'https://test-site.goodcausepartners.com/?p=1875',0,'revision','',0),(1876,1,'2023-08-23 06:29:53','2023-08-23 06:29: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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Header Content\" flex_column_spacing=\"2%\" padding_right=\"5%\" padding_left=\"5%\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" z_index=\"9999\"][fusion_builder_row][fusion_builder_column type=\"25\" type=\"25\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"60.00\" type_small=\"3_4\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1638|fusion-600\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-horiz-logo-600x175.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"50\" type=\"50\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_menu menu=\"gcmp-main\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" transition_time=\"300\" align_items=\"stretch\" justify_content=\"center\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"left\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"medium\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" fusion_font_variant_typography=\"var(--awb-typography3)\" fusion_font_family_typography=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" gap=\"34px\" active_color=\"var(--awb-color4)\" active_border_color=\"var(--awb-color5)\" collapsed_nav_text=\"Menu\" mobile_trigger_background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 90%))\" trigger_padding_top=\"15px\" /][/fusion_builder_column][fusion_builder_column type=\"24.00\" type=\"24.00\" align_self=\"auto\" 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=\"large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-headphones\" spin=\"no\" linktarget=\"_self\" bg_size=\"56\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"24\" /][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color4)\" margin_bottom=\"0px\"]Need help? Call Us[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"22px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" margin_top=\"-5px\" line_height=\"0\"]\r\n<p><strong style=\"font-size: 19px;\" data-fusion-font=\"true\">(805) 870-5050</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"30.00\" padding_top_medium=\"5px\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color4)\" margin_bottom=\"0px\" content_alignment_medium=\"right\"]Need help? Call Us[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"22px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" margin_top=\"-5px\" line_height=\"0\" content_alignment_medium=\"right\"]\r\n<p><strong>(010) 456 7890</strong></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"10.00\" type_small=\"1_4\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-bars fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"58\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"28\" alignment_medium=\"right\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJvcGVuX29mZl9jYW52YXMiLCJvZmZfY2FudmFzX2lkIjoiMTA1MCJ9fQ==\" circlecolor=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 1000%))\" iconcolor=\"var(--awb-color6)\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Header','','inherit','closed','closed','','12-revision-v1','','','2023-08-23 06:29:53','2023-08-23 06:29:53','',12,'https://test-site.goodcausepartners.com/?p=1876',0,'revision','',0),(1878,1,'2023-08-23 06:41:53','2023-08-23 06:41: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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/who-we-are/\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/who-we-are/\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" first=\"false\" 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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"25\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Cause Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Inspire Thought.<br>Evoke Emotion.<br>Drive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/who-we-are/\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1786|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/brain.webp[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n<ul>\r\n<li>Branding</li>\r\n<li>Marketing &amp; Communications</li>\r\n<li>Digital &amp; Social</li>\r\n<li>Partnerships &amp; Community Engagement </li>\r\n</ul>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Discover What We Offer[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" orderby_term=\"name\" order=\"ASC\" upcoming_events_only=\"yes\" featured_events_only=\"no\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"80\" padding_bottom=\"80\" background_color=\"var(--awb-color2)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Elevate Your Marketing Game[/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>Subscribe to the Good Cause Marketing Partners newsletter and stay ahead with purpose-driven marketing insights tailored just for you.</p>\r\n[/fusion_text][fusion_form form_post_id=\"1695\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_right=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-23 06:41:53','2023-08-23 06:41:53','',1647,'https://test-site.goodcausepartners.com/?p=1878',0,'revision','',0),(1879,1,'2023-08-23 06:44:21','2023-08-23 06:44: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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/who-we-are/\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/who-we-are/\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" first=\"false\" 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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"25\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Cause Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Inspire Thought.<br>Evoke Emotion.<br>Drive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/who-we-are/\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1786|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/brain.webp[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n<ul>\r\n<li>Branding</li>\r\n<li>Marketing &amp; Communications</li>\r\n<li>Digital &amp; Social</li>\r\n<li>Partnerships &amp; Community Engagement </li>\r\n</ul>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Discover What We Offer[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" orderby_term=\"name\" order=\"ASC\" upcoming_events_only=\"yes\" featured_events_only=\"no\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"80\" padding_bottom=\"80\" background_color=\"var(--awb-color2)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Elevate Your Marketing Game[/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>Subscribe to the Good Cause Marketing Partners newsletter and stay ahead with purpose-driven marketing insights tailored just for you.</p>\r\n[/fusion_text][fusion_form form_post_id=\"1695\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_right=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-23 06:44:21','2023-08-23 06:44:21','',1647,'https://test-site.goodcausepartners.com/?p=1879',0,'revision','',0);
INSERT INTO `wp_gc2023posts` VALUES (1882,1,'2023-08-23 06:47:12','2023-08-23 06:47:12','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/who-we-are/\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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=\"center\" 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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" id=\"2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Inspire Thought.<br>Evoke Emotion.<br>Drive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/who-we-are/\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" first=\"true\" id=\"1\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"25\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Cause Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1786|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/brain.webp[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n<ul>\r\n<li>Branding</li>\r\n<li>Marketing &amp; Communications</li>\r\n<li>Digital &amp; Social</li>\r\n<li>Partnerships &amp; Community Engagement </li>\r\n</ul>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Discover What We Offer[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" orderby_term=\"name\" order=\"ASC\" upcoming_events_only=\"yes\" featured_events_only=\"no\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"80\" padding_bottom=\"80\" background_color=\"var(--awb-color2)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Elevate Your Marketing Game[/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>Subscribe to the Good Cause Marketing Partners newsletter and stay ahead with purpose-driven marketing insights tailored just for you.</p>\r\n[/fusion_text][fusion_form form_post_id=\"1695\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_right=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-23 06:47:12','2023-08-23 06:47:12','',1647,'https://test-site.goodcausepartners.com/?p=1882',0,'revision','',0),(1880,1,'2023-08-23 06:45:22','2023-08-23 06:45:22','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/who-we-are/\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/who-we-are/\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" first=\"false\" 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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"25\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Cause Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" id=\"2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Inspire Thought.<br>Evoke Emotion.<br>Drive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/who-we-are/\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" first=\"true\" id=\"1\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1786|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/brain.webp[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n<ul>\r\n<li>Branding</li>\r\n<li>Marketing &amp; Communications</li>\r\n<li>Digital &amp; Social</li>\r\n<li>Partnerships &amp; Community Engagement </li>\r\n</ul>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Discover What We Offer[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" orderby_term=\"name\" order=\"ASC\" upcoming_events_only=\"yes\" featured_events_only=\"no\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"80\" padding_bottom=\"80\" background_color=\"var(--awb-color2)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Elevate Your Marketing Game[/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>Subscribe to the Good Cause Marketing Partners newsletter and stay ahead with purpose-driven marketing insights tailored just for you.</p>\r\n[/fusion_text][fusion_form form_post_id=\"1695\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_right=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-23 06:45:22','2023-08-23 06:45:22','',1647,'https://test-site.goodcausepartners.com/?p=1880',0,'revision','',0),(1881,1,'2023-08-23 06:46:46','2023-08-23 06:46:46','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/who-we-are/\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/who-we-are/\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" first=\"false\" 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=\"center\" 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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" id=\"2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Inspire Thought.<br>Evoke Emotion.<br>Drive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/who-we-are/\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" first=\"true\" id=\"1\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"25\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Cause Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1786|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/brain.webp[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n<ul>\r\n<li>Branding</li>\r\n<li>Marketing &amp; Communications</li>\r\n<li>Digital &amp; Social</li>\r\n<li>Partnerships &amp; Community Engagement </li>\r\n</ul>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Discover What We Offer[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" orderby_term=\"name\" order=\"ASC\" upcoming_events_only=\"yes\" featured_events_only=\"no\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"80\" padding_bottom=\"80\" background_color=\"var(--awb-color2)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Elevate Your Marketing Game[/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>Subscribe to the Good Cause Marketing Partners newsletter and stay ahead with purpose-driven marketing insights tailored just for you.</p>\r\n[/fusion_text][fusion_form form_post_id=\"1695\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_right=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-23 06:46:46','2023-08-23 06:46:46','',1647,'https://test-site.goodcausepartners.com/?p=1881',0,'revision','',0),(1883,1,'2023-08-23 06:51:48','2023-08-23 06:51:48','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/who-we-are/\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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=\"center\" 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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" id=\"2\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"25px\"]Inspire Thought. Evoke Emotion. Drive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/who-we-are/\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" first=\"true\" id=\"1\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"25\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Cause Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1786|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/brain.webp[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n<ul>\r\n<li>Branding</li>\r\n<li>Marketing &amp; Communications</li>\r\n<li>Digital &amp; Social</li>\r\n<li>Partnerships &amp; Community Engagement </li>\r\n</ul>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Discover What We Offer[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" orderby_term=\"name\" order=\"ASC\" upcoming_events_only=\"yes\" featured_events_only=\"no\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"80\" padding_bottom=\"80\" background_color=\"var(--awb-color2)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Elevate Your Marketing Game[/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>Subscribe to the Good Cause Marketing Partners newsletter and stay ahead with purpose-driven marketing insights tailored just for you.</p>\r\n[/fusion_text][fusion_form form_post_id=\"1695\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_right=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-23 06:51:48','2023-08-23 06:51:48','',1647,'https://test-site.goodcausepartners.com/?p=1883',0,'revision','',0),(1884,1,'2023-08-23 06:54:39','2023-08-23 06:54:39','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/who-we-are/\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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=\"center\" 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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" id=\"2\" margin_top_small=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\" content_align_small=\"center\"]Inspire Thought.<br>Evoke Emotion.<br>Drive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" content_alignment_small=\"center\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/who-we-are/\" alignment_small=\"center\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"30px\" first=\"true\" id=\"1\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-400\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-400x399.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"25\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Cause Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1786|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/brain.webp[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n<ul>\r\n<li>Branding</li>\r\n<li>Marketing &amp; Communications</li>\r\n<li>Digital &amp; Social</li>\r\n<li>Partnerships &amp; Community Engagement </li>\r\n</ul>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Discover What We Offer[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" orderby_term=\"name\" order=\"ASC\" upcoming_events_only=\"yes\" featured_events_only=\"no\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"80\" padding_bottom=\"80\" background_color=\"var(--awb-color2)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Elevate Your Marketing Game[/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>Subscribe to the Good Cause Marketing Partners newsletter and stay ahead with purpose-driven marketing insights tailored just for you.</p>\r\n[/fusion_text][fusion_form form_post_id=\"1695\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_right=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-23 06:54:39','2023-08-23 06:54:39','',1647,'https://test-site.goodcausepartners.com/?p=1884',0,'revision','',0),(1887,1,'2023-08-23 07:01:24','2023-08-23 07:01:24','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/who-we-are/\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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=\"center\" 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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" id=\"2\" margin_top_small=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\" content_align_small=\"center\"]Inspire Thought.<br>Evoke Emotion.<br>Drive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" content_alignment_small=\"center\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/who-we-are/\" alignment_small=\"center\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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=\"parent\" transform_scale_x=\"1.00\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"10px\" first=\"true\" id=\"1\" render_logics=\"W10=\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-400\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-400x399.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"25\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Cause Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1786|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/brain.webp[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n<ul>\r\n<li>Branding</li>\r\n<li>Marketing &amp; Communications</li>\r\n<li>Digital &amp; Social</li>\r\n<li>Partnerships &amp; Community Engagement </li>\r\n</ul>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Discover What We Offer[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" orderby_term=\"name\" order=\"ASC\" upcoming_events_only=\"yes\" featured_events_only=\"no\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"80\" padding_bottom=\"80\" background_color=\"var(--awb-color2)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Elevate Your Marketing Game[/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>Subscribe to the Good Cause Marketing Partners newsletter and stay ahead with purpose-driven marketing insights tailored just for you.</p>\r\n[/fusion_text][fusion_form form_post_id=\"1695\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_right=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-23 07:01:24','2023-08-23 07:01:24','',1647,'https://test-site.goodcausepartners.com/?p=1887',0,'revision','',0),(1885,1,'2023-08-23 06:59:06','2023-08-23 06:59:06','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/who-we-are/\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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=\"center\" 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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" id=\"2\" margin_top_small=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\" content_align_small=\"center\"]Inspire Thought.<br>Evoke Emotion.<br>Drive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" content_alignment_small=\"center\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/who-we-are/\" alignment_small=\"center\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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=\"parent\" transform_scale_x=\"1.00\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"30px\" first=\"true\" id=\"1\" render_logics=\"W10=\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-400\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-400x399.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"25\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Cause Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1786|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/brain.webp[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n<ul>\r\n<li>Branding</li>\r\n<li>Marketing &amp; Communications</li>\r\n<li>Digital &amp; Social</li>\r\n<li>Partnerships &amp; Community Engagement </li>\r\n</ul>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Discover What We Offer[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" orderby_term=\"name\" order=\"ASC\" upcoming_events_only=\"yes\" featured_events_only=\"no\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"80\" padding_bottom=\"80\" background_color=\"var(--awb-color2)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Elevate Your Marketing Game[/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>Subscribe to the Good Cause Marketing Partners newsletter and stay ahead with purpose-driven marketing insights tailored just for you.</p>\r\n[/fusion_text][fusion_form form_post_id=\"1695\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_right=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-23 06:59:06','2023-08-23 06:59:06','',1647,'https://test-site.goodcausepartners.com/?p=1885',0,'revision','',0),(1886,1,'2023-08-23 07:00:35','2023-08-23 07:00:35','[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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/who-we-are/\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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=\"center\" 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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" id=\"2\" margin_top_small=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\" content_align_small=\"center\"]Inspire Thought.<br>Evoke Emotion.<br>Drive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" content_alignment_small=\"center\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/who-we-are/\" alignment_small=\"center\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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=\"parent\" transform_scale_x=\"1.00\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"10px\" first=\"true\" id=\"1\" render_logics=\"W10=\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-400\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-400x399.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"25\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Cause Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1786|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/brain.webp[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n<ul>\r\n<li>Branding</li>\r\n<li>Marketing &amp; Communications</li>\r\n<li>Digital &amp; Social</li>\r\n<li>Partnerships &amp; Community Engagement </li>\r\n</ul>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Discover What We Offer[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" orderby_term=\"name\" order=\"ASC\" upcoming_events_only=\"yes\" featured_events_only=\"no\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"80\" padding_bottom=\"80\" background_color=\"var(--awb-color2)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Elevate Your Marketing Game[/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>Subscribe to the Good Cause Marketing Partners newsletter and stay ahead with purpose-driven marketing insights tailored just for you.</p>\r\n[/fusion_text][fusion_form form_post_id=\"1695\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_right=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-23 07:00:35','2023-08-23 07:00:35','',1647,'https://test-site.goodcausepartners.com/?p=1886',0,'revision','',0),(1888,1,'2023-08-23 07:03:44','2023-08-23 07:03: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\" 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\" margin_top=\"30px\" admin_label=\"Hosting Plans\" margin_bottom=\"60px\" ][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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color_hover=\"var(--awb-color5)\" border_color=\"var(--awb-color1)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/who-we-are/\" first=\"true\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1802|full\" max_width=\"125px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/who-we-are.webp[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner type=\"2_3\" type=\"2_3\" layout=\"2_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]who we are[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/what-we-do/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1803|full\" max_width=\"150px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/what-we-do.webp[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]what we do[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/contact/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1805|full\" max_width=\"125px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/contact.webp[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]Want to Talk?[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Hosting Plans - 2 Column','','inherit','closed','closed','','1017-revision-v1','','','2023-08-23 07:03:44','2023-08-23 07:03:44','',1017,'https://test-site.goodcausepartners.com/?p=1888',0,'revision','',0),(1890,1,'2023-08-23 07:07:26','2023-08-23 07:07: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\" 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\" margin_top=\"30px\" admin_label=\"Hosting Plans\" margin_bottom=\"60px\" ][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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color_hover=\"var(--awb-color5)\" border_color=\"var(--awb-color1)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/who-we-are/\" first=\"true\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1802|full\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/who-we-are.webp[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner type=\"2_3\" type=\"2_3\" layout=\"2_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]who we are[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/what-we-do/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1803|full\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/what-we-do.webp[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\" content_align_small=\"center\"]what we do[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/contact/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1805|full\" max_width=\"125px\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/contact.webp[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]Want to Talk?[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Hosting Plans - 2 Column','','inherit','closed','closed','','1017-revision-v1','','','2023-08-23 07:07:26','2023-08-23 07:07:26','',1017,'https://test-site.goodcausepartners.com/?p=1890',0,'revision','',0),(1891,1,'2023-08-23 07:08:19','2023-08-23 07:08: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\" 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\" margin_top=\"30px\" admin_label=\"Hosting Plans\" margin_bottom=\"60px\" ][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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color_hover=\"var(--awb-color5)\" border_color=\"var(--awb-color1)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/who-we-are/\" first=\"true\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1802|full\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/who-we-are.webp[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner type=\"2_3\" type=\"2_3\" layout=\"2_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]who we are[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/what-we-do/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1803|full\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/what-we-do.webp[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\" content_align_small=\"center\"]what we do[/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\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/contact/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1805|full\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/contact.webp[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\" content_align_small=\"center\"]Want to Talk?[/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\" content_alignment_small=\"center\"]Dignismos sint duiure itaque dolore tempore quibus damo galisum.[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Hosting Plans - 2 Column','','inherit','closed','closed','','1017-revision-v1','','','2023-08-23 07:08:19','2023-08-23 07:08:19','',1017,'https://test-site.goodcausepartners.com/?p=1891',0,'revision','',0),(1913,1,'2023-08-23 15:04:01','2023-08-23 15:04:01','[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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" id=\"2\" margin_top_small=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\" content_align_small=\"center\"]Inspire Thought.<br />Evoke Emotion.<br />Drive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" content_alignment_small=\"center\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/who-we-are/\" alignment_small=\"center\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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=\"parent\" transform_scale_x=\"1.00\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"10px\" first=\"true\" id=\"1\" render_logics=\"W10=\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-400\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-400x399.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"25\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Cause Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1786|full\" max_width=\"500\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/brain.webp[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n<ul>\r\n<li>Branding</li>\r\n<li>Marketing &amp; Communications</li>\r\n<li>Digital &amp; Social</li>\r\n<li>Partnerships &amp; Community Engagement </li>\r\n</ul>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Discover What We Offer[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" orderby_term=\"name\" order=\"ASC\" upcoming_events_only=\"yes\" featured_events_only=\"no\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"80\" padding_bottom=\"80\" background_color=\"var(--awb-color2)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Elevate Your Marketing Game[/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>Subscribe to the Good Cause Marketing Partners newsletter and stay ahead with purpose-driven marketing insights tailored just for you.</p>\r\n[/fusion_text][fusion_form form_post_id=\"1695\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_right=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-23 15:04:01','2023-08-23 15:04:01','',1647,'https://test-site.goodcausepartners.com/?p=1913',0,'revision','',0),(1892,1,'2023-08-23 07:10:21','2023-08-23 07:10: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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"down\" animation_speed=\"1.0\" 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\" admin_label=\"Hero Section\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"50px\" padding_bottom=\"50px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" render_logics=\"W3sib3BlcmF0b3IiOiJhbmQiLCJjb21wYXJpc29uIjoiZXF1YWwiLCJmaWVsZCI6ImRldmljZV90eXBlIiwidmFsdWUiOiJkZXNrdG9wIn1d\" animation_type=\"reveal\" animation_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),calc(var(--awb-color4-l) + 40%),var(--awb-color4-a))\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" padding_bottom=\"10px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" line_height=\"1.2\"]Inspire Thought.<br />\r\nEvoke Emotion.<br />\r\nDrive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" margin_bottom=\"40px\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/who-we-are/\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6Im1vdXNlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiJvcHBvc2l0ZSIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IjEuNSIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-600x598.webp[/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=\"center\" 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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" id=\"2\" margin_top_small=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\" content_align_small=\"center\"]Inspire Thought.<br>Evoke Emotion.<br>Drive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" content_alignment_small=\"center\"]\r\n<p>Welcome to Good Cause Marketing Partners. We are a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/who-we-are/\" alignment_small=\"center\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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=\"parent\" transform_scale_x=\"1.00\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"10px\" first=\"true\" id=\"1\" render_logics=\"W10=\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-400\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-400x399.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"25\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Cause Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1786|full\" max_width=\"500\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/brain.webp[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n<ul>\r\n<li>Branding</li>\r\n<li>Marketing &amp; Communications</li>\r\n<li>Digital &amp; Social</li>\r\n<li>Partnerships &amp; Community Engagement </li>\r\n</ul>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Discover What We Offer[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" orderby_term=\"name\" order=\"ASC\" upcoming_events_only=\"yes\" featured_events_only=\"no\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"80\" padding_bottom=\"80\" background_color=\"var(--awb-color2)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Elevate Your Marketing Game[/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>Subscribe to the Good Cause Marketing Partners newsletter and stay ahead with purpose-driven marketing insights tailored just for you.</p>\r\n[/fusion_text][fusion_form form_post_id=\"1695\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_right=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-23 07:10:21','2023-08-23 07:10:21','',1647,'https://test-site.goodcausepartners.com/?p=1892',0,'revision','',0),(1894,1,'2023-08-23 07:23:23','2023-08-23 07:23:23','[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=\"space-around\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Header Content\" flex_column_spacing=\"2%\" padding_right=\"5%\" padding_left=\"5%\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" z_index=\"9999\"][fusion_builder_row][fusion_builder_column type=\"25\" type=\"25\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"80\" type_small=\"3_4\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1638|fusion-600\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" alt=\"Good Cause Marketing Partners\" max_width=\"500\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-horiz-logo-600x175.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"50\" type=\"50\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_menu menu=\"gcmp-main\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" transition_time=\"300\" align_items=\"stretch\" justify_content=\"center\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"left\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"medium\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" fusion_font_variant_typography=\"var(--awb-typography3)\" fusion_font_family_typography=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" gap=\"34px\" active_color=\"var(--awb-color4)\" active_border_color=\"var(--awb-color5)\" collapsed_nav_text=\"Menu\" mobile_trigger_background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 90%))\" trigger_padding_top=\"15px\" /][/fusion_builder_column][fusion_builder_column type=\"24.00\" type=\"24.00\" align_self=\"auto\" 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=\"large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-headphones\" spin=\"no\" linktarget=\"_self\" bg_size=\"56\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"24\" /][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color4)\" margin_bottom=\"0px\"]Need help? Call Us[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"22px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" margin_top=\"-5px\" line_height=\"0\"]\r\n<p><strong style=\"font-size: 19px;\" data-fusion-font=\"true\">(805) 870-5050</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"10.00\" type_small=\"1_4\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-bars fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"58\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"28\" alignment_medium=\"right\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJvcGVuX29mZl9jYW52YXMiLCJvZmZfY2FudmFzX2lkIjoiMTA1MCJ9fQ==\" circlecolor=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 1000%))\" iconcolor=\"var(--awb-color6)\" iconcolor_hover=\"var(--awb-color6)\" circlecolor_hover=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 1000%))\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Header','','inherit','closed','closed','','12-revision-v1','','','2023-08-23 07:23:23','2023-08-23 07:23:23','',12,'https://test-site.goodcausepartners.com/?p=1894',0,'revision','',0),(1893,1,'2023-08-23 07:15:15','2023-08-23 07: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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Header Content\" flex_column_spacing=\"2%\" padding_right=\"5%\" padding_left=\"5%\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" z_index=\"9999\"][fusion_builder_row][fusion_builder_column type=\"25\" type=\"25\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"60.00\" type_small=\"3_4\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1638|fusion-600\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" alt=\"Good Cause Marketing Partners\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-horiz-logo-600x175.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"50\" type=\"50\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_menu menu=\"gcmp-main\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" transition_time=\"300\" align_items=\"stretch\" justify_content=\"center\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"left\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"medium\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" fusion_font_variant_typography=\"var(--awb-typography3)\" fusion_font_family_typography=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" gap=\"34px\" active_color=\"var(--awb-color4)\" active_border_color=\"var(--awb-color5)\" collapsed_nav_text=\"Menu\" mobile_trigger_background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 90%))\" trigger_padding_top=\"15px\" /][/fusion_builder_column][fusion_builder_column type=\"24.00\" type=\"24.00\" align_self=\"auto\" 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=\"large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fusion-prefix-hosting-template-headphones\" spin=\"no\" linktarget=\"_self\" bg_size=\"56\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"24\" /][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color4)\" margin_bottom=\"0px\"]Need help? Call Us[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"22px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" margin_top=\"-5px\" line_height=\"0\"]\r\n<p><strong style=\"font-size: 19px;\" data-fusion-font=\"true\">(805) 870-5050</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"30.00\" padding_top_medium=\"5px\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color4)\" margin_bottom=\"0px\" content_alignment_medium=\"right\"]Need help? Call Us[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"22px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" margin_top=\"-5px\" line_height=\"0\" content_alignment_medium=\"right\"]\r\n<p><strong>(010) 456 7890</strong></p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"10.00\" type_small=\"1_4\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-bars fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"58\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"28\" alignment_medium=\"right\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJvcGVuX29mZl9jYW52YXMiLCJvZmZfY2FudmFzX2lkIjoiMTA1MCJ9fQ==\" circlecolor=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 1000%))\" iconcolor=\"var(--awb-color6)\" iconcolor_hover=\"var(--awb-color6)\" circlecolor_hover=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 1000%))\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Header','','inherit','closed','closed','','12-revision-v1','','','2023-08-23 07:15:15','2023-08-23 07:15:15','',12,'https://test-site.goodcausepartners.com/?p=1893',0,'revision','',0),(1895,1,'2023-08-23 07:24:50','2023-08-23 07:24: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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\" margin_bottom=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color6-h) + 60),calc(var(--awb-color6-s) + 22%),calc(var(--awb-color6-l) - 30%),var(--awb-color6-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" background_color=\"var(--awb-color6)\"][fusion_builder_row][fusion_builder_column type=\"35\" layout=\"35\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" type_small=\"1_1\" min_height=\"\" link=\"\" first=\"true\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" alt=\"Good Cause Marketing Partners\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"30\" layout=\"30\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"50\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\n<p>Main Menu</p>\n[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"var(--awb-color3)\" active_color=\"var(--awb-color4)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" icons_hover_color=\"var(--awb-color4)\" /][/fusion_builder_column][fusion_builder_column type=\"30\" layout=\"30\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_top=\"20\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"50\" border_sizes_left=\"0\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" type_small=\"1_1\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" content_align_small=\"center\"]Connect with Us[/fusion_title][fusion_checklist type=\"icons\" hide_on_mobile=\"medium-visibility,large-visibility\" size=\"17\" textcolor=\"var(--awb-color1)\" divider=\"no\"][fusion_li_item icon=\"fa-headset fas\"]\n<p>Call Us </p>\n[/fusion_li_item][fusion_li_item icon=\"fa-envelope fas\"]\n<p>Email Us</p>\n[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_top=\"20\" content_align_small=\"center\"]Follow Us on Social[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"var(--awb-color1)\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 71%))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" box_border_color=\"var(--awb-color1)\" box_border_top=\"1\" box_border_right=\"1\" box_border_bottom=\"1\" box_border_left=\"1\" alignment_small=\"center\" /][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"true\" border_position=\"all\" min_height=\"\" link=\"\" first=\"true\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAyMCAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-autosave-v1','','','2023-08-23 07:24:50','2023-08-23 07:24:50','',351,'https://test-site.goodcausepartners.com/?p=1895',0,'revision','',0),(1896,1,'2023-08-23 07:26:29','2023-08-23 07: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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\" margin_bottom=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color6-h) + 60),calc(var(--awb-color6-s) + 22%),calc(var(--awb-color6-l) - 30%),var(--awb-color6-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" background_color=\"var(--awb-color6)\"][fusion_builder_row][fusion_builder_column type=\"35\" type=\"35\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_small=\"1_1\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" alt=\"Good Cause Marketing Partners\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"0\" border_sizes_right=\"0\" padding_top=\"40\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<p>Main Menu</p>\r\n[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"var(--awb-color3)\" active_color=\"var(--awb-color4)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" icons_hover_color=\"var(--awb-color4)\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" align_self=\"flex-start\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" padding_top=\"40\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"50\" border_sizes_left=\"0\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" type_small=\"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\" 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\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" content_align_small=\"center\"]Connect with Us[/fusion_title][fusion_checklist type=\"icons\" hide_on_mobile=\"medium-visibility,large-visibility\" size=\"17\" textcolor=\"var(--awb-color1)\" divider=\"no\"][fusion_li_item icon=\"fa-headset fas\"]\r\n<p>Call Us </p>\r\n[/fusion_li_item][fusion_li_item icon=\"fa-envelope fas\"]\r\n<p>Email Us</p>\r\n[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_top=\"20\" content_align_small=\"center\"]Follow Us on Social[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"var(--awb-color1)\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 71%))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" box_border_color=\"var(--awb-color1)\" box_border_top=\"1\" box_border_right=\"1\" box_border_bottom=\"1\" box_border_left=\"1\" alignment_small=\"center\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"80px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAyMCAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-23 07:26:29','2023-08-23 07:26:29','',351,'https://test-site.goodcausepartners.com/?p=1896',0,'revision','',0),(1897,1,'2023-08-23 07:28:04','2023-08-23 07:28: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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\" margin_bottom=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color6-h) + 60),calc(var(--awb-color6-s) + 22%),calc(var(--awb-color6-l) - 30%),var(--awb-color6-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" background_color=\"var(--awb-color6)\"][fusion_builder_row][fusion_builder_column type=\"35\" type=\"35\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_small=\"1_1\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" alt=\"Good Cause Marketing Partners\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"0\" border_sizes_right=\"0\" padding_top=\"40\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<p>Main Menu</p>\r\n[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"var(--awb-color3)\" active_color=\"var(--awb-color4)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" icons_hover_color=\"var(--awb-color4)\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" align_self=\"flex-start\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" padding_top=\"40\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"50\" border_sizes_left=\"0\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" type_small=\"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\" 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\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" content_align_small=\"center\"]Connect with Us[/fusion_title][fusion_checklist type=\"icons\" hide_on_mobile=\"medium-visibility,large-visibility\" size=\"17\" textcolor=\"var(--awb-color1)\" divider=\"no\"][fusion_li_item icon=\"fa-headset fas\"]\r\n<p>Call Us </p>\r\n[/fusion_li_item][fusion_li_item icon=\"fa-envelope fas\"]\r\n<p>Email Us</p>\r\n[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_top=\"20\" content_align_small=\"center\"]Follow Us on Social[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"var(--awb-color1)\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 71%))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" box_border_color=\"var(--awb-color1)\" box_border_top=\"1\" box_border_right=\"1\" box_border_bottom=\"1\" box_border_left=\"1\" alignment_small=\"center\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"40px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAyMCAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-23 07:28:04','2023-08-23 07:28:04','',351,'https://test-site.goodcausepartners.com/?p=1897',0,'revision','',0),(1899,1,'2023-08-23 07:59:46','2023-08-23 07:59: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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\" margin_bottom=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color6-h) + 60),calc(var(--awb-color6-s) + 22%),calc(var(--awb-color6-l) - 30%),var(--awb-color6-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" background_color=\"var(--awb-color6)\"][fusion_builder_row][fusion_builder_column type=\"35\" type=\"35\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_small=\"1_1\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" alt=\"Good Cause Marketing Partners\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"40\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<p>Main Menu</p>\r\n[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"var(--awb-color3)\" active_color=\"var(--awb-color4)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" icons_hover_color=\"var(--awb-color4)\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" align_self=\"flex-start\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" padding_top=\"40\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"50\" border_sizes_left=\"1\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" type_small=\"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\" 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\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" content_align_small=\"center\"]Connect with Us[/fusion_title][fusion_checklist type=\"icons\" hide_on_mobile=\"medium-visibility,large-visibility\" size=\"17\" textcolor=\"var(--awb-color1)\" divider=\"no\"][fusion_li_item icon=\"fa-headset fas\"]\r\n<p>Call Us </p>\r\n[/fusion_li_item][fusion_li_item icon=\"fa-envelope fas\"]\r\n<p>Email Us</p>\r\n[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_top=\"20\" content_align_small=\"center\"]Follow Us on Social[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"var(--awb-color1)\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 71%))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" box_border_color=\"var(--awb-color1)\" box_border_top=\"1\" box_border_right=\"1\" box_border_bottom=\"1\" box_border_left=\"1\" alignment_small=\"center\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"40px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAyMCAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-23 07:59:46','2023-08-23 07:59:46','',351,'https://test-site.goodcausepartners.com/?p=1899',0,'revision','',0),(1898,1,'2023-08-23 07:32:04','2023-08-23 07:32: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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\" margin_bottom=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color6-h) + 60),calc(var(--awb-color6-s) + 22%),calc(var(--awb-color6-l) - 30%),var(--awb-color6-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" background_color=\"var(--awb-color6)\"][fusion_builder_row][fusion_builder_column type=\"35\" type=\"35\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_small=\"1_1\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" alt=\"Good Cause Marketing Partners\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"0\" border_sizes_right=\"0\" padding_top=\"40\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<p>Main Menu</p>\r\n[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"var(--awb-color3)\" active_color=\"var(--awb-color4)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" icons_hover_color=\"var(--awb-color4)\" /][/fusion_builder_column][fusion_builder_column type=\"1_6\" 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\" type_medium=\"\" type_small=\"\" type=\"1_6\" flex_grow_medium=\"\" flex_grow_small=\"\" flex_grow=\"\" flex_shrink_medium=\"\" flex_shrink_small=\"\" flex_shrink=\"\" 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\" 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=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_custom_size=\"\" background_custom_size_medium=\"\" background_custom_size_small=\"\" 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=\"\" motion_effects=\"\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" border_sizes_left=\"`1\" border_color=\"var(--awb-color2)\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" min_height=\"\" last=\"no\" link=\"\" border_position=\"all\"][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" align_self=\"flex-start\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" padding_top=\"40\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"50\" border_sizes_left=\"0\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" type_small=\"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\" 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\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" content_align_small=\"center\"]Connect with Us[/fusion_title][fusion_checklist type=\"icons\" hide_on_mobile=\"medium-visibility,large-visibility\" size=\"17\" textcolor=\"var(--awb-color1)\" divider=\"no\"][fusion_li_item icon=\"fa-headset fas\"]\r\n<p>Call Us </p>\r\n[/fusion_li_item][fusion_li_item icon=\"fa-envelope fas\"]\r\n<p>Email Us</p>\r\n[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_top=\"20\" content_align_small=\"center\"]Follow Us on Social[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"var(--awb-color1)\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 71%))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" box_border_color=\"var(--awb-color1)\" box_border_top=\"1\" box_border_right=\"1\" box_border_bottom=\"1\" box_border_left=\"1\" alignment_small=\"center\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"40px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAyMCAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-23 07:32:04','2023-08-23 07:32:04','',351,'https://test-site.goodcausepartners.com/?p=1898',0,'revision','',0),(1900,1,'2023-08-23 08:07:10','2023-08-23 08:07: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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\" margin_bottom=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color6-h) + 60),calc(var(--awb-color6-s) + 22%),calc(var(--awb-color6-l) - 30%),var(--awb-color6-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" background_color=\"var(--awb-color6)\"][fusion_builder_row][fusion_builder_column type=\"35\" type=\"35\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_small=\"1_1\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" alt=\"Good Cause Marketing Partners\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" 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_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" content_align_small=\"center\" text_color=\"var(--awb-color2)\"]Follow Us on Social<br>[/fusion_title][fusion_social_links facebook=\"#\" instagram=\"#\" show_custom=\"no\" margin_medium=\"\" margin_small=\"\" icon_colors_hover=\"\" icon_colors=\"var(--awb-color2)\" box_colors_hover=\"\" box_colors=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 100%))\" box_border_color_hover=\"\" box_border_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" alignment_small=\"center\" linkedin=\"#\" icons_boxed=\"yes\" box_border_top=\"1\" box_border_right=\"1\" box_border_bottom=\"1\" box_border_left=\"1\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"40\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<p>Main Menu</p>\r\n[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"var(--awb-color3)\" active_color=\"var(--awb-color4)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" icons_hover_color=\"var(--awb-color4)\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" padding_top=\"40\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"50\" border_sizes_left=\"1\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" type_small=\"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\" 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\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" content_align_small=\"center\"]Connect with Us[/fusion_title][fusion_checklist type=\"icons\" hide_on_mobile=\"medium-visibility,large-visibility\" size=\"17\" textcolor=\"var(--awb-color1)\" divider=\"no\"][fusion_li_item icon=\"fa-headset fas\"]\r\n<p>Call Us </p>\r\n[/fusion_li_item][fusion_li_item icon=\"fa-envelope fas\"]\r\n<p>Email Us</p>\r\n[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_top=\"20\" content_align_small=\"center\"]Follow Us on Social[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"var(--awb-color1)\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 71%))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" box_border_color=\"var(--awb-color1)\" box_border_top=\"1\" box_border_right=\"1\" box_border_bottom=\"1\" box_border_left=\"1\" alignment_small=\"center\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"40px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAyMCAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-23 08:07:10','2023-08-23 08:07:10','',351,'https://test-site.goodcausepartners.com/?p=1900',0,'revision','',0),(1901,1,'2023-08-23 08:09:34','2023-08-23 08:09: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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"12\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Footer\" padding_top=\"80px\" padding_bottom=\"40px\" pattern_bg_size=\"85%\" pattern_bg_color=\"var(--awb-color6)\" link_color=\"hsla(var(--awb-color7-h),var(--awb-color7-s),calc(var(--awb-color7-l) + 20%),var(--awb-color7-a))\" margin_bottom=\"0\" gradient_start_color=\"hsla(calc(var(--awb-color6-h) + 60),calc(var(--awb-color6-s) + 22%),calc(var(--awb-color6-l) - 30%),var(--awb-color6-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" background_color=\"var(--awb-color6)\"][fusion_builder_row][fusion_builder_column type=\"35\" type=\"35\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_small=\"1_1\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1648|full\" max_width=\"350px\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" alt=\"Good Cause Marketing Partners\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-promo-feature.webp[/fusion_imageframe][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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" 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_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" content_align_small=\"center\" text_color=\"var(--awb-color2)\"]Follow Us on Social<br>[/fusion_title][fusion_social_links facebook=\"#\" instagram=\"#\" show_custom=\"no\" margin_medium=\"\" margin_small=\"\" icon_colors_hover=\"\" icon_colors=\"var(--awb-color2)\" box_colors_hover=\"\" box_colors=\"hsla(var(--awb-color5-h),var(--awb-color5-s),var(--awb-color5-l),calc(var(--awb-color5-a) - 100%))\" box_border_color_hover=\"\" box_border_color=\"var(--awb-color2)\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility\" sticky_display=\"normal,sticky\" alignment_small=\"center\" linkedin=\"#\" icons_boxed=\"yes\" box_border_top=\"1\" box_border_right=\"1\" box_border_bottom=\"1\" box_border_left=\"1\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" 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=\"medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"60px\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_bottom=\"0\" border_sizes_left=\"1\" border_sizes_right=\"0\" padding_top=\"40\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]\r\n<p>Main Menu</p>\r\n[/fusion_title][fusion_menu menu=\"gcmp-main\" 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\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"bottom\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"never\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" margin_top=\"10px\" gap=\"17px\" color=\"var(--awb-color3)\" active_color=\"var(--awb-color4)\" border_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 90%))\" active_border_color=\"var(--awb-color4)\" icons_hover_color=\"var(--awb-color4)\" margin_bottom=\"0\" /][/fusion_builder_column][fusion_builder_column type=\"30\" type=\"30\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"center\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" padding_top=\"40\" padding_right=\"20\" padding_bottom=\"20\" padding_left=\"50\" border_sizes_left=\"1\" border_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),calc(var(--awb-color3-l) - 25%),var(--awb-color3-a))\" border_sizes_top=\"0\" border_sizes_right=\"0\" border_sizes_bottom=\"0\" type_small=\"1_1\" padding_bottom_medium=\"45\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" content_align_small=\"center\"]Connect with Us[/fusion_title][fusion_checklist type=\"icons\" hide_on_mobile=\"medium-visibility,large-visibility\" size=\"17\" textcolor=\"var(--awb-color1)\" divider=\"no\"][fusion_li_item icon=\"fa-headset fas\"]\r\n<p>Call Us </p>\r\n[/fusion_li_item][fusion_li_item icon=\"fa-envelope fas\"]\r\n<p>Email Us</p>\r\n[/fusion_li_item][/fusion_checklist][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\" margin_top=\"20\" content_align_small=\"center\"]Follow Us on Social[/fusion_title][fusion_social_links facebook=\"#\" show_custom=\"no\" icon_colors_hover=\"var(--awb-color1)\" icon_colors=\"var(--awb-color1)\" box_colors_hover=\"var(--awb-color5)\" box_colors=\"hsla(var(--awb-color6-h),var(--awb-color6-s),var(--awb-color6-l),calc(var(--awb-color6-a) - 71%))\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" instagram=\"#\" linkedin=\"#\" font_size=\"16px\" icons_boxed=\"yes\" box_border_color=\"var(--awb-color1)\" box_border_top=\"1\" box_border_right=\"1\" box_border_bottom=\"1\" box_border_left=\"1\" alignment_small=\"center\" /][/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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" margin_top=\"40px\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_separator style_type=\"single solid\" flex_grow=\"0\" height=\"20\" alignment=\"center\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" sep_color=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 80%))\" bottom_margin=\"20px\" /][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\" dynamic_params=\"eyJlbGVtZW50X2NvbnRlbnQiOnsiZGF0YSI6ImRhdGUiLCJmb3JtYXQiOiJZIiwiYmVmb3JlIjoiwqkgMjAyMCAtICIsImFmdGVyIjoiIOKAoiAgIEdvb2QgQ2F1c2UgTWFya2V0aW5nIFBhcnRuZXJzICDigKIgICBBbGwgUmlnaHRzIFJlc2VydmVkLiJ9fQ==\" text_color=\"hsla(var(--awb-color3-h),var(--awb-color3-s),var(--awb-color3-l),calc(var(--awb-color3-a) - 40%))\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" 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)\" content_alignment=\"center\"]Your Content Goes Here[/fusion_text][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\" text_color=\"var(--awb-color1)\"][/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Footer','','inherit','closed','closed','','351-revision-v1','','','2023-08-23 08:09:34','2023-08-23 08:09:34','',351,'https://test-site.goodcausepartners.com/?p=1901',0,'revision','',0),(1902,1,'2023-08-23 08:38:49','2023-08-23 08:16:07',' ','','','publish','closed','closed','','1902','','','2023-08-23 08:38:49','2023-08-23 08:38:49','',0,'https://test-site.goodcausepartners.com/?p=1902',4,'nav_menu_item','',0),(1903,1,'2023-08-23 08:38:49','2023-08-23 08:19:35',' ','','','publish','closed','closed','','1903','','','2023-08-23 08:38:49','2023-08-23 08:38:49','',0,'https://test-site.goodcausepartners.com/?p=1903',3,'nav_menu_item','',0),(1905,1,'2023-08-23 08:38:49','2023-08-23 08:19:35',' ','','','publish','closed','closed','','1905','','','2023-08-23 08:38:49','2023-08-23 08:38:49','',0,'https://test-site.goodcausepartners.com/?p=1905',2,'nav_menu_item','',0),(1906,1,'2023-08-23 08:18:11','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2023-08-23 08:18:11','0000-00-00 00:00:00','',0,'https://test-site.goodcausepartners.com/?p=1906',1,'nav_menu_item','',0),(1907,1,'2023-08-23 08:38:49','2023-08-23 08:19:35','','Home','','publish','closed','closed','','home-3','','','2023-08-23 08:38:49','2023-08-23 08:38:49','',0,'https://test-site.goodcausepartners.com/?p=1907',1,'nav_menu_item','',0),(1909,1,'2023-08-23 08:47:15','2023-08-23 08:47: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][fusion_builder_row][fusion_builder_column type=\"60\" type=\"60\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]About Good Cause Marketing Partners[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Where Passion for Effective Marketing Meets Dedication to Societal Impact</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>At Good Cause Marketing Partners, we stand proud as a leading boutique integrated marketing communications agency, tailor-made for the unique demands of both businesses and nonprofits. Our vision is crystallized in our relentless pursuit to weave compelling narratives that enhance visibility and foster growth. </p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Explore Our Services[/fusion_button][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1819|full\" max_width=\"600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/whoweare-intro.webp[/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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\" padding_bottom=\"65\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"40\"]Our Expertise Spans a Range of Specialized Areas[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"24\" type=\"24\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" 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\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Strategy &amp; Branding[/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\" content_alignment=\"center\"]\r\n<p>Shaping identities that capture attention, resonate, and linger.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"23.00\" type=\"23.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-bullhorn fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Marketing &amp; Communications[/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\" content_alignment=\"center\"]Creating campaigns that target and persuade audiences.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"23.00\" type=\"23.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" alignment=\"center\" icon=\"fa-comment-dots fas\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Digital &amp; Social Media[/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\" content_alignment=\"center\"]\r\n<p> Harnessing the virtual sphere for tangible results.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"28.00\" type=\"28.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-handshake fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Partnerships &amp; Community Engagement[/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\" content_alignment=\"center\"]\r\n<p>Connecting and collaborating for amplified impact.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Approach at Good Cause Marketing Partners[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>Every collaboration with <b>Good Cause Marketing Partners</b> promises a holistic approach. We are not just about marketing; we are about creating a ripple effect. Through meticulous positioning and strategy, we endeavor to shape public perceptions, stir emotions, and encourage actions that resonate with your brand values.</p>\r\n<p>Our philosophy for every project is underpinned by three cardinal principles:</p>\r\n<ol>\r\n<li><b>Unified Brand Experience</b>: Enable brands to be consistent, recognizable, and memorable.</li>\r\n<li><b>Vision-Driven Community Building</b>: Construct a brand community that rallies around a shared vision.</li>\r\n<li><b>Strategic Enterprise Framework</b>: Architect a consolidated marketing framework that aligns seamlessly with a company’s ethos.</li>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>The heart of any organization lies in its mission and vision. Recognizing this, we ensure all branding, marketing, and communication endeavors are tuned to echo these sentiments. As guardians of your brand, we understand the nuances of modern consumers, who are as invested in a company\'s ethos as they are in its offerings. This understanding drives us to craft each communication piece as an ambassador of your brand\'s core messages.</p>\r\n<p>In an era dominated by information overload, we champion the art of timely and relevant messaging, reaching out to audiences precisely when and where they should be reached. Transparency, continuous learning, and unwavering accountability guide our every move, ensuring our strategies are not just efficient but progressively innovative.</p>\r\n<ol>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1809|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/who-we-are-intro2.webp[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Let\'s Craft Your Story Together[/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\" margin_bottom=\"0\"]\r\n<p>Every brand has a unique narrative, and every cause has the power to impact. With Good Cause Marketing Partners and the expertise of seasoned professionals like Matt Midura, you’re not just getting a marketing campaign; you’re gaining a dedicated partner in sharing your story with the world. Dive into a partnership where passion, expertise, and genuine commitment come together to create waves of change.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]Connect with Us Today[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Who We Are','','inherit','closed','closed','','1068-revision-v1','','','2023-08-23 08:47:15','2023-08-23 08:47:15','',1068,'https://test-site.goodcausepartners.com/?p=1909',0,'revision','',0),(1910,1,'2023-08-23 08:49:41','2023-08-23 08:49: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\" 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\" margin_top=\"100px\" admin_label=\"Introduction\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\" admin_toggled=\"yes\"][fusion_builder_row][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]Our Services[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Tailored Solutions for a Digital World</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>In an ever-evolving digital age, effective marketing is both an art and a science. At Good Cause Marketing Partners, we merge creativity with data-driven strategies to bring you comprehensive services tailored for the unique contours of today\'s business and nonprofit landscapes. Whether you\'re looking to amplify your brand, connect with your audience, or catalyze social impact, our suite of services has been meticulously designed to guide you every step of the way. Dive in to discover how we can elevate your mission and transform your vision into tangible results.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1817|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/whatwedo-top.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_bottom=\"55\" admin_toggled=\"yes\" admin_label=\"Service List\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_content_boxes layout=\"icon-on-side\" columns=\"2\" heading_size=\"2\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" iconspin=\"no\" icon_align=\"left\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" title_color=\"var(--awb-color6)\" iconcolor=\"var(--awb-color5)\" icon_circle=\"no\" icon_size=\"61\"][fusion_content_box title=\"Brand Positioning &amp; Development\" linktext=\"Read More\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-heart far\"]\r\n<p>We focus on understanding and capturing the core essence of your organization. This process helps in building and positioning a brand that is both genuine and distinct in a highly competitive market.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Creative Design\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-paint-brush fas\"]\r\n<p>Our design team works to create visuals that genuinely represent an organization\'s message and brand essence.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Market Strategy\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullseye fas\"]\r\n<p>Our approach considers the nuances of market dynamics. By crafting strategies tailored to specific needs, we aim to help organizations navigate their sector and connect with their desired audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Visual Identity Systems\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-image far\"]\r\n<p>A consistent brand image is crucial. We work on developing visual identity systems that maintain brand recognition across various platforms and touchpoints.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Research\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-book-reader fas\"]\r\n<p>Through methodical research, we gather valuable insights about market trends, competitors, and potential audience behaviors. This information forms the foundation for our decision-making processes and strategic planning.</p>\r\n[/fusion_content_box][fusion_content_box animation_direction=\"left\" animation_speed=\"0.3\" title=\"Digital Marketing\" icon=\"fa-globe fas\"]In the evolving digital age, we customize strategies in areas like SEO and PPC to help organizations maintain a strong online presence and connect with their audience.[/fusion_content_box][fusion_content_box title=\"Communications\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-bullhorn fas\"]\r\n<p>We prioritize clear and consistent communication, ensuring that both internal and external messages align with the brand\'s voice and values.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Traditional Advertising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-newspaper fas\"]\r\n<p>Using classic advertising mediums, such as television, print, and radio, we develop campaigns that authentically communicate an organization\'s message to a broader audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Public Relations &amp; Crisis Management\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-first-aid fas\"]\r\n<p>Our team is equipped to manage public relations, emphasizing the positive aspects of a brand. Additionally, during challenging situations, we prioritize maintaining brand integrity and reputation.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Photo / Video Production\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-camera fas\"]\r\n<p>Visual storytelling is powerful. Our team focuses on producing photo and video content that genuinely encapsulates an organization\'s narrative, helping to foster deeper connections with its audience.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Fundraising\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-hand-holding-usd fas\"]\r\n<p>Resource acquisition is crucial for any initiative. We utilize both traditional and innovative methods to gather support, ensuring that projects and campaigns are adequately funded.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Social &amp; Mobile Marketing\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-comment fas\"]\r\n<p>Our efforts in social and mobile marketing aim to ensure organizations are actively participating in relevant digital discussions, reaching their audience on platforms they frequently use.</p>\r\n[/fusion_content_box][fusion_content_box title=\"Strategic Partnerships\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-handshake fas\"]We believe in the value of collaboration. By identifying and managing partnerships that align with a brand\'s ethos, we aim to enrich its presence and impact.[/fusion_content_box][fusion_content_box title=\"Collateral Production &amp; Development\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-map fas\"]We oversee the production and development of various collateral items, ensuring each piece aligns with the brand\'s image and communicates its message effectively.[/fusion_content_box][fusion_content_box title=\"Community Engagement\" animation_direction=\"left\" animation_speed=\"0.3\" icon=\"fa-user-friends fas\"]\r\n<p>Engaging with the community is essential. We focus on building strategies that allow organizations to foster meaningful relationships within their community, ensuring active and beneficial participation.</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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"6\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Our Process\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"115%\" pattern_bg_color=\"var(--awb-color1)\" admin_toggled=\"yes\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Process[/fusion_title][fusion_text columns=\"2\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" text_color=\"var(--awb-color1)\"]<b>Good Cause Marketing Partners</b> harmoniously blends the analytical rigor of the left brain with the creative intuition of the right. This symbiotic approach enables us to deliver a suite of high-impact, integrated services that not only resonate emotionally but are also grounded in data-driven insights. It\'s where imaginative storytelling meets strategic precision, ensuring that every campaign is both evocative and effective.</p>\r\n<p>Embarking on a marketing journey requires a clear roadmap and unwavering commitment. Our five-phase approach ensures that the journey is transparent, collaborative, and always tailored to your objectives. Every step is designed with teamwork and continuous learning at the heart, assuring that our strategies are closely aligned with your aspirations.[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Our Collaborations\" padding_top=\"65\" padding_bottom=\"20\" admin_toggled=\"yes\"][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=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Our Collaborations: A Spectrum of Industries &amp; Experiences[/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\" margin_bottom=\"0\"]\r\n<p>At Good Cause Marketing Partners, we believe in the power of collaboration, recognizing that our most transformative work often emerges from synergistic relationships with our esteemed partners. Over the years, we\'ve had the privilege of joining forces with diverse industries and dynamic companies, each bringing unique challenges and opportunities. Join us in celebrating these alliances that have not only shaped our journey but have also paved the way for innovative breakthroughs in the world of integrated marketing.</p>\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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1814|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/whatwedo-comp2.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"30\" margin_top=\"0\" flex_column_spacing=\"0\" padding_bottom=\"75\" admin_toggled=\"yes\" admin_label=\"Collaborations - Industries\"][fusion_builder_row][fusion_builder_column type=\"30\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Commercial Products</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Education &amp; Higher Education</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Financial Planning</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"30\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Nonprofits</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Real Estate</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Sports and Entertainment</p>\r\n[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"30\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][fusion_checklist type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\"][fusion_li_item]\r\n<p>Television &amp; Radio</p>\r\n[/fusion_li_item][fusion_li_item]\r\n<p>Winery &amp; Hospitality</p>\r\n[/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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Services CTA\" padding_top=\"65\" padding_bottom=\"65\" admin_toggled=\"yes\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1815|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/whatwedo-comp3.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"3_5\" type=\"3_5\" layout=\"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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Grow Your Brand for Good[/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\" margin_bottom=\"25\"]\r\n<p>Discover the difference of a strategy that merges creativity with precision. Start your transformation journey with Good Cause Marketing Partners.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Let\'s Get Started[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','What We Do','','inherit','closed','closed','','1723-revision-v1','','','2023-08-23 08:49:41','2023-08-23 08:49:41','',1723,'https://test-site.goodcausepartners.com/?p=1910',0,'revision','',0),(1914,1,'2023-08-23 15:13:53','2023-08-23 15:13: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\" 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\" margin_top=\"30px\" admin_label=\"Hosting Plans\" margin_bottom=\"60px\" ][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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color_hover=\"var(--awb-color5)\" border_color=\"var(--awb-color1)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/who-we-are/\" first=\"true\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1802|full\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/who-we-are.webp[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner type=\"2_3\" type=\"2_3\" layout=\"2_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\"]<p>who we are</p>[/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>Get to know our  team at Good Cause Marketing Partners.</p>[/fusion_text][/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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/what-we-do/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1803|full\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/what-we-do.webp[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\" content_align_small=\"center\"]what we do[/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\"]Uncover what you can expect from Good Cause Marketing Partners.[/fusion_text][/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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/contact/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1805|full\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/contact.webp[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\" content_align_small=\"center\"]Want to Talk?[/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\" content_alignment_small=\"center\"]<p>Good Cause Marketing Partners is  here to listen and discuss.</p>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Hosting Plans - 2 Column','','inherit','closed','closed','','1017-revision-v1','','','2023-08-23 15:13:53','2023-08-23 15:13:53','',1017,'https://test-site.goodcausepartners.com/?p=1914',0,'revision','',0);
INSERT INTO `wp_gc2023posts` VALUES (1915,1,'2023-08-23 15:15:40','2023-08-23 15:15: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\" 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\" margin_top=\"30px\" admin_label=\"CTAS\" margin_bottom=\"60px\" ][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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color_hover=\"var(--awb-color5)\" border_color=\"var(--awb-color1)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/who-we-are/\" first=\"true\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1802|full\" margin_bottom_small=\"40\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/who-we-are.webp[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\" content_align_small=\"center\"]<p>who we are</p>[/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\" content_alignment_small=\"center\"]<p>Get to know our  team at Good Cause Marketing Partners.</p>[/fusion_text][/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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/what-we-do/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1803|full\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/what-we-do.webp[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\" content_align_small=\"center\"]what we do[/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\" content_alignment_small=\"center\"]Uncover what you can expect from Good Cause Marketing Partners.[/fusion_text][/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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/contact/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1805|full\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/contact.webp[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\" content_align_small=\"center\"]Want to Talk?[/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\" content_alignment_small=\"center\"]<p>Good Cause Marketing Partners is  here to listen and discuss.</p>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Hosting Plans - 2 Column','','inherit','closed','closed','','1017-revision-v1','','','2023-08-23 15:15:40','2023-08-23 15:15:40','',1017,'https://test-site.goodcausepartners.com/?p=1915',0,'revision','',0),(1916,1,'2023-08-23 15:16:40','2023-08-23 15:16: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\" 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\" margin_top=\"30px\" admin_label=\"CTAS\" margin_bottom=\"60px\" ][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" 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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color_hover=\"var(--awb-color5)\" border_color=\"var(--awb-color1)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/who-we-are/\" first=\"true\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1802|full\" margin_bottom_small=\"40\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/who-we-are.webp[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\" content_align_small=\"center\"]<p>who we are</p>[/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\" content_alignment_small=\"center\"]<p>Get to know our  team at Good Cause Marketing Partners.</p>[/fusion_text][/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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/what-we-do/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1803|full\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/what-we-do.webp[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\" content_align_small=\"center\"]what we do[/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\" content_alignment_small=\"center\"]Uncover what you can expect from Good Cause Marketing Partners.[/fusion_text][/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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/contact/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1805|full\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/contact.webp[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\" content_align_small=\"center\"]Want to Talk?[/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\" content_alignment_small=\"center\"]<p>Good Cause Marketing Partners is  here to listen and discuss.</p>[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Hosting Plans - 2 Column','','inherit','closed','closed','','1017-revision-v1','','','2023-08-23 15:16:40','2023-08-23 15:16:40','',1017,'https://test-site.goodcausepartners.com/?p=1916',0,'revision','',0),(1917,1,'2023-08-23 15:21:57','2023-08-23 15:21:57','','mid-prez-sq-400x400-1','','inherit','open','closed','','mid-prez-sq-400x400-1','','','2023-08-23 15:21:57','2023-08-23 15:21:57','',0,'https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/mid-prez-sq-400x400-1.webp',0,'attachment','image/webp',0),(1918,1,'2023-08-23 15:25:42','2023-08-23 15:25: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][fusion_builder_row][fusion_builder_column type=\"60\" type=\"60\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]About Good Cause Marketing Partners[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Where Passion for Effective Marketing Meets Dedication to Societal Impact</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>At Good Cause Marketing Partners, we stand proud as a leading boutique integrated marketing communications agency, tailor-made for the unique demands of both businesses and nonprofits. Our vision is crystallized in our relentless pursuit to weave compelling narratives that enhance visibility and foster growth. </p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Explore Our Services[/fusion_button][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1819|full\" max_width=\"600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/whoweare-intro.webp[/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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\" padding_bottom=\"65\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"40\"]Our Expertise Spans a Range of Specialized Areas[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"24\" type=\"24\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" 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\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Strategy &amp; Branding[/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\" content_alignment=\"center\"]\r\n<p>Shaping identities that capture attention, resonate, and linger.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"23.00\" type=\"23.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-bullhorn fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Marketing &amp; Communications[/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\" content_alignment=\"center\"]Creating campaigns that target and persuade audiences.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"23.00\" type=\"23.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" alignment=\"center\" icon=\"fa-comment-dots fas\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Digital &amp; Social Media[/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\" content_alignment=\"center\"]\r\n<p> Harnessing the virtual sphere for tangible results.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"28.00\" type=\"28.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-handshake fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Partnerships &amp; Community Engagement[/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\" content_alignment=\"center\"]\r\n<p>Connecting and collaborating for amplified impact.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Approach at Good Cause Marketing Partners[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>Every collaboration with <b>Good Cause Marketing Partners</b> promises a holistic approach. We are not just about marketing; we are about creating a ripple effect. Through meticulous positioning and strategy, we endeavor to shape public perceptions, stir emotions, and encourage actions that resonate with your brand values.</p>\r\n<p>Our philosophy for every project is underpinned by three cardinal principles:</p>\r\n<ol>\r\n<li><b>Unified Brand Experience</b>: Enable brands to be consistent, recognizable, and memorable.</li>\r\n<li><b>Vision-Driven Community Building</b>: Construct a brand community that rallies around a shared vision.</li>\r\n<li><b>Strategic Enterprise Framework</b>: Architect a consolidated marketing framework that aligns seamlessly with a company’s ethos.</li>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>The heart of any organization lies in its mission and vision. Recognizing this, we ensure all branding, marketing, and communication endeavors are tuned to echo these sentiments. As guardians of your brand, we understand the nuances of modern consumers, who are as invested in a company\'s ethos as they are in its offerings. This understanding drives us to craft each communication piece as an ambassador of your brand\'s core messages.</p>\r\n<p>In an era dominated by information overload, we champion the art of timely and relevant messaging, reaching out to audiences precisely when and where they should be reached. Transparency, continuous learning, and unwavering accountability guide our every move, ensuring our strategies are not just efficient but progressively innovative.</p>\r\n<ol>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0\"]Meet Matt Midura[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" logics=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]Founder of Good Cause Marketing Partners[/fusion_text][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\" margin_bottom=\"0\"]<p>Matt is a brand strategist, marketer, and producer with more than 25 years of experience in the planning, development, execution, and measurement of strategic marketing and communications initiatives in the corporate, non-profit and education sectors. He is a creative and collaborative problem-solver with a proven track record for delivering results.</p><p>Matt is an active member within the community, serving on several boards including the Greater Conejo Valley Chamber of Commerce, the Greater Conejo Valley Community Foundation, and the Rotary Club of Westlake Village Sunrise. He was named volunteer of the year by the Chamber in 2015 and served as board chair in 2016.</p><p>Matt and his family have lived in Westlake Village since 2004.</p>[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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=\"center\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" hover_type=\"zoomin\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" 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=\"1917|full\" alt=\"Matt Midura\" borderradius=\"6\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/mid-prez-sq-400x400-1.webp[/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\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\" background_color=\"var(--awb-color2)\" padding_top=\"25\" padding_bottom=\"25\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1809|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/who-we-are-intro2.webp[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Let\'s Craft Your Story Together[/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\" margin_bottom=\"0\"]\r\n<p>Every brand has a unique narrative, and every cause has the power to impact. With Good Cause Marketing Partners and the expertise of seasoned professionals like Matt Midura, you’re not just getting a marketing campaign; you’re gaining a dedicated partner in sharing your story with the world. Dive into a partnership where passion, expertise, and genuine commitment come together to create waves of change.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]Connect with Us Today[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Who We Are','','inherit','closed','closed','','1068-revision-v1','','','2023-08-23 15:25:42','2023-08-23 15:25:42','',1068,'https://test-site.goodcausepartners.com/?p=1918',0,'revision','',0),(1919,1,'2023-08-23 15:29:03','2023-08-23 15:29: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][fusion_builder_row][fusion_builder_column type=\"60\" type=\"60\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]About Good Cause Marketing Partners[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Where Passion for Effective Marketing Meets Dedication to Societal Impact</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>At Good Cause Marketing Partners, we stand proud as a leading boutique integrated marketing communications agency, tailor-made for the unique demands of both businesses and nonprofits. Our vision is crystallized in our relentless pursuit to weave compelling narratives that enhance visibility and foster growth. </p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Explore Our Services[/fusion_button][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1819|full\" max_width=\"600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/whoweare-intro.webp[/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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\" padding_bottom=\"65\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"40\"]Our Expertise Spans a Range of Specialized Areas[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"24\" type=\"24\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" 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\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Strategy &amp; Branding[/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\" content_alignment=\"center\"]\r\n<p>Shaping identities that capture attention, resonate, and linger.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"23.00\" type=\"23.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-bullhorn fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Marketing &amp; Communications[/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\" content_alignment=\"center\"]Creating campaigns that target and persuade audiences.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"23.00\" type=\"23.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" alignment=\"center\" icon=\"fa-comment-dots fas\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Digital &amp; Social Media[/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\" content_alignment=\"center\"]\r\n<p> Harnessing the virtual sphere for tangible results.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"28.00\" type=\"28.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-handshake fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Partnerships &amp; Community Engagement[/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\" content_alignment=\"center\"]\r\n<p>Connecting and collaborating for amplified impact.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Approach at Good Cause Marketing Partners[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>Every collaboration with <b>Good Cause Marketing Partners</b> promises a holistic approach. We are not just about marketing; we are about creating a ripple effect. Through meticulous positioning and strategy, we endeavor to shape public perceptions, stir emotions, and encourage actions that resonate with your brand values.</p>\r\n<p>Our philosophy for every project is underpinned by three cardinal principles:</p>\r\n<ol>\r\n<li><b>Unified Brand Experience</b>: Enable brands to be consistent, recognizable, and memorable.</li>\r\n<li><b>Vision-Driven Community Building</b>: Construct a brand community that rallies around a shared vision.</li>\r\n<li><b>Strategic Enterprise Framework</b>: Architect a consolidated marketing framework that aligns seamlessly with a company’s ethos.</li>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>The heart of any organization lies in its mission and vision. Recognizing this, we ensure all branding, marketing, and communication endeavors are tuned to echo these sentiments. As guardians of your brand, we understand the nuances of modern consumers, who are as invested in a company\'s ethos as they are in its offerings. This understanding drives us to craft each communication piece as an ambassador of your brand\'s core messages.</p>\r\n<p>In an era dominated by information overload, we champion the art of timely and relevant messaging, reaching out to audiences precisely when and where they should be reached. Transparency, continuous learning, and unwavering accountability guide our every move, ensuring our strategies are not just efficient but progressively innovative.</p>\r\n<ol>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][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=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0\" margin_bottom_small=\"0\"]Meet Matt Midura[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" logics=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]Founder of Good Cause Marketing Partners[/fusion_text][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\" margin_bottom=\"0\"]<p>Matt is a brand strategist, marketer, and producer with more than 25 years of experience in the planning, development, execution, and measurement of strategic marketing and communications initiatives in the corporate, nonprofit and education sectors. He is a creative and collaborative problem-solver with a proven track record for delivering results.</p><p>Matt is an active member within the community, serving on several boards including the Greater Conejo Valley Chamber of Commerce, the Greater Conejo Valley Community Foundation, and the Rotary Club of Westlake Village Sunrise. He was named volunteer of the year by the Chamber in 2015 and served as board chair in 2016.</p><p>Matt and his family have lived in Westlake Village since 2004.</p>[/fusion_text][fusion_checklist parent_dynamic_content=\"\" type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\"][fusion_li_item iconcolor=\"var(--awb-color5)\"]<b>Read More on LinkedIn</b>[/fusion_li_item][/fusion_checklist][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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=\"center\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" hover_type=\"zoomin\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" 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=\"1917|full\" alt=\"Matt Midura\" borderradius=\"6\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/mid-prez-sq-400x400-1.webp[/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\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\" background_color=\"var(--awb-color2)\" padding_top=\"25\" padding_bottom=\"25\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1809|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/who-we-are-intro2.webp[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Let\'s Craft Your Story Together[/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\" margin_bottom=\"0\"]\r\n<p>Every brand has a unique narrative, and every cause has the power to impact. With Good Cause Marketing Partners and the expertise of seasoned professionals like Matt Midura, you’re not just getting a marketing campaign; you’re gaining a dedicated partner in sharing your story with the world. Dive into a partnership where passion, expertise, and genuine commitment come together to create waves of change.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]Connect with Us Today[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Who We Are','','inherit','closed','closed','','1068-revision-v1','','','2023-08-23 15:29:03','2023-08-23 15:29:03','',1068,'https://test-site.goodcausepartners.com/?p=1919',0,'revision','',0),(1920,1,'2023-08-23 15:30:53','2023-08-23 15:30: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][fusion_builder_row][fusion_builder_column type=\"60\" type=\"60\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]About Good Cause Marketing Partners[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Where Passion for Effective Marketing Meets Dedication to Societal Impact</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>At Good Cause Marketing Partners, we stand proud as a leading boutique integrated marketing communications agency, tailor-made for the unique demands of both businesses and nonprofits. Our vision is crystallized in our relentless pursuit to weave compelling narratives that enhance visibility and foster growth. </p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Explore Our Services[/fusion_button][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1819|full\" max_width=\"600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/whoweare-intro.webp[/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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\" padding_bottom=\"65\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"40\"]Our Expertise Spans a Range of Specialized Areas[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"24\" type=\"24\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" 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\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Strategy &amp; Branding[/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\" content_alignment=\"center\"]\r\n<p>Shaping identities that capture attention, resonate, and linger.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"23.00\" type=\"23.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-bullhorn fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Marketing &amp; Communications[/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\" content_alignment=\"center\"]Creating campaigns that target and persuade audiences.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"23.00\" type=\"23.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" alignment=\"center\" icon=\"fa-comment-dots fas\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Digital &amp; Social Media[/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\" content_alignment=\"center\"]\r\n<p> Harnessing the virtual sphere for tangible results.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"28.00\" type=\"28.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-handshake fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Partnerships &amp; Community Engagement[/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\" content_alignment=\"center\"]\r\n<p>Connecting and collaborating for amplified impact.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_small=\"3_4\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Approach at Good Cause Marketing Partners[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>Every collaboration with <b>Good Cause Marketing Partners</b> promises a holistic approach. We are not just about marketing; we are about creating a ripple effect. Through meticulous positioning and strategy, we endeavor to shape public perceptions, stir emotions, and encourage actions that resonate with your brand values.</p>\r\n<p>Our philosophy for every project is underpinned by three cardinal principles:</p>\r\n<ol>\r\n<li><b>Unified Brand Experience</b>: Enable brands to be consistent, recognizable, and memorable.</li>\r\n<li><b>Vision-Driven Community Building</b>: Construct a brand community that rallies around a shared vision.</li>\r\n<li><b>Strategic Enterprise Framework</b>: Architect a consolidated marketing framework that aligns seamlessly with a company’s ethos.</li>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>The heart of any organization lies in its mission and vision. Recognizing this, we ensure all branding, marketing, and communication endeavors are tuned to echo these sentiments. As guardians of your brand, we understand the nuances of modern consumers, who are as invested in a company\'s ethos as they are in its offerings. This understanding drives us to craft each communication piece as an ambassador of your brand\'s core messages.</p>\r\n<p>In an era dominated by information overload, we champion the art of timely and relevant messaging, reaching out to audiences precisely when and where they should be reached. Transparency, continuous learning, and unwavering accountability guide our every move, ensuring our strategies are not just efficient but progressively innovative.</p>\r\n<ol>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][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=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0\" margin_bottom_small=\"0\"]Meet Matt Midura[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" logics=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]Founder of Good Cause Marketing Partners[/fusion_text][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\" margin_bottom=\"0\"]<p>Matt is a brand strategist, marketer, and producer with more than 25 years of experience in the planning, development, execution, and measurement of strategic marketing and communications initiatives in the corporate, nonprofit and education sectors. He is a creative and collaborative problem-solver with a proven track record for delivering results.</p><p>Matt is an active member within the community, serving on several boards including the Greater Conejo Valley Chamber of Commerce, the Greater Conejo Valley Community Foundation, and the Rotary Club of Westlake Village Sunrise. He was named volunteer of the year by the Chamber in 2015 and served as board chair in 2016.</p><p>Matt and his family have lived in Westlake Village since 2004.</p>[/fusion_text][fusion_checklist parent_dynamic_content=\"\" type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\"][fusion_li_item iconcolor=\"var(--awb-color5)\"]<b>Read More on LinkedIn</b>[/fusion_li_item][/fusion_checklist][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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=\"center\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" hover_type=\"zoomin\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" 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=\"1917|full\" alt=\"Matt Midura\" borderradius=\"6\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/mid-prez-sq-400x400-1.webp[/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\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\" background_color=\"var(--awb-color2)\" padding_top=\"50\" padding_bottom=\"50\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1809|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/who-we-are-intro2.webp[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Let\'s Craft Your Story Together[/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\" margin_bottom=\"0\"]\r\n<p>Every brand has a unique narrative, and every cause has the power to impact. With Good Cause Marketing Partners and the expertise of seasoned professionals like Matt Midura, you’re not just getting a marketing campaign; you’re gaining a dedicated partner in sharing your story with the world. Dive into a partnership where passion, expertise, and genuine commitment come together to create waves of change.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]Connect with Us Today[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Who We Are','','inherit','closed','closed','','1068-revision-v1','','','2023-08-23 15:30:53','2023-08-23 15:30:53','',1068,'https://test-site.goodcausepartners.com/?p=1920',0,'revision','',0),(1921,1,'2023-08-23 15:31:41','2023-08-23 15:31: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][fusion_builder_row][fusion_builder_column type=\"60\" type=\"60\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]About Good Cause Marketing Partners[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Where Passion for Effective Marketing Meets Dedication to Societal Impact</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>At Good Cause Marketing Partners, we stand proud as a leading boutique integrated marketing communications agency, tailor-made for the unique demands of both businesses and nonprofits. Our vision is crystallized in our relentless pursuit to weave compelling narratives that enhance visibility and foster growth. </p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Explore Our Services[/fusion_button][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1819|full\" max_width=\"600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/whoweare-intro.webp[/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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\" padding_bottom=\"65\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"40\"]Our Expertise Spans a Range of Specialized Areas[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"24\" type=\"24\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" 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\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Strategy &amp; Branding[/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\" content_alignment=\"center\"]\r\n<p>Shaping identities that capture attention, resonate, and linger.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"23.00\" type=\"23.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-bullhorn fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Marketing &amp; Communications[/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\" content_alignment=\"center\"]Creating campaigns that target and persuade audiences.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"23.00\" type=\"23.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" alignment=\"center\" icon=\"fa-comment-dots fas\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Digital &amp; Social Media[/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\" content_alignment=\"center\"]\r\n<p> Harnessing the virtual sphere for tangible results.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"28.00\" type=\"28.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-handshake fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Partnerships &amp; Community Engagement[/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\" content_alignment=\"center\"]\r\n<p>Connecting and collaborating for amplified impact.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_small=\"3_4\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Approach at Good Cause Marketing Partners[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>Every collaboration with <b>Good Cause Marketing Partners</b> promises a holistic approach. We are not just about marketing; we are about creating a ripple effect. Through meticulous positioning and strategy, we endeavor to shape public perceptions, stir emotions, and encourage actions that resonate with your brand values.</p>\r\n<p>Our philosophy for every project is underpinned by three cardinal principles:</p>\r\n<ol>\r\n<li><b>Unified Brand Experience</b>: Enable brands to be consistent, recognizable, and memorable.</li>\r\n<li><b>Vision-Driven Community Building</b>: Construct a brand community that rallies around a shared vision.</li>\r\n<li><b>Strategic Enterprise Framework</b>: Architect a consolidated marketing framework that aligns seamlessly with a company’s ethos.</li>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>The heart of any organization lies in its mission and vision. Recognizing this, we ensure all branding, marketing, and communication endeavors are tuned to echo these sentiments. As guardians of your brand, we understand the nuances of modern consumers, who are as invested in a company\'s ethos as they are in its offerings. This understanding drives us to craft each communication piece as an ambassador of your brand\'s core messages.</p>\r\n<p>In an era dominated by information overload, we champion the art of timely and relevant messaging, reaching out to audiences precisely when and where they should be reached. Transparency, continuous learning, and unwavering accountability guide our every move, ensuring our strategies are not just efficient but progressively innovative.</p>\r\n<ol>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][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=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0\" margin_bottom_small=\"0\"]Meet Matt Midura[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" logics=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]Founder of Good Cause Marketing Partners[/fusion_text][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\" margin_bottom=\"0\"]<p>Matt is a brand strategist, marketer, and producer with more than 25 years of experience in the planning, development, execution, and measurement of strategic marketing and communications initiatives in the corporate, nonprofit and education sectors. He is a creative and collaborative problem-solver with a proven track record for delivering results.</p><p>Matt is an active member within the community, serving on several boards including the Greater Conejo Valley Chamber of Commerce, the Greater Conejo Valley Community Foundation, and the Rotary Club of Westlake Village Sunrise. He was named volunteer of the year by the Chamber in 2015 and served as board chair in 2016.</p><p>Matt and his family have lived in Westlake Village since 2004.</p>[/fusion_text][fusion_checklist parent_dynamic_content=\"\" type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\"][fusion_li_item iconcolor=\"var(--awb-color5)\"]<b>Read More on LinkedIn</b>[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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=\"center\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" hover_type=\"zoomin\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" 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=\"1917|full\" alt=\"Matt Midura\" borderradius=\"6\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/mid-prez-sq-400x400-1.webp[/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\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\" background_color=\"var(--awb-color2)\" padding_top=\"50\" padding_bottom=\"50\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1809|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/who-we-are-intro2.webp[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Let\'s Craft Your Story Together[/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\" margin_bottom=\"0\"]\r\n<p>Every brand has a unique narrative, and every cause has the power to impact. With Good Cause Marketing Partners and the expertise of seasoned professionals like Matt Midura, you’re not just getting a marketing campaign; you’re gaining a dedicated partner in sharing your story with the world. Dive into a partnership where passion, expertise, and genuine commitment come together to create waves of change.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]Connect with Us Today[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Who We Are','','inherit','closed','closed','','1068-revision-v1','','','2023-08-23 15:31:41','2023-08-23 15:31:41','',1068,'https://test-site.goodcausepartners.com/?p=1921',0,'revision','',0),(1922,1,'2023-08-23 15:32:24','2023-08-23 15:32: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\" 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\" margin_top=\"100px\" admin_label=\"Feature Section 2\" padding_bottom=\"60px\" border_color=\"hsla(var(--awb-color2-h),var(--awb-color2-s),calc(var(--awb-color2-l) - 2%),var(--awb-color2-a))\"][fusion_builder_row][fusion_builder_column type=\"60\" type=\"60\" layout=\"1_2\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_right=\"40px\" padding_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0px\"]About Good Cause Marketing Partners[/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\" margin_top=\"0\" margin_right=\"0\" margin_bottom=\"0\" margin_left=\"0\"]\r\n<p style=\"line-height: 29.24px;\" data-fusion-font=\"true\"><span style=\"color: #a8a8a8; font-family: \'Kumbh Sans\'; font-weight: 400;\" data-fusion-font=\"true\" data-fusion-google-font=\"Kumbh Sans\" data-fusion-google-variant=\"400\">Where Passion for Effective Marketing Meets Dedication to Societal Impact</span></p>\r\n[/fusion_text][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\" margin_bottom=\"20\" margin_top=\"22\"]\r\n<p>At Good Cause Marketing Partners, we stand proud as a leading boutique integrated marketing communications agency, tailor-made for the unique demands of both businesses and nonprofits. Our vision is crystallized in our relentless pursuit to weave compelling narratives that enhance visibility and foster growth. </p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Explore Our Services[/fusion_button][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" first=\"false\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1819|full\" max_width=\"600\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/whoweare-intro.webp[/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=\"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\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Features\" padding_bottom=\"65\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"center\" size=\"3\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"40\"]Our Expertise Spans a Range of Specialized Areas[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"24\" type=\"24\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" 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\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Strategy &amp; Branding[/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\" content_alignment=\"center\"]\r\n<p>Shaping identities that capture attention, resonate, and linger.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"23.00\" type=\"23.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-bullhorn fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Marketing &amp; Communications[/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\" content_alignment=\"center\"]Creating campaigns that target and persuade audiences.[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"23.00\" type=\"23.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" padding_left=\"15px\" margin_top_small=\"40px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" alignment=\"center\" icon=\"fa-comment-dots fas\" /][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Digital &amp; Social Media[/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\" content_alignment=\"center\"]\r\n<p> Harnessing the virtual sphere for tangible results.</p>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"28.00\" type=\"28.00\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" type_small=\"1_1\" type_medium=\"1_2\" margin_top_medium=\"40px\" padding_left=\"15px\" first=\"false\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-handshake fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"-1\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"no\" iconcolor=\"var(--awb-color5)\" size=\"70\" margin_bottom=\"30px\" iconcolor_hover=\"var(--awb-color4)\" icon_hover_type=\"slide\" 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=\"center\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" line_height=\"1.4\"]Partnerships &amp; Community Engagement[/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\" content_alignment=\"center\"]\r\n<p>Connecting and collaborating for amplified impact.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_top=\"70px\" padding_bottom=\"70px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\"][fusion_builder_row][fusion_builder_column type=\"1_1\" type=\"1_1\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" type_small=\"3_4\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"25px\" margin_top=\"15px\"]Our Approach at Good Cause Marketing Partners[/fusion_title][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>Every collaboration with <b>Good Cause Marketing Partners</b> promises a holistic approach. We are not just about marketing; we are about creating a ripple effect. Through meticulous positioning and strategy, we endeavor to shape public perceptions, stir emotions, and encourage actions that resonate with your brand values.</p>\r\n<p>Our philosophy for every project is underpinned by three cardinal principles:</p>\r\n<ol>\r\n<li><b>Unified Brand Experience</b>: Enable brands to be consistent, recognizable, and memorable.</li>\r\n<li><b>Vision-Driven Community Building</b>: Construct a brand community that rallies around a shared vision.</li>\r\n<li><b>Strategic Enterprise Framework</b>: Architect a consolidated marketing framework that aligns seamlessly with a company’s ethos.</li>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][fusion_builder_column type=\"1_2\" type=\"1_2\" layout=\"1_2\" align_self=\"flex-start\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>The heart of any organization lies in its mission and vision. Recognizing this, we ensure all branding, marketing, and communication endeavors are tuned to echo these sentiments. As guardians of your brand, we understand the nuances of modern consumers, who are as invested in a company\'s ethos as they are in its offerings. This understanding drives us to craft each communication piece as an ambassador of your brand\'s core messages.</p>\r\n<p>In an era dominated by information overload, we champion the art of timely and relevant messaging, reaching out to audiences precisely when and where they should be reached. Transparency, continuous learning, and unwavering accountability guide our every move, ensuring our strategies are not just efficient but progressively innovative.</p>\r\n<ol>\r\n</ol>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\"][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=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\" margin_bottom=\"0\" margin_bottom_small=\"0\"]Meet Matt Midura[/fusion_title][fusion_text columns=\"\" rule_size=\"\" animation_direction=\"left\" animation_color=\"\" animation_speed=\"0.3\" animation_delay=\"0\" logics=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0\"]Founder of Good Cause Marketing Partners[/fusion_text][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\" margin_bottom=\"0\"]<p>Matt is a brand strategist, marketer, and producer with more than 25 years of experience in the planning, development, execution, and measurement of strategic marketing and communications initiatives in the corporate, nonprofit and education sectors. He is a creative and collaborative problem-solver with a proven track record for delivering results.</p><p>Matt is an active member within the community, serving on several boards including the Greater Conejo Valley Chamber of Commerce, the Greater Conejo Valley Community Foundation, and the Rotary Club of Westlake Village Sunrise. He was named volunteer of the year by the Chamber in 2015 and served as board chair in 2016.</p><p>Matt and his family have lived in Westlake Village since 2004.</p>[/fusion_text][fusion_checklist parent_dynamic_content=\"\" type=\"icons\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" icon=\"fusion-prefix-hosting-template-check-box-2\"][fusion_li_item iconcolor=\"var(--awb-color5)\"]<p><a href=\"https://www.linkedin.com/in/mmidura/\" target=\"_blank\" rel=\"noopener\"><b>Read More on LinkedIn</b></a></p>[/fusion_li_item][/fusion_checklist][/fusion_builder_column][fusion_builder_column type=\"2_5\" type=\"2_5\" layout=\"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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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=\"center\" mask=\"\" custom_mask=\"\" mask_size=\"\" mask_custom_size=\"\" mask_position=\"\" mask_custom_position=\"\" mask_repeat=\"\" style_type=\"\" hover_type=\"zoomin\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" 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=\"1917|full\" alt=\"Matt Midura\" borderradius=\"6\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/mid-prez-sq-400x400-1.webp[/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\" 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\" margin_top=\"140px\" admin_label=\"Feature Section 1\" margin_bottom=\"80px\" background_color=\"var(--awb-color2)\" padding_top=\"50\" padding_bottom=\"50\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiIiwic2Nyb2xsX2RpcmVjdGlvbiI6ImRvd24iLCJ0cmFuc2l0aW9uX3NwZWVkIjoiMS4wIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiIiLCJzdGFydF92aWV3cG9ydCI6ImNlbnRlciIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoidG9wIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1809|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/who-we-are-intro2.webp[/fusion_imageframe][/fusion_builder_column][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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_left=\"50px\" last=\"true\" border_position=\"all\" padding_top_small=\"60px\" 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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_top=\"0px\"]Let\'s Craft Your Story Together[/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\" margin_bottom=\"0\"]\r\n<p>Every brand has a unique narrative, and every cause has the power to impact. With Good Cause Marketing Partners and the expertise of seasoned professionals like Matt Midura, you’re not just getting a marketing campaign; you’re gaining a dedicated partner in sharing your story with the world. Dive into a partnership where passion, expertise, and genuine commitment come together to create waves of change.</p>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"icon_rotate\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" icon=\"fusion-prefix-hosting-template-check-box-2\" margin_top=\"30px\" link=\"https://test-site.goodcausepartners.com/contact/\"]Connect with Us Today[/fusion_button][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Who We Are','','inherit','closed','closed','','1068-revision-v1','','','2023-08-23 15:32:24','2023-08-23 15:32:24','',1068,'https://test-site.goodcausepartners.com/?p=1922',0,'revision','',0),(1923,1,'2023-08-23 16:18:52','2023-08-23 16:18: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\" 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\" margin_top=\"30px\" admin_label=\"CTAS\" margin_bottom=\"60px\" ][fusion_builder_row][fusion_builder_column type=\"1_3\" type=\"1_3\" layout=\"1_2\" 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=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color_hover=\"var(--awb-color5)\" border_color=\"var(--awb-color1)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/who-we-are/\" first=\"true\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" layout=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1802|full\" margin_bottom_small=\"40\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/who-we-are.webp[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner type=\"2_3\" type=\"2_3\" layout=\"2_3\" align_self=\"auto\" 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\" content_align_small=\"center\"]\r\n<p>who we are</p>\r\n[/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\" content_alignment_small=\"center\"]\r\n<p>Get to know our  team at Good Cause Marketing Partners.</p>\r\n[/fusion_text][/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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/what-we-do/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1803|full\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/what-we-do.webp[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\" content_align_small=\"center\"]what we do[/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\" content_alignment_small=\"center\"]Uncover what you can expect from Good Cause Marketing Partners.[/fusion_text][/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\" hover_type=\"none\" border_style=\"solid\" box_shadow=\"yes\" box_shadow_blur=\"25\" box_shadow_spread=\"15\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_top=\"30px\" padding_bottom=\"30px\" padding_right=\"50px\" padding_left=\"50px\" box_shadow_vertical=\"0\" 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) - 95%))\" motion_effects=\"W3sidHlwZSI6InNjcm9sbCIsInNjcm9sbF90eXBlIjoiZmFkZSIsInNjcm9sbF9kaXJlY3Rpb24iOiIiLCJ0cmFuc2l0aW9uX3NwZWVkIjoiIiwiZmFkZV90eXBlIjoiIiwic2NhbGVfdHlwZSI6IiIsImluaXRpYWxfc2NhbGUiOiIiLCJtYXhfc2NhbGUiOiIiLCJtaW5fc2NhbGUiOiIiLCJpbml0aWFsX3JvdGF0ZSI6IiIsImVuZF9yb3RhdGUiOiIiLCJpbml0aWFsX2JsdXIiOiIiLCJlbmRfYmx1ciI6IiIsInN0YXJ0X2VsZW1lbnQiOiJib3R0b20iLCJzdGFydF92aWV3cG9ydCI6IiIsImVuZF9lbGVtZW50IjoidG9wIiwiZW5kX3ZpZXdwb3J0IjoiY2VudGVyIiwibW91c2VfZWZmZWN0IjoiIiwibW91c2VfZWZmZWN0X2RpcmVjdGlvbiI6IiIsIm1vdXNlX2VmZmVjdF9zcGVlZCI6IiIsImluZmluaXRlX2FuaW1hdGlvbiI6IiIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom=\"40px\" border_sizes_top=\"1px\" border_sizes_right=\"1px\" border_sizes_bottom=\"1px\" border_sizes_left=\"1px\" border_color=\"var(--awb-color1)\" border_color_hover=\"var(--awb-color5)\" border_radius_top_left=\"5px\" border_radius_top_right=\"5px\" border_radius_bottom_right=\"5px\" border_radius_bottom_left=\"5px\" link=\"https://test-site.goodcausepartners.com/contact/\" first=\"false\" min_height=\"\"][fusion_builder_row_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" padding_top=\"15px\" 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=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1805|full\" margin_bottom_small=\"40px\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/contact.webp[/fusion_imageframe][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" padding_left_medium=\"15px\" padding_left_small=\"0\" 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=\"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\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"10px\" content_align_small=\"center\"]Want to Talk?[/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\" content_alignment_small=\"center\"]\r\n<p>Good Cause Marketing Partners is  here to listen and discuss.</p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Hosting Plans - 2 Column','','inherit','closed','closed','','1017-revision-v1','','','2023-08-23 16:18:52','2023-08-23 16:18:52','',1017,'https://test-site.goodcausepartners.com/?p=1923',0,'revision','',0),(1924,1,'2023-08-23 16:18:52','2023-08-23 16:18:52','[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=\"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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"dots\" pattern_bg_style=\"default\" pattern_bg_opacity=\"8\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"10%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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=\"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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" id=\"2\" margin_top_small=\"0\" min_height=\"\" link=\"\"][fusion_title title_type=\"text\" rotation_effect=\"bounceIn\" display_time=\"1200\" highlight_effect=\"circle\" loop_animation=\"off\" highlight_width=\"9\" highlight_top_margin=\"0\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\" content_align_small=\"center\"]Inspire Thought.<br />Evoke Emotion.<br />Drive Action.[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\" content_alignment_small=\"center\"]<p>Good Cause Marketing Partners is a boutique integrated marketing and communications firm focused on helping businesses and nonprofits share their stories to facilitate growth.</p>[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/who-we-are/\" alignment_small=\"center\"]Learn More About Us[/fusion_button][/fusion_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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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=\"parent\" transform_scale_x=\"1.00\" transform_scale_y=\"1\" transform_translate_x=\"0\" transform_translate_y=\"0\" transform_rotate=\"0\" transform_skew_x=\"0\" transform_skew_y=\"0\" transform_scale_x_hover=\"1\" transform_scale_y_hover=\"1\" transform_translate_x_hover=\"0\" transform_translate_y_hover=\"0\" transform_rotate_hover=\"0\" transform_skew_x_hover=\"0\" transform_skew_y_hover=\"0\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" margin_bottom_small=\"10px\" first=\"true\" id=\"1\" render_logics=\"W10=\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1649|fusion-400\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-romo-feature2-400x399.webp[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"25\"][fusion_builder_row][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" margin_bottom=\"20px\"]Welcome to Good Cause Marketing Partners[/fusion_title][/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\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"false\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"var(--awb-typography2-font-size)\" line_height=\"var(--awb-typography2-line-height)\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" text_color=\"var(--awb-color6)\"]\r\n<p>At Good Cause Marketing Partners, we will work with your organization to develop and position your company in the market to positively influence how people <u>think</u>, <u>feel</u>, and ultimately <u>take action</u> on behalf of your company.</p>\r\n[/fusion_text][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_global id=\"1017\"][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=\"190\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"pastel\" pattern_bg_style=\"default\" pattern_bg_opacity=\"5\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Hosting Information\" gradient_start_color=\"hsla(calc(var(--awb-color5-h) + 60),calc(var(--awb-color5-s) + 22%),calc(var(--awb-color5-l) - 30%),var(--awb-color5-a))\" gradient_end_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) - 15%),var(--awb-color5-a))\" padding_bottom=\"60px\" pattern_bg_size=\"80%\" pattern_bg_color=\"var(--awb-color1)\" padding_top=\"60px\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"false\" border_position=\"all\" element_content=\"\" motion_effects=\"W3sidHlwZSI6ImluZmluaXRlIiwic2Nyb2xsX3R5cGUiOiIiLCJzY3JvbGxfZGlyZWN0aW9uIjoiIiwidHJhbnNpdGlvbl9zcGVlZCI6IiIsImZhZGVfdHlwZSI6IiIsInNjYWxlX3R5cGUiOiIiLCJpbml0aWFsX3NjYWxlIjoiIiwibWF4X3NjYWxlIjoiIiwibWluX3NjYWxlIjoiIiwiaW5pdGlhbF9yb3RhdGUiOiIiLCJlbmRfcm90YXRlIjoiIiwiaW5pdGlhbF9ibHVyIjoiIiwiZW5kX2JsdXIiOiIiLCJzdGFydF9lbGVtZW50IjoiIiwic3RhcnRfdmlld3BvcnQiOiIiLCJlbmRfZWxlbWVudCI6IiIsImVuZF92aWV3cG9ydCI6IiIsIm1vdXNlX2VmZmVjdCI6IiIsIm1vdXNlX2VmZmVjdF9kaXJlY3Rpb24iOiIiLCJtb3VzZV9lZmZlY3Rfc3BlZWQiOiIiLCJpbmZpbml0ZV9hbmltYXRpb24iOiJmbG9hdCIsImluZmluaXRlX2FuaW1hdGlvbl9zcGVlZCI6IiJ9XQ==\" margin_bottom_small=\"60px\" first=\"true\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"center\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1786|full\" max_width=\"500\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/brain.webp[/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" element_content=\"\" padding_right=\"40px\" first=\"false\" min_height=\"\" link=\"\"][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\" text_color=\"hsla(var(--awb-color5-h),var(--awb-color5-s),calc(var(--awb-color5-l) + 28%),var(--awb-color5-a))\" margin_bottom=\"5px\"]\r\n<p>Our Capabilities &amp; Specializations</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=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" fusion_font_variant_title_font=\"400\" text_color=\"var(--awb-color1)\" margin_bottom=\"20px\" margin_top=\"15px\" font_size=\"35px\"]Balancing Strategy &amp; Creativity[/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\" text_color=\"var(--awb-color1)\" fusion_font_variant_text_font=\"400\" font_size=\"var(--awb-typography2-font-size)\"]\r\n<p>At the end of the day, we will help create passionate and loyal advocates for your organization. We do this through a blend of strategy, storytelling, and strengthening of your brand through engagement. Our specializations include:</p>\r\n<ul>\r\n<li>Branding</li>\r\n<li>Marketing &amp; Communications</li>\r\n<li>Digital &amp; Social</li>\r\n<li>Partnerships &amp; Community Engagement </li>\r\n</ul>\r\n[/fusion_text][fusion_button target=\"_self\" color=\"default\" linear_angle=\"180\" stretch=\"default\" icon_position=\"left\" icon_divider=\"no\" hover_transition=\"none\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" link=\"https://test-site.goodcausepartners.com/what-we-do/\"]Discover What We Offer[/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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"65\" padding_bottom=\"65\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Explore the Good Cause Marketing Partners Blog[/fusion_title][/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\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"true\" border_position=\"all\" first=\"true\" min_height=\"\" link=\"\"][fusion_post_cards post_card=\"763\" post_card_list_view=\"0\" source=\"posts\" post_type=\"post\" posts_by=\"all\" custom_field_comparison=\"exists\" out_of_stock=\"include\" show_hidden=\"no\" filters=\"no\" number_posts=\"3\" offset=\"0\" orderby=\"date\" orderby_custom_field_type=\"CHAR\" orderby_term=\"name\" order=\"ASC\" upcoming_events_only=\"yes\" featured_events_only=\"no\" scrolling=\"no\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" layout=\"grid\" filters_height=\"36\" filters_alignment_medium=\"flex-start\" filters_alignment_small=\"flex-start\" filters_alignment=\"flex-start\" active_filter_border_size=\"3\" flex_align_items=\"flex-start\" columns_medium=\"0\" columns_small=\"0\" columns=\"3\" column_spacing=\"40\" row_spacing=\"40\" separator_style_type=\"none\" separator_alignment=\"center\" separator_border_size=\"1\" autoplay=\"no\" loop=\"yes\" scroll_items=\"0\" mouse_scroll=\"no\" mouse_pointer=\"default\" cursor_color_mode=\"auto\" show_nav=\"yes\" dots_position=\"bottom\" dots_spacing=\"4\" dots_align=\"center\" dots_size=\"8\" dots_active_size=\"8\" slider_animation=\"fade\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container][fusion_builder_container type=\"flex\" hundred_percent=\"no\" hundred_percent_height=\"no\" hundred_percent_height_scroll=\"no\" align_content=\"stretch\" flex_align_items=\"flex-start\" flex_justify_content=\"flex-start\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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=\"80\" padding_bottom=\"80\" background_color=\"var(--awb-color2)\"][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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"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\" title_link=\"off\" link_target=\"_self\" content_align=\"left\" size=\"2\" text_shadow=\"no\" text_shadow_blur=\"0\" text_stroke=\"no\" text_stroke_size=\"1\" text_overflow=\"none\" gradient_font=\"no\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" style_type=\"default\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\"]Elevate Your Marketing Game[/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>Subscribe to the Good Cause Marketing Partners newsletter and stay ahead with purpose-driven marketing insights tailored just for you.</p>\r\n[/fusion_text][fusion_form form_post_id=\"1695\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" /][/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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" 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\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"283|full\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/04/hosting-faqs-1.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\" flex_wrap=\"wrap\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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_right=\"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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" min_height=\"\" link=\"\"][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Good Cause Marketing Partners','','inherit','closed','closed','','1647-revision-v1','','','2023-08-23 16:18:52','2023-08-23 16:18:52','',1647,'https://test-site.goodcausepartners.com/?p=1924',0,'revision','',0),(1925,1,'2023-08-23 16:37:05','2023-08-23 16:37:05','[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=\"space-around\" hundred_percent_height_center_content=\"yes\" equal_height_columns=\"no\" container_tag=\"div\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" status=\"published\" border_style=\"solid\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" background_position=\"center center\" background_repeat=\"no-repeat\" fade=\"no\" background_parallax=\"none\" enable_mobile=\"no\" parallax_speed=\"0.3\" background_blend_mode=\"none\" video_aspect_ratio=\"16:9\" video_loop=\"yes\" video_mute=\"yes\" pattern_bg=\"none\" pattern_bg_style=\"default\" pattern_bg_opacity=\"100\" pattern_bg_blend_mode=\"normal\" mask_bg=\"none\" mask_bg_style=\"default\" mask_bg_opacity=\"100\" mask_bg_transform=\"left\" mask_bg_blend_mode=\"normal\" absolute=\"off\" absolute_devices=\"small,medium,large\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" sticky_transition_offset=\"0\" scroll_offset=\"0\" animation_direction=\"left\" 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\" admin_label=\"Header Content\" flex_column_spacing=\"2%\" padding_right=\"5%\" padding_left=\"5%\" padding_right_medium=\"30px\" padding_left_medium=\"30px\" z_index=\"9999\"][fusion_builder_row][fusion_builder_column type=\"25\" type=\"25\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"80\" type_small=\"3_4\" min_height=\"\" link=\"\"][fusion_imageframe custom_aspect_ratio=\"100\" lightbox=\"no\" linktarget=\"_self\" align_medium=\"none\" align_small=\"none\" align=\"none\" hover_type=\"none\" magnify_duration=\"120\" scroll_height=\"100\" scroll_speed=\"1\" caption_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=\"1638|fusion-600\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJzaXRlX3VybCJ9fQ==\" alt=\"Good Cause Marketing Partners\" max_width=\"500\"]https://test-site.goodcausepartners.com/wp-content/uploads/2023/08/gcmp-horiz-logo-600x175.webp[/fusion_imageframe][/fusion_builder_column][fusion_builder_column type=\"50\" type=\"50\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_menu menu=\"gcmp-main\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" direction=\"row\" transition_time=\"300\" align_items=\"stretch\" justify_content=\"center\" main_justify_content=\"left\" transition_type=\"left\" icons_position=\"left\" icons_size=\"16\" dropdown_carets=\"yes\" submenu_mode=\"dropdown\" expand_method=\"hover\" stacked_expand_method=\"click\" close_on_outer_click=\"no\" close_on_outer_click_stacked=\"no\" stacked_click_mode=\"toggle\" expand_direction=\"right\" expand_transition=\"fade\" submenu_flyout_direction=\"fade\" sub_justify_content=\"space-between\" box_shadow=\"no\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" justify_title=\"center\" breakpoint=\"medium\" custom_breakpoint=\"800\" mobile_nav_mode=\"collapse-to-button\" mobile_nav_size=\"full-absolute\" mobile_opening_mode=\"toggle\" collapsed_nav_icon_open=\"fusion-prefix-hosting-template-group\" collapsed_nav_icon_close=\"fusion-prefix-hosting-template-times-solid\" 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\" animation_delay=\"0\" fusion_font_variant_typography=\"var(--awb-typography3)\" fusion_font_family_typography=\"var(--awb-typography3-font-family)\" font_size=\"var(--awb-typography3-font-size)\" line_height=\"var(--awb-typography3-line-height)\" letter_spacing=\"var(--awb-typography3-letter-spacing)\" text_transform=\"var(--awb-typography3-text-transform)\" gap=\"34px\" active_color=\"var(--awb-color4)\" active_border_color=\"var(--awb-color5)\" collapsed_nav_text=\"Menu\" mobile_trigger_background_color=\"hsla(var(--awb-color4-h),var(--awb-color4-s),var(--awb-color4-l),calc(var(--awb-color4-a) - 90%))\" trigger_padding_top=\"15px\" /][/fusion_builder_column][fusion_builder_column type=\"24.00\" type=\"24.00\" align_self=\"auto\" 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=\"large-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"1_3\" min_height=\"\" link=\"\"][fusion_builder_row_inner][fusion_builder_column_inner type=\"1_3\" type=\"1_3\" 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\" 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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][fusion_fontawesome spin=\"no\" linktarget=\"_self\" bg_size=\"56\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"24\" icon=\"fa-headset fas\" /][/fusion_builder_column_inner][fusion_builder_column_inner 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\" background_type=\"single\" gradient_start_position=\"0\" gradient_end_position=\"100\" gradient_type=\"linear\" radial_direction=\"center center\" linear_angle=\"180\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" min_height=\"\" link=\"\"][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\" fusion_font_variant_text_font=\"var(--awb-typography5)\" fusion_font_family_text_font=\"var(--awb-typography5-font-family)\" font_size=\"var(--awb-typography5-font-size)\" letter_spacing=\"var(--awb-typography5-letter-spacing)\" text_transform=\"var(--awb-typography5-text-transform)\" text_color=\"var(--awb-color4)\" margin_bottom=\"0px\"]Need help? Call Us[/fusion_text][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\" fusion_font_variant_text_font=\"var(--awb-typography2)\" fusion_font_family_text_font=\"var(--awb-typography2-font-family)\" font_size=\"22px\" letter_spacing=\"var(--awb-typography2-letter-spacing)\" text_transform=\"var(--awb-typography2-text-transform)\" margin_top=\"-5px\" line_height=\"0\"]\r\n<p><strong style=\"font-size: 19px;\" data-fusion-font=\"true\">(805) 870-5050</strong></p>\r\n[/fusion_text][/fusion_builder_column_inner][/fusion_builder_row_inner][/fusion_builder_column][fusion_builder_column type=\"20.00\" type=\"20.00\" align_self=\"auto\" content_layout=\"column\" align_content=\"flex-start\" valign_content=\"flex-start\" content_wrap=\"wrap\" center_content=\"no\" column_tag=\"div\" target=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility\" sticky_display=\"normal,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\" lazy_load=\"none\" background_position=\"left top\" background_repeat=\"no-repeat\" background_blend_mode=\"none\" sticky=\"off\" sticky_devices=\"small-visibility,medium-visibility,large-visibility\" absolute=\"off\" 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\" transition_duration=\"300\" transition_easing=\"ease\" scroll_motion_devices=\"small-visibility,medium-visibility,large-visibility\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" last=\"no\" border_position=\"all\" element_content=\"\" type_medium=\"10.00\" type_small=\"1_4\" min_height=\"\" link=\"\"][fusion_fontawesome icon=\"fa-bars fas\" spin=\"no\" linktarget=\"_self\" bg_size=\"58\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" sticky_display=\"normal,sticky\" animation_direction=\"left\" animation_speed=\"0.3\" animation_delay=\"0\" circle=\"yes\" alignment=\"center\" circlebordersize=\"0\" icon_hover_type=\"slide\" size=\"28\" alignment_medium=\"right\" dynamic_params=\"eyJsaW5rIjp7ImRhdGEiOiJvcGVuX29mZl9jYW52YXMiLCJvZmZfY2FudmFzX2lkIjoiMTA1MCJ9fQ==\" circlecolor=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 1000%))\" iconcolor=\"var(--awb-color6)\" iconcolor_hover=\"var(--awb-color6)\" circlecolor_hover=\"hsla(var(--awb-color1-h),var(--awb-color1-s),var(--awb-color1-l),calc(var(--awb-color1-a) - 1000%))\" /][/fusion_builder_column][/fusion_builder_row][/fusion_builder_container]','Default Header','','inherit','closed','closed','','12-revision-v1','','','2023-08-23 16:37:05','2023-08-23 16:37:05','',12,'https://test-site.goodcausepartners.com/?p=1925',0,'revision','',0);
/*!40000 ALTER TABLE `wp_gc2023posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_gc2023smush_dir_images`
--

DROP TABLE IF EXISTS `wp_gc2023smush_dir_images`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gc2023smush_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 `wp_gc2023smush_dir_images`
--

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

--
-- Table structure for table `wp_gc2023term_relationships`
--

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

--
-- Dumping data for table `wp_gc2023term_relationships`
--

LOCK TABLES `wp_gc2023term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_gc2023term_relationships` DISABLE KEYS */;
INSERT INTO `wp_gc2023term_relationships` VALUES (1,1,0),(763,15,0),(814,15,0),(874,13,0),(988,16,0),(996,16,0),(1017,16,0),(1036,16,0),(1083,16,0),(1097,16,0),(1325,15,0),(1347,13,0),(1379,16,0),(12,12,0),(351,11,0),(535,12,0),(1008,14,0),(1156,14,0),(1158,10,0),(1333,10,0),(1366,14,0),(1498,10,0),(29,20,0),(30,20,0),(31,20,0),(32,20,0),(33,20,0),(402,17,0),(405,17,0),(406,17,0),(407,17,0),(408,17,0),(410,19,0),(411,19,0),(412,19,0),(413,19,0),(766,1,0),(769,1,0),(1852,35,0),(34,20,0),(378,21,0),(379,21,0),(380,21,0),(381,21,0),(382,21,0),(383,21,0),(1902,22,0),(766,6,0),(766,7,0),(772,1,0),(769,7,0),(769,8,0),(1903,22,0),(772,5,0),(772,6,0),(776,1,0),(774,7,0),(774,9,0),(1256,1,0),(776,6,0),(776,7,0),(1256,6,0),(1256,9,0),(1905,22,0),(1826,1,0),(1907,22,0),(774,1,0),(1756,23,0),(1678,16,0),(1721,23,0),(1827,27,0),(1840,30,0),(1845,23,0),(1840,31,0),(1846,23,0),(1827,24,0),(1827,28,0),(1827,29,0),(1827,30,0),(1853,26,0),(1840,26,0),(1840,32,0),(1840,33,0),(1853,30,0),(1853,31,0),(1853,32,0),(1853,33,0),(1852,34,0),(1852,24,0),(1852,36,0),(1852,37,0);
/*!40000 ALTER TABLE `wp_gc2023term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_gc2023term_taxonomy`
--

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

--
-- Dumping data for table `wp_gc2023term_taxonomy`
--

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

--
-- Table structure for table `wp_gc2023termmeta`
--

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

--
-- Dumping data for table `wp_gc2023termmeta`
--

LOCK TABLES `wp_gc2023termmeta` WRITE;
/*!40000 ALTER TABLE `wp_gc2023termmeta` DISABLE KEYS */;
INSERT INTO `wp_gc2023termmeta` VALUES (1,1,'_fusion','a:0:{}'),(19,1852,'_fusion','a:0:{}'),(4,12,'_fusion','a:0:{}'),(5,13,'_fusion','a:0:{}'),(6,15,'_fusion','a:0:{}'),(7,1647,'_fusion','a:0:{}'),(8,763,'_fusion','a:0:{}'),(9,1695,'_fusion','a:0:{}'),(10,1068,'_fusion','a:0:{}'),(11,1723,'_fusion','a:0:{}'),(12,1431,'_fusion','a:0:{}'),(13,1008,'_fusion','a:0:{}'),(14,351,'_fusion','a:0:{}'),(15,1256,'_fusion','a:0:{}'),(16,1827,'_fusion','a:0:{}'),(17,1840,'_fusion','a:0:{}'),(18,535,'_fusion','a:0:{}');
/*!40000 ALTER TABLE `wp_gc2023termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_gc2023terms`
--

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

--
-- Dumping data for table `wp_gc2023terms`
--

LOCK TABLES `wp_gc2023terms` WRITE;
/*!40000 ALTER TABLE `wp_gc2023terms` DISABLE KEYS */;
INSERT INTO `wp_gc2023terms` VALUES (1,'Uncategorized','uncategorized',0),(34,'Corporate Social Responsibility (CSR)','corporate-social-responsibility-csr',0),(5,'Domain','domain',0),(6,'Features','features',0),(7,'Hosting','hosting',0),(8,'Security','security',0),(9,'Speed','speed',0),(10,'content','content',0),(11,'footer','footer',0),(12,'header','header',0),(13,'mega_menus','mega_menus',0),(14,'page_title_bar','page_title_bar',0),(15,'post_cards','post_cards',0),(16,'sections','sections',0),(17,'Hosting About Company','hosting-about-company',0),(18,'Hosting Categories','hosting-categories',0),(19,'Hosting Help &amp; Support','hosting-help-support',0),(20,'Hosting Main Menu','hosting-main-menu',0),(21,'Hosting Services','hosting-services',0),(22,'Hosting Sliding Menu','hosting-sliding-menu',0),(23,'GCMP Main','gcmp-main',0),(24,'Branding','branding',0),(25,'Design','design',0),(26,'Communications','communications',0),(27,'brand','brand',0),(28,'brand voice','brand-voice',0),(29,'logos','logos',0),(30,'messaging','messaging',0),(31,'email','email',0),(32,'segmentation','segmentation',0),(33,'call-to-action','call-to-action',0),(35,'volunteering','volunteering',0),(36,'rotary','rotary',0),(37,'community','community',0);
/*!40000 ALTER TABLE `wp_gc2023terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_gc2023usermeta`
--

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

--
-- Dumping data for table `wp_gc2023usermeta`
--

LOCK TABLES `wp_gc2023usermeta` WRITE;
/*!40000 ALTER TABLE `wp_gc2023usermeta` DISABLE KEYS */;
INSERT INTO `wp_gc2023usermeta` VALUES (1,1,'nickname','mmidura'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_gc2023capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_gc2023user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','0'),(16,1,'session_tokens','a:7:{s:64:\"76636220db480a99ce0c314d6e04021c6825ea67f27f8a4f51523e058488f58d\";a:4:{s:10:\"expiration\";i:1692811197;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.6 Safari/605.1.15\";s:5:\"login\";i:1692638397;}s:64:\"952870ed1364df49803bedeb0892ab68162dfbd0f2db0c23dbac265333c99a9c\";a:4:{s:10:\"expiration\";i:1692892912;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.6 Safari/605.1.15\";s:5:\"login\";i:1692720112;}s:64:\"fe0489375a603ea1bcf4402369f040dc94b73c03762b27274cdb3a119f6de0fa\";a:4:{s:10:\"expiration\";i:1692921661;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.6 Safari/605.1.15\";s:5:\"login\";i:1692748861;}s:64:\"19fb8ca01031610dac403849937df4a59baf40ae4d713f33431b7296288a4846\";a:4:{s:10:\"expiration\";i:1692921665;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.6 Safari/605.1.15\";s:5:\"login\";i:1692748865;}s:64:\"e398aa41ecd84beab58df58ad6e597784b5c8873ac8e26785952ca30b97aeaa1\";a:4:{s:10:\"expiration\";i:1692921668;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.6 Safari/605.1.15\";s:5:\"login\";i:1692748868;}s:64:\"e5ef2717576bb5844e63227592954aad809a6b32f54a2085860e40d953cc39a2\";a:4:{s:10:\"expiration\";i:1692937210;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.6 Safari/605.1.15\";s:5:\"login\";i:1692764410;}s:64:\"023edccd340ab49a983a6f7b8821543199708920600a9faa29d1bc8c7665c2e2\";a:4:{s:10:\"expiration\";i:1692942649;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:109.0) Gecko/20100101 Firefox/116.0\";s:5:\"login\";i:1692769849;}}'),(17,1,'bglibDashboardOrder','1'),(18,1,'jetpack_tracks_anon_id','jetpack:y6Zovi+IHdg+/8IH1pw94QIz'),(19,1,'wp_gc2023dashboard_quick_press_last_post_id','5'),(20,1,'community-events-location','a:1:{s:2:\"ip\";s:10:\"75.83.80.0\";}'),(21,1,'boldgrid_dismissed_admin_notices','a:2:{s:2:\"id\";s:13:\"bg-key-prompt\";s:9:\"timestamp\";i:1692309871;}'),(22,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\";}'),(23,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,'wp_gc2023user-settings','libraryContent=browse&imgsize=fusion400&editor=tinymce'),(25,1,'wp_gc2023user-settings-time','1692807607'),(26,1,'closedpostboxes_page','a:0:{}'),(27,1,'metaboxhidden_page','a:7:{i:0;s:24:\"fusion_settings_meta_box\";i:1;s:12:\"revisionsdiv\";i:2;s:10:\"postcustom\";i:3;s:16:\"commentstatusdiv\";i:4;s:11:\"commentsdiv\";i:5;s:7:\"slugdiv\";i:6;s:9:\"authordiv\";}');
/*!40000 ALTER TABLE `wp_gc2023usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_gc2023users`
--

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

--
-- Dumping data for table `wp_gc2023users`
--

LOCK TABLES `wp_gc2023users` WRITE;
/*!40000 ALTER TABLE `wp_gc2023users` DISABLE KEYS */;
INSERT INTO `wp_gc2023users` VALUES (1,'mmidura','$P$Bom.i7H2kl16IeEEzrQLUb9ZflYvPe0','mmidura','info@goodcausepartners.com','https://test-site.goodcausepartners.com','2023-08-17 21:48:25','',0,'mmidura');
/*!40000 ALTER TABLE `wp_gc2023users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_gc2023wpforms_lite`
--

DROP TABLE IF EXISTS `wp_gc2023wpforms_lite`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_gc2023wpforms_lite` (
  `rid` int(10) NOT NULL AUTO_INCREMENT,
  `start` bigint(20) NOT NULL,
  `end` bigint(20) NOT NULL,
  `status` tinyint(2) NOT NULL DEFAULT 1,
  `date` int(10) NOT NULL,
  PRIMARY KEY (`rid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_gc2023wpforms_lite`
--

LOCK TABLES `wp_gc2023wpforms_lite` WRITE;
/*!40000 ALTER TABLE `wp_gc2023wpforms_lite` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_gc2023wpforms_lite` 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-08-23  9:45:28
